<?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=15750</link>
		<atom:link href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=15750&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[Недавние сообщения в теме «AHK: Нажатие вкл/выкл скрипта».]]></description>
		<lastBuildDate>Mon, 26 Oct 2020 15:04:53 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: AHK: Нажатие вкл/выкл скрипта]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=142857#p142857</link>
			<description><![CDATA[<p><strong>ypppu</strong><br />Спасибо огромное! А на самом деле было всё так просто...)))</p>]]></description>
			<author><![CDATA[null@example.com (CD_MyAcO)]]></author>
			<pubDate>Mon, 26 Oct 2020 15:04:53 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=142857#p142857</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Нажатие вкл/выкл скрипта]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=142856#p142856</link>
			<description><![CDATA[<div class="codebox"><pre><code>toggle := 0

Numpad3::
IF toggle = 0
	{
	toggle := 1
	SetTimer, 3, On
	}
ELSE
	{
	toggle := 0
	SetTimer, 3, Off
	}
Return



3:
Soundbeep, 2000, 200
Return</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (ypppu)]]></author>
			<pubDate>Mon, 26 Oct 2020 15:00:09 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=142856#p142856</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Нажатие вкл/выкл скрипта]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=142854#p142854</link>
			<description><![CDATA[<div class="quotebox"><cite>Botsy пишет:</cite><blockquote><p><strong>CD_MyAcO</strong> можно добавить еще одну кнопку и на нее включать/выключать скрипт. <br /></p><div class="codebox"><pre><code>
#p::Pause ; Win+P ставит на паузу скрипт. Еще раз - включает его.
</code></pre></div></blockquote></div><p>Это я знаю. Но мне нужно именно не весь скрипт. У меня несколько биндов в 1 скрипте.</p>]]></description>
			<author><![CDATA[null@example.com (CD_MyAcO)]]></author>
			<pubDate>Mon, 26 Oct 2020 14:55:56 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=142854#p142854</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Нажатие вкл/выкл скрипта]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=142853#p142853</link>
			<description><![CDATA[<p><strong>CD_MyAcO</strong> можно добавить еще одну кнопку и на нее включать/выключать скрипт. <br /></p><div class="codebox"><pre><code>
#p::Pause ; Win+P ставит на паузу скрипт. Еще раз - включает его.
</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Botsy)]]></author>
			<pubDate>Mon, 26 Oct 2020 14:54:16 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=142853#p142853</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Нажатие вкл/выкл скрипта]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=142851#p142851</link>
			<description><![CDATA[<div class="quotebox"><cite>ypppu пишет:</cite><blockquote><p>Это смотря какой скрипт. Показывайте, что там у Вас - горячие клавиши или таймеры или циклы?</p></blockquote></div><div class="codebox"><pre><code>toggle := false

Numpad3::
if (toggle := !toggle)
SetTimer, 3
return

3:
click
send {enter down}{enter up}
return</code></pre></div><p>Я не очень знающийся в ахк, боюсь опозориться)</p>]]></description>
			<author><![CDATA[null@example.com (CD_MyAcO)]]></author>
			<pubDate>Mon, 26 Oct 2020 14:51:32 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=142851#p142851</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Нажатие вкл/выкл скрипта]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=142850#p142850</link>
			<description><![CDATA[<p>Это смотря какой скрипт. Показывайте, что там у Вас - горячие клавиши или таймеры или циклы?</p>]]></description>
			<author><![CDATA[null@example.com (ypppu)]]></author>
			<pubDate>Mon, 26 Oct 2020 14:50:30 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=142850#p142850</guid>
		</item>
		<item>
			<title><![CDATA[AHK: Нажатие вкл/выкл скрипта]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=142848#p142848</link>
			<description><![CDATA[<p>Не могу разобраться. Как сделать скрипт, если нажать на клавишу, работает скрипт, нажал 2 раз на ту же самую клавишу, скрипт перестал работать?<br />Я смотрел примеры, ничего не понял. Если можно киньте обычный код.</p>]]></description>
			<author><![CDATA[null@example.com (CD_MyAcO)]]></author>
			<pubDate>Mon, 26 Oct 2020 14:48:08 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=142848#p142848</guid>
		</item>
	</channel>
</rss>
