<?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=6139&amp;type=atom" />
	<updated>2011-08-23T20:26:17Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=6139</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Не работают несколько условий]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=50846#p50846" />
			<content type="html"><![CDATA[<p>2 <strong>ypppu</strong> Спасибо, учту.</p>]]></content>
			<author>
				<name><![CDATA[Grey]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=25792</uri>
			</author>
			<updated>2011-08-23T20:26:17Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=50846#p50846</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Не работают несколько условий]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=50844#p50844" />
			<content type="html"><![CDATA[<p><span style="color: blue">OFF (намёк): <strong>Grey</strong>, если имеются какие-либо разработки, интересные алгоритмы или просто полезные идеи - поделитесь с участниками форума. Имеются основания повысить Вас до Разработчика. </span></p>]]></content>
			<author>
				<name><![CDATA[ypppu]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=5974</uri>
			</author>
			<updated>2011-08-23T18:26:27Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=50844#p50844</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Не работают несколько условий]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=50841#p50841" />
			<content type="html"><![CDATA[<p>Вот это мне роднее, спасибо!</p>]]></content>
			<author>
				<name><![CDATA[ascerdfg1]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24672</uri>
			</author>
			<updated>2011-08-23T17:47:42Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=50841#p50841</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Не работают несколько условий]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=50837#p50837" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>ascerdfg1 пишет:</cite><blockquote><p>...скобки зачем?</p></blockquote></div><p><a href="http://www.autohotkey.com/docs/Functions.htm#BuiltIn">Круглые</a>, потому, что это встроенная функция, <a href="http://www.autohotkey.com/docs/commands/Block.htm">фигурные</a> для того, чтобы объединить более одной стоки выполнения условия. Можно и без фунции, так как её задача в другом: </p><div class="codebox"><pre><code>SetTitleMatchMode, RegEx
#r::
   IfWinActive, Total
      Send, {BS}
   Else IfWinActive, Notepad
   {
      Sleep, 500
      Send, {BS}
   }
   Return</code></pre></div><p>Ах да, в коде выше я перепутал местами приложения (Total, Notepad), думаю это не критично.</p>]]></content>
			<author>
				<name><![CDATA[Grey]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=25792</uri>
			</author>
			<updated>2011-08-23T16:58:10Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=50837#p50837</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Не работают несколько условий]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=50820#p50820" />
			<content type="html"><![CDATA[<p>О как всё закручено! Спасибо! А скобки зачем?</p>]]></content>
			<author>
				<name><![CDATA[ascerdfg1]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24672</uri>
			</author>
			<updated>2011-08-23T06:39:40Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=50820#p50820</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Не работают несколько условий]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=50816#p50816" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>SetTitleMatchMode, RegEx
#r::
   If WinActive(&quot;Notepad&quot;)
      Send, {BS}
   Else If WinActive(&quot;Total&quot;)
   {
      Sleep, 500
      Send, {BS}
   }
   Return</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Grey]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=25792</uri>
			</author>
			<updated>2011-08-22T21:27:54Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=50816#p50816</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Не работают несколько условий]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=50790#p50790" />
			<content type="html"><![CDATA[<p>Я исправил.</p>]]></content>
			<author>
				<name><![CDATA[ascerdfg1]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24672</uri>
			</author>
			<updated>2011-08-22T07:37:53Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=50790#p50790</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Не работают несколько условий]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=50776#p50776" />
			<content type="html"><![CDATA[<p><span style="color: green"><strong>ascerdfg1</strong>, название темы и содержание сообщения не несут практически никакой информации, что не соответствует правилам форума.</span></p>]]></content>
			<author>
				<name><![CDATA[ypppu]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=5974</uri>
			</author>
			<updated>2011-08-21T18:31:54Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=50776#p50776</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: Не работают несколько условий]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=50775#p50775" />
			<content type="html"><![CDATA[<p>При нажимании горячих клавиш &quot;Win+R&quot;, клавиша &quot;Backspace&quot; эмулируется только с активным окном программы &quot;Total Commander&quot;, а с активным окном программы &quot;Notepad++&quot; - нет.<br /></p><div class="codebox"><pre><code>SetTitleMatchMode, RegEx 
#r::
IfWinActive, Total*
    Send, {BS}
    Return
IfWinActive, *Notepad*
    Sleep, 500
    Send, {BS}
    Return</code></pre></div><p>Помогите починить.</p>]]></content>
			<author>
				<name><![CDATA[ascerdfg1]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24672</uri>
			</author>
			<updated>2011-08-21T17:58:02Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=50775#p50775</id>
		</entry>
</feed>
