<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; AHK: Loop повторения]]></title>
	<link rel="self" href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=16858&amp;type=atom" />
	<updated>2021-12-31T22:04:18Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=16858</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Loop повторения]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=151464#p151464" />
			<content type="html"><![CDATA[<p><strong>uran612</strong>, очень для Вас полезный ресурс будет <a href="https://ahk-wiki.ru/">https://ahk-wiki.ru/</a></p>]]></content>
			<author>
				<name><![CDATA[andrey.a.polyakov.b2c]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=42228</uri>
			</author>
			<updated>2021-12-31T22:04:18Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=151464#p151464</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Loop повторения]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=151454#p151454" />
			<content type="html"><![CDATA[<p><strong>SeamenValcz</strong> скрипт мой. Из ваших слов, я понял только то, что вы сказали менять значения Sleep, но проблема в том что если я что-то сменю, ничего работать вообще не будет</p>]]></content>
			<author>
				<name><![CDATA[uran612]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=42233</uri>
			</author>
			<updated>2021-12-30T11:39:35Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=151454#p151454</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Loop повторения]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=151453#p151453" />
			<content type="html"><![CDATA[<p><strong>uran612</strong> А скрипт не ваш?<br />Там же &quot;Sleep, 500&quot; - это пол секунды, и два раза по &quot;Sleep, 250&quot; это ещё пол секунды. И так 20 раз = 20 секунд. Меняйте значения &quot;Sleep, ...&quot;.</p>]]></content>
			<author>
				<name><![CDATA[SeamenValcz]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=42248</uri>
			</author>
			<updated>2021-12-30T10:53:40Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=151453#p151453</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Loop повторения]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=151452#p151452" />
			<content type="html"><![CDATA[<p><strong>teadrinker</strong> А как можно увеличить интервал?</p>]]></content>
			<author>
				<name><![CDATA[uran612]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=42233</uri>
			</author>
			<updated>2021-12-30T10:37:41Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=151452#p151452</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Loop повторения]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=151451#p151451" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>uran612 пишет:</cite><blockquote><p>он просто повторяет его 20 секунд</p></blockquote></div><p>Ну всё правильно, раз в секунду, как раз 20 получается.</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2021-12-29T20:27:59Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=151451#p151451</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: Loop повторения]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=151450#p151450" />
			<content type="html"><![CDATA[<p>Здравствуйте, столкнулся с проблемой, хочу чтобы этот отрывок кода повторялся 20 раз после нажатия F6, но он просто повторяет его 20 секунд(Замерял даже).<br /></p><div class="codebox"><pre><code>F6::
Loop, 20
{
label1:
ImageSearch, X, Y, 877, 892, 895, 914, *TransBlack *50 E.png
     if ( ErrorLevel = &quot;0&quot; ) {
	 Send {e}
	 goto, label2
}
     if ( ErrorLevel = &quot;1&quot; ) {
	 SoundBeep, 400, 800
	 SoundBeep, 400, 800
	 Sleep, 500
	 Send {F5}
}
return
label2:
ImageSearch, X, Y, 934, 545, 980, 589, *TransBlack *50 F.png
     if ( ErrorLevel = &quot;0&quot; ) {
	     Send {f}
	     Sleep, 250
	     Send {f}
	     goto, label2
}
     if ( ErrorLevel = &quot;1&quot; ) {
	     goto, label3
}
return
label3:
ImageSearch, X, Y, 934, 545, 980, 589, *TransBlack *50 Y.png
     if ( ErrorLevel = &quot;0&quot; ) {
	     Send {y}
	     Sleep, 250
	     Send {y}
		 goto, label2
}
}

return</code></pre></div>]]></content>
			<author>
				<name><![CDATA[uran612]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=42233</uri>
			</author>
			<updated>2021-12-29T20:23:00Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=151450#p151450</id>
		</entry>
</feed>
