<?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=15378&amp;type=atom" />
	<updated>2020-05-20T18:45:56Z</updated>
	<generator>PunBB</generator>
	<id>http://forum.script-coding.com/viewtopic.php?id=15378</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Теперь мышка не зажимается]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=139635#p139635" />
			<content type="html"><![CDATA[<p>Уже нашёл решение.</p>]]></content>
			<author>
				<name><![CDATA[SuBrex]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=40829</uri>
			</author>
			<updated>2020-05-20T18:45:56Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=139635#p139635</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Теперь мышка не зажимается]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=139634#p139634" />
			<content type="html"><![CDATA[<p>Это зажимает ЛКМ, но при этом его уже не отжать.</p>]]></content>
			<author>
				<name><![CDATA[SuBrex]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=40829</uri>
			</author>
			<updated>2020-05-20T18:05:11Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=139634#p139634</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Теперь мышка не зажимается]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=139633#p139633" />
			<content type="html"><![CDATA[<p>&quot;~&quot; перед &quot;LButton&quot;.</p>]]></content>
			<author>
				<name><![CDATA[Phoenixxx_Czar]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=34426</uri>
			</author>
			<updated>2020-05-20T17:50:18Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=139633#p139633</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: Теперь мышка не зажимается]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=139632#p139632" />
			<content type="html"><![CDATA[<p>Здравствуйте! Столкнулся с неприятной для меня проблемой.<br /></p><div class="codebox"><pre><code>
LButton Up::
 Loop
 {
  If !GetKeyState(&quot;LButton Up&quot;, &quot;P&quot;)
  ExitApp
 }
</code></pre></div><p>Программа не закрывается, пока не отжата ЛКМ. Прекрасно. Но при этом я не могу взаимодействовать с объектами. Закрывать, сворачивать окна, перетаскивать объекты по рабочему столу. Существует ли решение данной проблемы? Хочется, чтобы и программа работала пока зажата ЛКМ, но при этом с другими вещами тоже можно было взаимодействовать.<br />Чтобы до конца была понятна ситуация:<br />Прицел (Активный):<br /></p><div class="codebox"><pre><code>
x = 963
y = 539
w = 4
h = 2
Color = FB0000
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 = FB0000
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 = FB0000
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 = FB0000
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
LButton Up::
 Loop
 {
  If !GetKeyState(&quot;LButton Up&quot;, &quot;P&quot;)
  ExitApp
 }
</code></pre></div><p>Прицел:<br /></p><div class="codebox"><pre><code>
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
LButton::
Run, Прицел (Активный).ahk &quot;C:\Users\Расим\Desktop\Игры\Для кс го\Прицел (Активный).ahk&quot;
Return
Xbutton2::
Run, Для включения прицела.ahk &quot;C:\Users\Расим\Desktop\Игры\Для кс го\Для включения прицела.ahk&quot;
ExitApp
</code></pre></div>]]></content>
			<author>
				<name><![CDATA[SuBrex]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=40829</uri>
			</author>
			<updated>2020-05-20T17:11:21Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=139632#p139632</id>
		</entry>
</feed>
