<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; AHK: Включение/Выключение моего скрипта на кнопку XButton2]]></title>
	<link rel="self" href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=15369&amp;type=atom" />
	<updated>2020-05-23T06:45:29Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=15369</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Включение/Выключение моего скрипта на кнопку XButton2]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=139675#p139675" />
			<content type="html"><![CDATA[<p>Пишут:&nbsp; Я нашёл решение, Сам разобрался.&nbsp; Где код с решением?</p>]]></content>
			<author>
				<name><![CDATA[EV]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=40256</uri>
			</author>
			<updated>2020-05-23T06:45:29Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=139675#p139675</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Включение/Выключение моего скрипта на кнопку XButton2]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=139674#p139674" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>serzh82saratov пишет:</cite><blockquote><p>У меня нет XButton, а если на &quot;1&quot;, работает?<br /></p><div class="codebox"><pre><code>
Suspend, On
1::
Suspend, Off
KeyWait, 1
Suspend, On 
</code></pre></div></blockquote></div><p>Suspend, пока не зажать 1::</p>]]></content>
			<author>
				<name><![CDATA[EV]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=40256</uri>
			</author>
			<updated>2020-05-23T06:19:16Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=139674#p139674</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Включение/Выключение моего скрипта на кнопку XButton2]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=139673#p139673" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>F3::
Suspend
Pause,,1
return</code></pre></div>]]></content>
			<author>
				<name><![CDATA[EV]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=40256</uri>
			</author>
			<updated>2020-05-23T06:06:34Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=139673#p139673</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Включение/Выключение моего скрипта на кнопку XButton2]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=139606#p139606" />
			<content type="html"><![CDATA[<p><strong>serzh82saratov</strong><br />Нет, не получилось. Но я уже нашёл решение вчера <img src="//forum.script-coding.com/img/smilies/smile.png" width="15" height="15" /> В любом случае большое спасибо! <img src="//forum.script-coding.com/img/smilies/smile.png" width="15" height="15" /></p>]]></content>
			<author>
				<name><![CDATA[SuBrex]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=40829</uri>
			</author>
			<updated>2020-05-18T08:06:27Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=139606#p139606</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Включение/Выключение моего скрипта на кнопку XButton2]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=139597#p139597" />
			<content type="html"><![CDATA[<p>У меня нет XButton, а если на &quot;1&quot;, работает?<br /></p><div class="codebox"><pre><code>
Suspend, On
1::
Suspend, Off
KeyWait, 1
Suspend, On 
</code></pre></div>]]></content>
			<author>
				<name><![CDATA[serzh82saratov]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27879</uri>
			</author>
			<updated>2020-05-17T13:37:25Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=139597#p139597</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: Включение/Выключение моего скрипта на кнопку XButton2]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=139595#p139595" />
			<content type="html"><![CDATA[<p>Видел подобную тему на форуме, но тем не менее все решения мне не подошли. В моём коде на кнопку Xbutton2 скрипт включается, но не выключается на ту же кнопку. Может подскажите, пожалуйста, как решить проблему?<br /></p><div class="codebox"><pre><code>
   Suspend, On
   XButton2::
   Suspend, Off
   KeyWait, XButton2
   Suspend, On
x = 963
y = 539
w = 4
h = 2
Color = 00FB1B
WS_EX_TRANSPARENT := 0x20
WS_EX_LAYERED := 0x80000
Gui, +AlwaysOnTop -Caption +ToolWindow +LastFound
Gui, Color, % Color
Gui, Show, x%x% y%y% w%w% h%h% NA
WinSet, ExStyle, % &quot;+&quot; WS_EX_LAYERED|WS_EX_TRANSPARENT

x = 953
y = 539
w = 4
h = 2
Color = 00FB1B
WS_EX_TRANSPARENT := 0x20
WS_EX_LAYERED := 0x80000
Gui, New, +AlwaysOnTop -Caption +ToolWindow +LastFound
Gui, Color, % Color
Gui, Show, x%x% y%y% w%w% h%h% NA
WinSet, ExStyle, % &quot;+&quot; WS_EX_LAYERED|WS_EX_TRANSPARENT

x = 959
y = 543
w = 2
h = 4
Color = 00FB1B
WS_EX_TRANSPARENT := 0x20
WS_EX_LAYERED := 0x80000
Gui, New, +AlwaysOnTop -Caption +ToolWindow +LastFound
Gui, Color, % Color
Gui, Show, x%x% y%y% w%w% h%h% NA
WinSet, ExStyle, % &quot;+&quot; WS_EX_LAYERED|WS_EX_TRANSPARENT

x = 959
y = 533
w = 2
h = 4
Color = 00FB1B
WS_EX_TRANSPARENT := 0x20
WS_EX_LAYERED := 0x80000
Gui, New, +AlwaysOnTop -Caption +ToolWindow +LastFound
Gui, Color, % Color
Gui, Show, x%x% y%y% w%w% h%h% NA
WinSet, ExStyle, % &quot;+&quot; WS_EX_LAYERED|WS_EX_TRANSPARENT
</code></pre></div>]]></content>
			<author>
				<name><![CDATA[SuBrex]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=40829</uri>
			</author>
			<updated>2020-05-17T11:27:02Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=139595#p139595</id>
		</entry>
</feed>
