<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Серый форум &mdash; AHK: Генерация последовательных чисел]]></title>
		<link>https://forum.script-coding.com/viewtopic.php?id=13039</link>
		<atom:link href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=13039&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[Недавние сообщения в теме «AHK: Генерация последовательных чисел».]]></description>
		<lastBuildDate>Sun, 15 Oct 2017 15:13:30 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: AHK: Генерация последовательных чисел]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=120030#p120030</link>
			<description><![CDATA[<p>Проблема решена...с горем по полам.</p>]]></description>
			<author><![CDATA[null@example.com (IIoToII)]]></author>
			<pubDate>Sun, 15 Oct 2017 15:13:30 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=120030#p120030</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Генерация последовательных чисел]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=119752#p119752</link>
			<description><![CDATA[<p>Пересмотрел документацию по фиклам, но там только описание&nbsp; циклов loop и while и ничего что могло бы мне помочь &quot;впихнуть&quot; поиск и ввод в тело цикла.</p>]]></description>
			<author><![CDATA[null@example.com (IIoToII)]]></author>
			<pubDate>Tue, 03 Oct 2017 17:06:19 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=119752#p119752</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Генерация последовательных чисел]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=119749#p119749</link>
			<description><![CDATA[<p><span style="color: green"><strong>IIoToII</strong>, код должен быть оформлен тегом &quot;code&quot;.</span></p>]]></description>
			<author><![CDATA[null@example.com (ypppu)]]></author>
			<pubDate>Tue, 03 Oct 2017 16:46:37 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=119749#p119749</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Генерация последовательных чисел]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=119741#p119741</link>
			<description><![CDATA[<p><strong>belyankin12</strong><br />А как это сделать, я не понимаю.</p>]]></description>
			<author><![CDATA[null@example.com (IIoToII)]]></author>
			<pubDate>Tue, 03 Oct 2017 14:40:55 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=119741#p119741</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Генерация последовательных чисел]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=119729#p119729</link>
			<description><![CDATA[<p>При первом варианте конечно он не перейдет дальше, как работают циклы вообще соображаем? У вас будет бесконечная генерация чисел и на этом все - условий для выхода из цикла нет. Во втором варианте... посмотрите как работает вообще while, вам нужно условие создать, и пока оно будет соблюдаться, цикл будет работать. Но опять же, даже в случае while, выход из цикла произойдет всего один раз и это, полагаю, будет уже число 2000, все остальные не пройдут. Ваш поиск и ввод нужно в тело цикла пихать.</p>]]></description>
			<author><![CDATA[null@example.com (belyankin12)]]></author>
			<pubDate>Tue, 03 Oct 2017 07:04:51 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=119729#p119729</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Генерация последовательных чисел]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=119728#p119728</link>
			<description><![CDATA[<p>Так как его создать?<br /></p><div class="codebox"><pre><code>loop
{
SendPlay % 1000 + A_index     

Sleep 1000
}

Goto, MyLabel2</code></pre></div><p>Так не работает, числа генерирует, но дальше скрипт не идет, не переходит на поиск и нажатие по enter.<br /></p><div class="codebox"><pre><code>while,1
{
SendPlay % 1000 + A_index   
Sleep 1000
}

Goto, MyLabel2</code></pre></div><p>Так вообще даже число вводить не хочет.</p>]]></description>
			<author><![CDATA[null@example.com (IIoToII)]]></author>
			<pubDate>Tue, 03 Oct 2017 05:01:20 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=119728#p119728</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Генерация последовательных чисел]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=119726#p119726</link>
			<description><![CDATA[<p>Так а где там цикл-то? Команда Goto не создаёт цикла, переменная A_Index всё время равна нулю.<br /></p><div class="codebox"><pre><code>Label:
   MsgBox, % A_Index
   goto, Label</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Mon, 02 Oct 2017 21:50:23 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=119726#p119726</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Генерация последовательных чисел]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=119724#p119724</link>
			<description><![CDATA[<p>При первом чтении цикла 1, а при всех последующих на единицу больше.</p>]]></description>
			<author><![CDATA[null@example.com (IIoToII)]]></author>
			<pubDate>Mon, 02 Oct 2017 21:10:45 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=119724#p119724</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Генерация последовательных чисел]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=119720#p119720</link>
			<description><![CDATA[<div class="quotebox"><cite>IIoToII пишет:</cite><blockquote><div class="codebox"><pre><code>SendPlay % 1000 + A_index</code></pre></div></blockquote></div><p>А что, по-вашему, должно быть в переменной A_Index?</p>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Mon, 02 Oct 2017 20:23:49 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=119720#p119720</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Генерация последовательных чисел]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=119717#p119717</link>
			<description><![CDATA[<p><strong>teadrinker</strong><br />Тут никто не понимает функций&nbsp; AutoHotkey ?<br />Никто не может сказать глядя на скрипт почему не работает последовательная генерация чисел?<br />Никто не может посоветовать другую функцию, которой можно было бы заменить sendplay без применения while?</p>]]></description>
			<author><![CDATA[null@example.com (IIoToII)]]></author>
			<pubDate>Mon, 02 Oct 2017 20:00:03 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=119717#p119717</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Генерация последовательных чисел]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=119716#p119716</link>
			<description><![CDATA[<p><strong>IIoToII</strong>, такие вопросы лучше задавать в соответствующей ветке, а то, видите, здесь никто не понимает, о чём речь. <img src="//forum.script-coding.com/img/smilies/smile.png" width="15" height="15" /></p>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Mon, 02 Oct 2017 19:27:21 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=119716#p119716</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Генерация последовательных чисел]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=119713#p119713</link>
			<description><![CDATA[<p>Ну так может кто помочь то, в чем ошибка?<br />Или хотя бы подскажите какой функцией можно заменить SendPlay не применяя Loop и while чтобы генерировать последовательные числа в заданном интервале.</p>]]></description>
			<author><![CDATA[null@example.com (IIoToII)]]></author>
			<pubDate>Mon, 02 Oct 2017 18:57:42 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=119713#p119713</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Генерация последовательных чисел]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=119706#p119706</link>
			<description><![CDATA[<p><strong>ypppu</strong> Да это генератор чисел для браузерки.</p>]]></description>
			<author><![CDATA[null@example.com (IIoToII)]]></author>
			<pubDate>Mon, 02 Oct 2017 17:41:21 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=119706#p119706</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Генерация последовательных чисел]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=119689#p119689</link>
			<description><![CDATA[<p>Нет, с чего бы мне быть в теме? <img src="//forum.script-coding.com/img/smilies/smile.png" width="15" height="15" /> Я просто вижу ключевые слова «брут» и «перебор паролей».</p>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Mon, 02 Oct 2017 15:45:44 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=119689#p119689</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Генерация последовательных чисел]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=119686#p119686</link>
			<description><![CDATA[<p><strong>teadrinker</strong>, если ты в теме, может подскажешь, что ещё за терминал и зеваки? Это взлом пароля в какой-нибудь компьютерной игре?</p>]]></description>
			<author><![CDATA[null@example.com (ypppu)]]></author>
			<pubDate>Mon, 02 Oct 2017 15:36:30 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=119686#p119686</guid>
		</item>
	</channel>
</rss>
