<?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="http://forum.script-coding.com/extern.php?action=feed&amp;tid=12247&amp;type=atom" />
	<updated>2016-12-23T13:02:22Z</updated>
	<generator>PunBB</generator>
	<id>http://forum.script-coding.com/viewtopic.php?id=12247</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Как зациклить ожидание окна?]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=110072#p110072" />
			<content type="html"><![CDATA[<p>Спасибо большое. Заработало!</p>]]></content>
			<author>
				<name><![CDATA[composter]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=29447</uri>
			</author>
			<updated>2016-12-23T13:02:22Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=110072#p110072</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Как зациклить ожидание окна?]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=110044#p110044" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>loop
{
   WinWait, ahk_class Notepad
   WinActivate
   Send, test
   WinWaitClose
}
return</code></pre></div>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2016-12-22T19:42:51Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=110044#p110044</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Как зациклить ожидание окна?]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=110043#p110043" />
			<content type="html"><![CDATA[<p>SetTimer.</p>]]></content>
			<author>
				<name><![CDATA[Foma]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=31521</uri>
			</author>
			<updated>2016-12-22T19:37:04Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=110043#p110043</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Как зациклить ожидание окна?]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=110042#p110042" />
			<content type="html"><![CDATA[<p><strong>composter</strong>, мне предлагался на этом форуме такой способ. Им и пользуюсь.<br /></p><div class="codebox"><pre><code>Loop
{
winName:=&quot;ahk_class Notepad&quot;
while !(WinExist(winName))
	StartTime := A_TickCount
	Sleep, 250
MsgBox % winName
}</code></pre></div>]]></content>
			<author>
				<name><![CDATA[becauseim]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=33149</uri>
			</author>
			<updated>2016-12-22T19:36:30Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=110042#p110042</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: Как зациклить ожидание окна?]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=110017#p110017" />
			<content type="html"><![CDATA[<p>Добрый день. Подскажите как зациклить ожидание окна? <br />IfWinExist выполняется разово, если делать следующим образом то тут же вылетает.<br /></p><div class="codebox"><pre><code>F2::
loop , 
(
	IfWinExist, Drawing Recovery Log
		{
			WinActivate  ; Automatically uses the window found above.
			send {Escape}
		}
	sleep , 1000
)
return</code></pre></div>]]></content>
			<author>
				<name><![CDATA[composter]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=29447</uri>
			</author>
			<updated>2016-12-22T16:38:44Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=110017#p110017</id>
		</entry>
</feed>
