<?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=11630&amp;type=atom" />
	<updated>2016-05-30T08:07:37Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=11630</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Если не нажата ни одна клавиша]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=104427#p104427" />
			<content type="html"><![CDATA[<p>Теперь в это верните, у вас времени до вечера.</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2016-05-30T08:07:37Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=104427#p104427</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Если не нажата ни одна клавиша]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=104423#p104423" />
			<content type="html"><![CDATA[<p><strong>teadrinker</strong>, вернул, правила оформления прочитал.</p>]]></content>
			<author>
				<name><![CDATA[senyaonis]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=33915</uri>
			</author>
			<updated>2016-05-30T03:58:35Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=104423#p104423</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Если не нажата ни одна клавиша]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=104293#p104293" />
			<content type="html"><![CDATA[<p><span style="color: green"><strong>senyaonis</strong>, верните точки в конец предложений.</span></p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2016-05-27T07:16:21Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=104293#p104293</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Если не нажата ни одна клавиша]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=104290#p104290" />
			<content type="html"><![CDATA[<p><strong>yalanne</strong>, а как сделать, чтобы,если ни одна клавиша не нажата, то каждые 50 мс n := n + 50 до тех пор пока какая-либо клавиша не будет нажата.</p>]]></content>
			<author>
				<name><![CDATA[senyaonis]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=33915</uri>
			</author>
			<updated>2016-05-27T03:56:07Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=104290#p104290</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Если не нажата ни одна клавиша]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=104261#p104261" />
			<content type="html"><![CDATA[<p><strong>yalanne</strong>, спасибо. Первый вариант пригодился.</p>]]></content>
			<author>
				<name><![CDATA[senyaonis]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=33915</uri>
			</author>
			<updated>2016-05-26T09:00:07Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=104261#p104261</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Если не нажата ни одна клавиша]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=104212#p104212" />
			<content type="html"><![CDATA[<p>Можно вот так сделать:<br /></p><div class="codebox"><pre><code>#InstallKeybdHook
Time := 500
SetTimer,Timer,% time
return

Timer:
if (A_TimeIdlePhysical &gt; time)
	ToolTip Если В течении %time% мс не было нечего нажато`, то делаем действие.
return	
</code></pre></div><p>И вот вариант без флуда(для повторного цикла должна нажаться любая кнопка)<br /></p><div class="codebox"><pre><code>#InstallKeybdHook
Time := 500
TimerStatus := true
SetTimer,Timer,% time
return

Timer:
if (A_TimeIdlePhysical &gt; time) and not TimerStatus
{
	ToolTip Если В течении %time% мс небыло нечего нажато`, то делаем действие.
	TimerStatus := true
}
Else if (A_TimeIdlePhysical &lt; time) and TimerStatus
	TimerStatus := false

return</code></pre></div>]]></content>
			<author>
				<name><![CDATA[yalanne]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=32850</uri>
			</author>
			<updated>2016-05-25T16:08:21Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=104212#p104212</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: Если не нажата ни одна клавиша]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=104210#p104210" />
			<content type="html"><![CDATA[<p>Если не нажата ни одна клавиша, то что-то происходит. Не хотелось бы перечислять все клавиши... Как это реализовать?</p>]]></content>
			<author>
				<name><![CDATA[senyaonis]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=33915</uri>
			</author>
			<updated>2016-05-25T15:39:37Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=104210#p104210</id>
		</entry>
</feed>
