<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Серый форум &mdash; AHK: Объединение 4 скриптов]]></title>
		<link>https://forum.script-coding.com/viewtopic.php?id=15368</link>
		<atom:link href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=15368&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[Недавние сообщения в теме «AHK: Объединение 4 скриптов».]]></description>
		<lastBuildDate>Sun, 17 May 2020 20:11:31 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: AHK: Объединение 4 скриптов]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=139599#p139599</link>
			<description><![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>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Sun, 17 May 2020 20:11:31 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=139599#p139599</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Объединение 4 скриптов]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=139594#p139594</link>
			<description><![CDATA[<p><strong>serzh82saratov</strong><br />Большое спасибо!</p>]]></description>
			<author><![CDATA[null@example.com (SuBrex)]]></author>
			<pubDate>Sun, 17 May 2020 10:55:22 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=139594#p139594</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Объединение 4 скриптов]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=139593#p139593</link>
			<description><![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>]]></description>
			<author><![CDATA[null@example.com (serzh82saratov)]]></author>
			<pubDate>Sun, 17 May 2020 10:49:16 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=139593#p139593</guid>
		</item>
		<item>
			<title><![CDATA[AHK: Объединение 4 скриптов]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=139592#p139592</link>
			<description><![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>]]></description>
			<author><![CDATA[null@example.com (SuBrex)]]></author>
			<pubDate>Sun, 17 May 2020 10:41:48 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=139592#p139592</guid>
		</item>
	</channel>
</rss>
