<?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="https://forum.script-coding.com/extern.php?action=feed&amp;tid=12168&amp;type=atom" />
	<updated>2016-11-24T12:01:20Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=12168</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Создание черного окна без рамок]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=109328#p109328" />
			<content type="html"><![CDATA[<p><a href="http://forum.script-coding.com/viewtopic.php?id=9163">http://forum.script-coding.com/viewtopic.php?id=9163</a></p>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2016-11-24T12:01:20Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=109328#p109328</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Создание черного окна без рамок]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=109319#p109319" />
			<content type="html"><![CDATA[<p>А можно как то реализовать,чтобы эти квадраты черные закрывали область определенного окна, не тупо поверх всех, а к примеру указать главное окно и чтобы при его активации они работали.</p>]]></content>
			<author>
				<name><![CDATA[Artist]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=33784</uri>
			</author>
			<updated>2016-11-23T18:11:15Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=109319#p109319</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Создание черного окна без рамок]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=109318#p109318" />
			<content type="html"><![CDATA[<p>А эта функция не нужна, лишнее прихватил.</p>]]></content>
			<author>
				<name><![CDATA[ypppu]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=5974</uri>
			</author>
			<updated>2016-11-23T16:55:56Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=109318#p109318</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Создание черного окна без рамок]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=109317#p109317" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>ypppu пишет:</cite><blockquote><p>Позаимствовал у <strong>teadrinker</strong>.</p></blockquote></div><p>А вот это зачем?<br /></p><div class="codebox"><pre><code>OnMessage(0x003, &quot;WM_MOVE&quot;)

WM_MOVE(wp, lp)
{
   global X, Y
   X := lp &amp; 0xFFFF, Y := lp &gt;&gt; 16
}</code></pre></div>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2016-11-23T16:32:40Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=109317#p109317</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Создание черного окна без рамок]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=109315#p109315" />
			<content type="html"><![CDATA[<p>Добавить строку</p><div class="codebox"><pre><code>Gui, +AlwaysOnTop</code></pre></div>]]></content>
			<author>
				<name><![CDATA[ypppu]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=5974</uri>
			</author>
			<updated>2016-11-23T15:26:47Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=109315#p109315</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Создание черного окна без рамок]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=109314#p109314" />
			<content type="html"><![CDATA[<p>А как сделать,чтобы этот квадрат был поверх всего. Чтобы закрепить его поверх всех окон<strong><span style="color: green">?</span></strong></p><br /><p><span style="color: green">Для ответа есть кнопка &quot;Ответить&quot;. Убрал лишнее цитирование.<br />ypppu</span></p>]]></content>
			<author>
				<name><![CDATA[Artist]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=33784</uri>
			</author>
			<updated>2016-11-23T15:04:03Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=109314#p109314</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Создание черного окна без рамок]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=109313#p109313" />
			<content type="html"><![CDATA[<p>Позаимствовал у <strong>teadrinker</strong>.</p><div class="codebox"><pre><code>GUI, Color, 0x000000
Gui, -Caption -Border
GUI, Show, w400 h200

OnMessage(0x201, &quot;WM_LBUTTONDOWN&quot;)
OnMessage(0x003, &quot;WM_MOVE&quot;)
Return

WM_LBUTTONDOWN()
{
   PostMessage, WM_NCLBUTTONDOWN := 0xA1, HTCAPTION := 2
}

WM_MOVE(wp, lp)
{
   global X, Y
   X := lp &amp; 0xFFFF, Y := lp &gt;&gt; 16
}
</code></pre></div>]]></content>
			<author>
				<name><![CDATA[ypppu]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=5974</uri>
			</author>
			<updated>2016-11-23T14:41:02Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=109313#p109313</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Создание черного окна без рамок]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=109312#p109312" />
			<content type="html"><![CDATA[<p>Здравствуйте.<br />Можно попробовать узнать контролы в Window Spy и затем скрыть их при помощи <a href="http://www.script-coding.com/AutoHotkey/Control.html">Conrtol</a>, а отображение и сокрытие привязать к хоткею, или неким условиям. Так должно получиться удобнее, чем таскать чёрный квадрат.</p>]]></content>
			<author>
				<name><![CDATA[KusochekDobra]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=33846</uri>
			</author>
			<updated>2016-11-23T14:26:02Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=109312#p109312</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: Создание черного окна без рамок]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=109311#p109311" />
			<content type="html"><![CDATA[<p>Нужна помощь.<br />Нужен скрипт, который будет создавать черное окно без рамок, это окно можно было бы двигать и менять размеры, а также закреплять поверх всех остальных.</p><p>Мне нужно это для того, чтобы скрыть определенные рабочие области в программе, чтобы на них не отвлекаться.</p>]]></content>
			<author>
				<name><![CDATA[Artist]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=33784</uri>
			</author>
			<updated>2016-11-23T13:29:51Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=109311#p109311</id>
		</entry>
</feed>
