<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Серый форум &mdash; AHK: Как отправить данные из InputBox (httpQuery)]]></title>
		<link>https://forum.script-coding.com/viewtopic.php?id=8786</link>
		<atom:link href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=8786&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[Недавние сообщения в теме «AHK: Как отправить данные из InputBox (httpQuery)».]]></description>
		<lastBuildDate>Thu, 24 Oct 2013 06:57:44 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: AHK: Как отправить данные из InputBox (httpQuery)]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=76391#p76391</link>
			<description><![CDATA[<p>shuravlyov1<br />Только я в скайпе очень редко бываю. Проще на почту написать.</p>]]></description>
			<author><![CDATA[null@example.com (KepocuH)]]></author>
			<pubDate>Thu, 24 Oct 2013 06:57:44 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=76391#p76391</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Как отправить данные из InputBox (httpQuery)]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=76374#p76374</link>
			<description><![CDATA[<p>Керосин, дай свой скайп пожалуйста</p>]]></description>
			<author><![CDATA[null@example.com (Strije)]]></author>
			<pubDate>Wed, 23 Oct 2013 18:04:34 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=76374#p76374</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Как отправить данные из InputBox (httpQuery)]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=76331#p76331</link>
			<description><![CDATA[<div class="quotebox"><cite>ypppu пишет:</cite><blockquote><p>Это так принято &quot;по-культурному&quot; во многих языках. В&nbsp; AutoHotkey&nbsp; имя переменной может начинаться с цифры, состоять из одних только цифр, или даже состоять из одной единственной цифры.</p></blockquote></div><p>Да, действительно. Специально проверил:<br /></p><div class="codebox"><pre><code>1111 = test
MsgBox %1111% ; test
MsgBox % 1111 ; 1111</code></pre></div><p>Получается, можно было записать так:<br /></p><div class="codebox"><pre><code>URL = http://site.com/ver.txt?%1111%|%2222%</code></pre></div><p>В любом случае, ошибка была именно в этой строке.</p>]]></description>
			<author><![CDATA[null@example.com (KepocuH)]]></author>
			<pubDate>Tue, 22 Oct 2013 14:02:12 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=76331#p76331</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Как отправить данные из InputBox (httpQuery)]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=76330#p76330</link>
			<description><![CDATA[<p>Например параметры ком. строки, но такие переменные нельзя применить в выражении.</p>]]></description>
			<author><![CDATA[null@example.com (serzh82saratov)]]></author>
			<pubDate>Tue, 22 Oct 2013 13:38:19 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=76330#p76330</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Как отправить данные из InputBox (httpQuery)]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=76329#p76329</link>
			<description><![CDATA[<div class="quotebox"><cite>KepocuH пишет:</cite><blockquote><p>Что-то меня терзают смутные сомнения... Не помню откуда, но мне всегда казалось, что имена переменных не могут состоять только из цифр... или начинаться с цифры... В общем, с &quot;человеческими&quot; именами переменных всё работает.</p></blockquote></div><p>Это так принято &quot;по-культурному&quot; во многих языках. В&nbsp; AutoHotkey&nbsp; имя переменной может начинаться с цифры, состоять из одних только цифр, или даже состоять из одной единственной цифры.</p>]]></description>
			<author><![CDATA[null@example.com (ypppu)]]></author>
			<pubDate>Tue, 22 Oct 2013 13:25:50 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=76329#p76329</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Как отправить данные из InputBox (httpQuery)]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=76319#p76319</link>
			<description><![CDATA[<p>Что-то меня терзают смутные сомнения... Не помню откуда, но мне всегда казалось, что имена переменных не могут состоять только из цифр... или начинаться с цифры... В общем, с &quot;человеческими&quot; именами переменных всё работает.</p><p>И второе: строка URL в первом посте задается неверно.<br />Вот так должно работать:<br /></p><div class="codebox"><pre><code>#include httpQuery.ahk
Inputbox, Inp1, Info, Text1
Inputbox, Inp2, Info, Text2
URL:=&quot;http://site.com/ver.txt?&quot; . Inp1 . &quot;|&quot; . Inp2
httpQUERY(URL)</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (KepocuH)]]></author>
			<pubDate>Tue, 22 Oct 2013 05:45:23 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=76319#p76319</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Как отправить данные из InputBox (httpQuery)]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=76274#p76274</link>
			<description><![CDATA[<div class="quotebox"><cite>teadrinker пишет:</cite><blockquote><div class="quotebox"><cite>Strije пишет:</cite><blockquote><p>http://site.com/ver.txt?%1111%|%2222%</p></blockquote></div><p>А знаки процента там действительно нужны?</p></blockquote></div><p>Это чтобы считать с InputBox</p>]]></description>
			<author><![CDATA[null@example.com (Strije)]]></author>
			<pubDate>Mon, 21 Oct 2013 12:43:10 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=76274#p76274</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Как отправить данные из InputBox (httpQuery)]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=76220#p76220</link>
			<description><![CDATA[<div class="quotebox"><cite>Strije пишет:</cite><blockquote><p>http://site.com/ver.txt?%1111%|%2222%</p></blockquote></div><p>А знаки процента там действительно нужны?</p>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Sun, 20 Oct 2013 20:07:33 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=76220#p76220</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Как отправить данные из InputBox (httpQuery)]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=76208#p76208</link>
			<description><![CDATA[<p>run и так, но я хочу чтобы это было без него, без использования браузера.</p>]]></description>
			<author><![CDATA[null@example.com (Strije)]]></author>
			<pubDate>Sun, 20 Oct 2013 16:09:55 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=76208#p76208</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Как отправить данные из InputBox (httpQuery)]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=76176#p76176</link>
			<description><![CDATA[<p>Тебе какого рода запрос нужен?<br />Если тебе нужно просто открыть в браузере &quot;http://site.com/ver.txt?%1111%|%2222%&quot;,<br />просто используй Run.<br /></p><div class="codebox"><pre><code>
Inputbox, 1111, Info, Text1
Inputbox, 2222, Info, Text2
Run, http://site.com/ver.txt?%1111%|%2222%
</code></pre></div><p>То есть если ты в первом Inputbox введёшь &quot;Vasya&quot;, а во втором &quot;Petya&quot;, то у тебя откроется в браузере(который по умолчанию стоит):<br /><span style="color: blue">http://site.com/ver.txt?Vasya|Petya</span></p><p>Если же тебе нужно что-то другое, жди спецов.</p>]]></description>
			<author><![CDATA[null@example.com (Мпэт)]]></author>
			<pubDate>Sun, 20 Oct 2013 11:23:57 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=76176#p76176</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Как отправить данные из InputBox (httpQuery)]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=76174#p76174</link>
			<description><![CDATA[<p>Ну что? Никто не поможет?</p>]]></description>
			<author><![CDATA[null@example.com (Strije)]]></author>
			<pubDate>Sun, 20 Oct 2013 09:34:41 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=76174#p76174</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Как отправить данные из InputBox (httpQuery)]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=76159#p76159</link>
			<description><![CDATA[<p>Подниму, а то так вниз уйдет.</p>]]></description>
			<author><![CDATA[null@example.com (Strije)]]></author>
			<pubDate>Sat, 19 Oct 2013 13:04:56 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=76159#p76159</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Как отправить данные из InputBox (httpQuery)]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=76150#p76150</link>
			<description><![CDATA[<p>Ну вот теперь понятно. Странно только, что в заголовке озвучена задача считать поле ввода, а на самом деле, оказывается, надо уже считанное отправить. ОК, подождём знатоков httpQuery, т.к. я без понятия, как он работает.</p>]]></description>
			<author><![CDATA[null@example.com (YMP)]]></author>
			<pubDate>Sat, 19 Oct 2013 07:56:20 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=76150#p76150</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Как отправить данные из InputBox (httpQuery)]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=76148#p76148</link>
			<description><![CDATA[<p>Я привел пример кода.<br />Итак. Есть два InputBox&#039;a, в них я ввел данные, далее должен послаться запрос по определенному адресу.<br />Я все уже сделал, но теперь нужно оправить запрос на адрес вида: http://site.com/ver.txt</p>]]></description>
			<author><![CDATA[null@example.com (Strije)]]></author>
			<pubDate>Sat, 19 Oct 2013 06:54:59 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=76148#p76148</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Как отправить данные из InputBox (httpQuery)]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=76147#p76147</link>
			<description><![CDATA[<p>Для любого нужна волшебная палочка. Забудьте слово &quot;любой&quot;, когда говорите о коде. Здесь нужна конкретика. Пока что задача совершенно непонятна.</p>]]></description>
			<author><![CDATA[null@example.com (YMP)]]></author>
			<pubDate>Sat, 19 Oct 2013 06:49:49 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=76147#p76147</guid>
		</item>
	</channel>
</rss>
