<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Серый форум &mdash; AHK: Срабатывание скрипта, если активно одно окно, либо другое]]></title>
		<link>https://forum.script-coding.com/viewtopic.php?id=9771</link>
		<atom:link href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=9771&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[Недавние сообщения в теме «AHK: Срабатывание скрипта, если активно одно окно, либо другое».]]></description>
		<lastBuildDate>Fri, 04 Jul 2014 17:45:44 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: AHK: Срабатывание скрипта, если активно одно окно, либо другое]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=84530#p84530</link>
			<description><![CDATA[<p>Дело в том, что и в документации написано так: </p><div class="codebox"><pre><code>WinActive(&quot;ahk_class&quot; . OWL.DocumentWindow)</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (raznoczvetov)]]></author>
			<pubDate>Fri, 04 Jul 2014 17:45:44 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=84530#p84530</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Срабатывание скрипта, если активно одно окно, либо другое]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=84527#p84527</link>
			<description><![CDATA[<div class="quotebox"><blockquote><p>WinActive(&quot;ahk_class&quot; . OWL.DocumentWindow)</p></blockquote></div><p>Хм, Я подумал что <strong>OWL</strong> тут, это массив.</p>]]></description>
			<author><![CDATA[null@example.com (serzh82saratov)]]></author>
			<pubDate>Fri, 04 Jul 2014 17:36:43 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=84527#p84527</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Срабатывание скрипта, если активно одно окно, либо другое]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=84525#p84525</link>
			<description><![CDATA[<p>Спасибо за подсказки. Корректно срабатывает так:<br /></p><div class="codebox"><pre><code>
#If WinActive(&quot;ahk_class Notepad&quot;) or WinActive(&quot;ahk_class OWL.DocumentWindow&quot;)
{
}
</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (raznoczvetov)]]></author>
			<pubDate>Fri, 04 Jul 2014 17:30:53 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=84525#p84525</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Срабатывание скрипта, если активно одно окно, либо другое]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=84524#p84524</link>
			<description><![CDATA[<p><strong>ypppu</strong><br />IfWinActive здесь вообще не при делах.</p><div class="codebox"><pre><code>#If WinActive(&quot;ahk_class Notepad&quot;) || WinActive(&quot;ahk_class&quot; . OWL.DocumentWindow)
{
}</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (serzh82saratov)]]></author>
			<pubDate>Fri, 04 Jul 2014 17:21:51 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=84524#p84524</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Срабатывание скрипта, если активно одно окно, либо другое]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=84522#p84522</link>
			<description><![CDATA[<p>Спасибо!</p>]]></description>
			<author><![CDATA[null@example.com (raznoczvetov)]]></author>
			<pubDate>Fri, 04 Jul 2014 17:20:42 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=84522#p84522</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Срабатывание скрипта, если активно одно окно, либо другое]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=84519#p84519</link>
			<description><![CDATA[<p>В документации посмотрите разницу между условием <em>IfWinActive</em> и директивой <em>#IfWinActive</em>.</p>]]></description>
			<author><![CDATA[null@example.com (ypppu)]]></author>
			<pubDate>Fri, 04 Jul 2014 17:03:52 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=84519#p84519</guid>
		</item>
		<item>
			<title><![CDATA[AHK: Срабатывание скрипта, если активно одно окно, либо другое]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=84517#p84517</link>
			<description><![CDATA[<p>Как правильно написать конструкцию, чтобы скрипт выполнялся при активности одного окна, либо другого.<br />То что пробовал, но не работает:<br /></p><div class="codebox"><pre><code>
#IfWinActive (&quot;ahk_class Notepad&quot;) or WinActive(&quot;ahk_class OWL.DocumentWindow&quot;)
{
}
</code></pre></div><div class="codebox"><pre><code>
#IfWinActive (&quot;ahk_class Notepad&quot;) or WinActive(&quot;ahk_class&quot; . OWL.DocumentWindow)
{
}
</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (raznoczvetov)]]></author>
			<pubDate>Fri, 04 Jul 2014 16:00:31 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=84517#p84517</guid>
		</item>
	</channel>
</rss>
