<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Серый форум &mdash; AHK: Не срабатывает конструкция KeyWait, %A_ThisHotkey%]]></title>
		<link>https://forum.script-coding.com/viewtopic.php?id=9729</link>
		<atom:link href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=9729&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[Недавние сообщения в теме «AHK: Не срабатывает конструкция KeyWait, %A_ThisHotkey%».]]></description>
		<lastBuildDate>Sun, 22 Jun 2014 12:56:51 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: AHK: Не срабатывает конструкция KeyWait, %A_ThisHotkey%]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=84085#p84085</link>
			<description><![CDATA[<p>Спасибо! Даже не думал, что эта команда возвращает строку со знаком.</p>]]></description>
			<author><![CDATA[null@example.com (raznoczvetov)]]></author>
			<pubDate>Sun, 22 Jun 2014 12:56:51 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=84085#p84085</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Не срабатывает конструкция KeyWait, %A_ThisHotkey%]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=84084#p84084</link>
			<description><![CDATA[<p>Отрезать знак. Команде нужно имя клавиши, а не имя хоткея. В моём примере они совпадают, а в вашем нет.<br /></p><div class="codebox"><pre><code>
$vk58:: ; клавиша X
KeyWait, % Substr(A_ThisHotkey, 2) ;vk58
Send, {vk58}
Return
</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (YMP)]]></author>
			<pubDate>Sun, 22 Jun 2014 12:40:26 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=84084#p84084</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Не срабатывает конструкция KeyWait, %A_ThisHotkey%]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=84083#p84083</link>
			<description><![CDATA[<div class="quotebox"><cite>YMP пишет:</cite><blockquote><p>Конечно.<br /></p><div class="codebox"><pre><code>
F11::
    KeyWait, %A_ThisHotkey%
    MsgBox, Hello
Return
</code></pre></div></blockquote></div><p>Действительно - без знака $ срабатывает. Но в моём случае, без него получается вызов клавишей самой себя. Как же тогда быть в этой ситуации.</p>]]></description>
			<author><![CDATA[null@example.com (raznoczvetov)]]></author>
			<pubDate>Sun, 22 Jun 2014 12:29:49 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=84083#p84083</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Не срабатывает конструкция KeyWait, %A_ThisHotkey%]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=84082#p84082</link>
			<description><![CDATA[<p>Конечно.<br /></p><div class="codebox"><pre><code>
F11::
    KeyWait, %A_ThisHotkey%
    MsgBox, Hello
Return
</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (YMP)]]></author>
			<pubDate>Sun, 22 Jun 2014 12:20:30 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=84082#p84082</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Не срабатывает конструкция KeyWait, %A_ThisHotkey%]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=84080#p84080</link>
			<description><![CDATA[<div class="quotebox"><cite>YMP пишет:</cite><blockquote><p>У меня срабатывает.</p></blockquote></div><p>Прямо действия продолжаются именно после отпускания клавиши, а не сразу же?</p><div class="codebox"><pre><code>$vk58:: ; клавиша X
KeyWait, %A_ThisHotkey% ;vk58
Send, {vk58}
Return</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (raznoczvetov)]]></author>
			<pubDate>Sun, 22 Jun 2014 11:24:02 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=84080#p84080</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Не срабатывает конструкция KeyWait, %A_ThisHotkey%]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=84079#p84079</link>
			<description><![CDATA[<p>У меня срабатывает.</p>]]></description>
			<author><![CDATA[null@example.com (YMP)]]></author>
			<pubDate>Sun, 22 Jun 2014 11:11:50 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=84079#p84079</guid>
		</item>
		<item>
			<title><![CDATA[AHK: Не срабатывает конструкция KeyWait, %A_ThisHotkey%]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=84078#p84078</link>
			<description><![CDATA[<p>Не срабатывает конструкция </p><div class="codebox"><pre><code>KeyWait, %A_ThisHotkey%</code></pre></div><p>Пробовал писать по разному. Если прописывать клавишу напрямую, то всё работает. Может кто-нибудь знает, в чём фишка. </p><p>UPD: И вообще, возможно ли передать параметра в KeyWait, через переменную. У меня это, пока не получается сделать...</p>]]></description>
			<author><![CDATA[null@example.com (raznoczvetov)]]></author>
			<pubDate>Sun, 22 Jun 2014 10:51:38 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=84078#p84078</guid>
		</item>
	</channel>
</rss>
