<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; AHK: Сделать паузу в цикле]]></title>
	<link rel="self" href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=12268&amp;type=atom" />
	<updated>2017-01-03T14:39:30Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=12268</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Сделать паузу в цикле]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=110468#p110468" />
			<content type="html"><![CDATA[<p><span style="color: green"><strong>uselesscloud</strong>, предложения должны начинаться с заглавной буквы и заканчиваться точкой. Отредактируйте сообщения <a href="http://forum.script-coding.com/viewtopic.php?pid=110420#p110420">#5</a> и <a href="http://forum.script-coding.com/viewtopic.php?pid=110467#p110467">#11</a>.</span></p>]]></content>
			<author>
				<name><![CDATA[ypppu]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=5974</uri>
			</author>
			<updated>2017-01-03T14:39:30Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=110468#p110468</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Сделать паузу в цикле]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=110467#p110467" />
			<content type="html"><![CDATA[<p>Спасибо большое, правда, нужна задержка) Без задержки его не остановить.</p>]]></content>
			<author>
				<name><![CDATA[uselesscloud]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=34433</uri>
			</author>
			<updated>2017-01-03T14:20:20Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=110467#p110467</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Сделать паузу в цикле]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=110466#p110466" />
			<content type="html"><![CDATA[<p><strong>stealzy</strong>, для того, чтобы скрипт реагировал на прерывания, но работал без задержек, надо писать не Sleep 10, а Sleep -1.</p>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2017-01-03T11:26:11Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=110466#p110466</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Сделать паузу в цикле]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=110453#p110453" />
			<content type="html"><![CDATA[<p>AHK видимо не может обработать нажатия, если сам постоянно их шлет. Sleep вам в помощь.<br />Ах да, посылать много раз подряд {somekey Down} - идиотизм, который ничем не может быть оправдан.<br /></p><div class="codebox"><pre><code>Numpad1::
Loop 500 {
	Loop 480 {
		Send {Up}
		Sleep 10
	}
	Loop 240 {
		Send {Right}
		Sleep 10
	}
	Loop 240 {
		Send {Left}
		Sleep 10
	}
	Loop 480 {
		Send {Down}
		Sleep 10
	}
}
Return
Numpad2::Pause</code></pre></div>]]></content>
			<author>
				<name><![CDATA[stealzy]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=31937</uri>
			</author>
			<updated>2017-01-02T16:44:37Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=110453#p110453</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Сделать паузу в цикле]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=110430#p110430" />
			<content type="html"><![CDATA[<p>Ни то, ни то. Может быть скрипт с большим количеством циклов нельзя остановить?)</p>]]></content>
			<author>
				<name><![CDATA[uselesscloud]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=34433</uri>
			</author>
			<updated>2017-01-01T13:11:00Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=110430#p110430</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Сделать паузу в цикле]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=110427#p110427" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>Numpad2:: Pause, On
Numpad3:: Pause, Off</code></pre></div><p>У меня так работает, у тебя тоже должно, пробуй.</p>]]></content>
			<author>
				<name><![CDATA[slavafedora]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=34221</uri>
			</author>
			<updated>2017-01-01T10:27:02Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=110427#p110427</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Сделать паузу в цикле]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=110423#p110423" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>1::
Loop
{
	Send, a
	Sleep, 150
	Send, b
	Sleep, 150
}
Return
2::Pause, Toggle</code></pre></div>]]></content>
			<author>
				<name><![CDATA[ШКОЛЯРРРРРРЪ]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=34285</uri>
			</author>
			<updated>2016-12-31T18:04:21Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=110423#p110423</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Сделать паузу в цикле]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=110420#p110420" />
			<content type="html"><![CDATA[<p><strong>stealzy</strong>, если б было всё так просто:\ Не помогает это.</p>]]></content>
			<author>
				<name><![CDATA[uselesscloud]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=34433</uri>
			</author>
			<updated>2016-12-31T12:04:48Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=110420#p110420</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Сделать паузу в цикле]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=110418#p110418" />
			<content type="html"><![CDATA[<p><strong>slavafedora</strong><br />Неа, не помогло. <img src="//forum.script-coding.com/img/smilies/sad.png" width="15" height="15" /></p>]]></content>
			<author>
				<name><![CDATA[uselesscloud]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=34433</uri>
			</author>
			<updated>2016-12-31T10:41:46Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=110418#p110418</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Сделать паузу в цикле]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=110411#p110411" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>Numpad2::
	{
		Pause, On
	}
	return

Numpad3::
	{
		Pause, Off
	}
	return</code></pre></div><p>Пробуй так.</p>]]></content>
			<author>
				<name><![CDATA[slavafedora]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=34221</uri>
			</author>
			<updated>2016-12-31T03:56:23Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=110411#p110411</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: Сделать паузу в цикле]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=110410#p110410" />
			<content type="html"><![CDATA[<p>Имеется следующий скрипт:<br /></p><div class="codebox"><pre><code>Numpad1::
Loop 50
{
    Loop 480
    {
         Send {Up down}
    }
    Send {Up up}
    Loop 240
    {
         Send {Right down}
    }
    Send {Right up}
    Loop 240
    {
         Send {Left down}
    }
    Send {Left up}
    Loop 480
    {
         Send {Down down}
    }
    Send {Down up}
}
Return</code></pre></div><p>Что нужно изменить, чтобы сделать паузу?<br />Заранее спасибо.</p>]]></content>
			<author>
				<name><![CDATA[uselesscloud]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=34433</uri>
			</author>
			<updated>2016-12-30T22:14:47Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=110410#p110410</id>
		</entry>
</feed>
