<?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>http://forum.script-coding.com/viewtopic.php?id=12833</link>
		<atom:link href="http://forum.script-coding.com/extern.php?action=feed&amp;tid=12833&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[Недавние сообщения в теме «AHK: Цикл комбинаций».]]></description>
		<lastBuildDate>Sat, 22 Jul 2017 08:13:21 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: AHK: Цикл комбинаций]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=117457#p117457</link>
			<description><![CDATA[<p><strong>belyankin12</strong><br />Большое спасибо, то что надо</p>]]></description>
			<author><![CDATA[null@example.com (qtongo)]]></author>
			<pubDate>Sat, 22 Jul 2017 08:13:21 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=117457#p117457</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Цикл комбинаций]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=117450#p117450</link>
			<description><![CDATA[<p><strong>qtongo</strong>, </p><div class="codebox"><pre><code>$+q::
Sendinput {Shift} (или {Shift down}, если шифт зажать нужно)
Loop 
{
if not GetKeyState(&quot;q&quot;, &quot;P&quot;)
break
Send +q
sleep 50
}
Sendinput {Shift Up} (если шифт даун использовал)
return</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (belyankin12)]]></author>
			<pubDate>Sat, 22 Jul 2017 06:09:28 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=117450#p117450</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Цикл комбинаций]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=117445#p117445</link>
			<description><![CDATA[<p><strong>Ядрён</strong><br />Но тогда цикл q без шифта не работает</p>]]></description>
			<author><![CDATA[null@example.com (qtongo)]]></author>
			<pubDate>Fri, 21 Jul 2017 23:00:23 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=117445#p117445</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Цикл комбинаций]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=117443#p117443</link>
			<description><![CDATA[<p>Доброго времени суток. Попробуйте так.<br /></p><div class="codebox"><pre><code>~*$vk51:: ;Q
  while GetKeyState(&quot;vkA0&quot;,&quot;P&quot;) 
{
DllCall(&quot;keybd_event&quot;, UInt, 0xA0, Int, 0, Int, 0x0001, UInt, 0, Int, 0)  ; нажать клавишу shift

DllCall(&quot;keybd_event&quot;, UInt, 0xA0, Int, 0, Int, 0x0002, UInt, 0, Int, 0) ;  отпустить клавишу shift

DllCall(&quot;keybd_event&quot;, UInt, 0x51, Int, 0, Int, 0x0001, UInt, 0, Int, 0) ; нажать клавишу Q

DllCall(&quot;keybd_event&quot;, UInt, 0x51, Int, 0, Int, 0x0002, UInt, 0, Int, 0)  ; отпустить клавишу Q

DllCall(&quot;Sleep&quot;, UInt, 50) ;
}
return</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Ядрён)]]></author>
			<pubDate>Fri, 21 Jul 2017 21:17:38 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=117443#p117443</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Цикл комбинаций]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=117442#p117442</link>
			<description><![CDATA[<p><strong>belyankin12</strong><br />Можешь написать, как это должно выглядеть? У меня не получилось</p>]]></description>
			<author><![CDATA[null@example.com (qtongo)]]></author>
			<pubDate>Fri, 21 Jul 2017 20:45:56 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=117442#p117442</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Цикл комбинаций]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=117429#p117429</link>
			<description><![CDATA[<p>Зажми шифт до активации цикла, а в цикле пусть просто ку нажимается.</p>]]></description>
			<author><![CDATA[null@example.com (belyankin12)]]></author>
			<pubDate>Fri, 21 Jul 2017 11:12:30 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=117429#p117429</guid>
		</item>
		<item>
			<title><![CDATA[AHK: Цикл комбинаций]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=117426#p117426</link>
			<description><![CDATA[<p>Хочу зациклить все клавиши и комбинации клавиш с шифтом, проблема конкретно с комбинациями, т.к. если прописать цикл, например, для shift+q в таком виде: <br /></p><div class="codebox"><pre><code>{
$+q::
Loop 
{
if not GetKeyState(&quot;q&quot;, &quot;P&quot;)
break
Send +q
sleep 50
}
return
}</code></pre></div><p>То при зажатии этой комбинации скрипт выдает <strong>shift+q shift+q shift+q shift+q</strong>, а нужно, чтобы выдавал <strong>shift+qqqqqqqqq</strong></p>]]></description>
			<author><![CDATA[null@example.com (qtongo)]]></author>
			<pubDate>Fri, 21 Jul 2017 08:43:24 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=117426#p117426</guid>
		</item>
	</channel>
</rss>
