<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; AHK: Объединение 4 скриптов]]></title>
	<link rel="self" href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=15368&amp;type=atom" />
	<updated>2020-05-17T20:11:31Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=15368</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Объединение 4 скриптов]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=139599#p139599" />
			<content type="html"><![CDATA[<p>Ну или так:<br /></p><div class="codebox"><pre><code>Color = 00FB1B
WS_EX_TRANSPARENT := 0x20

for k, v in [ {x: 963, y: 539, w: 114, h: 112}
            , {x: 363, y: 339, w: 114, h: 112}
            , {x: 963, y: 39, w: 114, h: 112}
            , {x: 63, y: 539, w: 114, h: 112} ]
{
   Gui, New, +AlwaysOnTop -Caption +ToolWindow +LastFound +E%WS_EX_TRANSPARENT%
   WinSet, Transparent, 255
   Gui, Color, % Color
   Gui, Show, % &quot;NA x&quot; . v.x . &quot; y&quot; . v.y . &quot; w&quot; . v.w . &quot; h&quot; v.h
}</code></pre></div>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2020-05-17T20:11:31Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=139599#p139599</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Объединение 4 скриптов]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=139594#p139594" />
			<content type="html"><![CDATA[<p><strong>serzh82saratov</strong><br />Большое спасибо!</p>]]></content>
			<author>
				<name><![CDATA[SuBrex]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=40829</uri>
			</author>
			<updated>2020-05-17T10:55:22Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=139594#p139594</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Объединение 4 скриптов]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=139593#p139593" />
			<content type="html"><![CDATA[<p>Код надо обрамлять тегом, исправьте.</p><div class="codebox"><pre><code>
x = 963
y = 539
w = 114
h = 112
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 = 363
y = 339
w = 114
h = 112
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 = 963
y = 39
w = 114
h = 112
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 = 63
y = 539
w = 114
h = 112
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[serzh82saratov]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27879</uri>
			</author>
			<updated>2020-05-17T10:49:16Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=139593#p139593</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: Объединение 4 скриптов]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=139592#p139592" />
			<content type="html"><![CDATA[<p>Добрый день всем! Прошу ответить мне возможно-ли (а если возможно, то как) объединить 4 скрипта приведённых ниже:<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
</code></pre></div><p>P.S.: Далее те же скрипты, только с другими x,y,w,h</p>]]></content>
			<author>
				<name><![CDATA[SuBrex]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=40829</uri>
			</author>
			<updated>2020-05-17T10:41:48Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=139592#p139592</id>
		</entry>
</feed>
