<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; AHK: Авто нажатие ЛКМ при вкл Caps Lock]]></title>
	<link rel="self" href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=8650&amp;type=atom" />
	<updated>2013-09-04T17:30:52Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=8650</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Авто нажатие ЛКМ при вкл Caps Lock]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=75213#p75213" />
			<content type="html"><![CDATA[<p>Спасибо огромное! Тему можно закрыть.</p>]]></content>
			<author>
				<name><![CDATA[size222]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27237</uri>
			</author>
			<updated>2013-09-04T17:30:52Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=75213#p75213</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Авто нажатие ЛКМ при вкл Caps Lock]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=75212#p75212" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>~*LButton::
</code></pre></div>]]></content>
			<author>
				<name><![CDATA[serzh82saratov]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27879</uri>
			</author>
			<updated>2013-09-04T17:24:56Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=75212#p75212</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Авто нажатие ЛКМ при вкл Caps Lock]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=75211#p75211" />
			<content type="html"><![CDATA[<p>При включенном капс лок и измененном параметре ToolTip на Click, заработало. но когда выключаешь капс лок то не работает клик ( т.е мышка не реагирует на нажатие ЛКМ)</p><p>Вопрос остается открытым.</p>]]></content>
			<author>
				<name><![CDATA[size222]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27237</uri>
			</author>
			<updated>2013-09-04T17:16:42Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=75211#p75211</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Авто нажатие ЛКМ при вкл Caps Lock]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=75208#p75208" />
			<content type="html"><![CDATA[<p>К сожалению не работает и при активированном Капсе пишет (при нажатии на ЛКМ)&nbsp; ToolTip рядом с курсором</p>]]></content>
			<author>
				<name><![CDATA[size222]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27237</uri>
			</author>
			<updated>2013-09-04T16:41:54Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=75208#p75208</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Авто нажатие ЛКМ при вкл Caps Lock]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=75207#p75207" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>*LButton::
   While GetKeyState(&quot;LButton&quot;, &quot;P&quot;) &amp;&amp; GetKeyState(&quot;CapsLock&quot;, &quot;T&quot;)
   {
      ToolTip ToolTip
      Sleep, 1000 ; регулируемый интервал (щас 1000мс, что соответствует 1сек.)
   }
   Return</code></pre></div>]]></content>
			<author>
				<name><![CDATA[serzh82saratov]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27879</uri>
			</author>
			<updated>2013-09-04T16:37:41Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=75207#p75207</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Авто нажатие ЛКМ при вкл Caps Lock]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=75204#p75204" />
			<content type="html"><![CDATA[<p>Спасибо конечно.<br />Но к сожалению не работает. Что при вкл. Капсе работает авто нажатие что при выключенном.</p>]]></content>
			<author>
				<name><![CDATA[size222]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27237</uri>
			</author>
			<updated>2013-09-04T16:31:13Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=75204#p75204</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Авто нажатие ЛКМ при вкл Caps Lock]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=75202#p75202" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>
*LButton::
   While GetKeyState(&quot;LButton&quot;, &quot;P&quot;) || GetKeyState(&quot;CapsLock&quot;)
   {
      Click
      Sleep, 1000 ; регулируемый интервал (щас 1000мс, что соответствует 1сек.)
   }
   Return
</code></pre></div>]]></content>
			<author>
				<name><![CDATA[serzh82saratov]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27879</uri>
			</author>
			<updated>2013-09-04T16:22:57Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=75202#p75202</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: Авто нажатие ЛКМ при вкл Caps Lock]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=75200#p75200" />
			<content type="html"><![CDATA[<p>Подскажите пожалуйста как изменить этот код что бы при включенном Капсе работало авто нажатие. </p><p>Соответственно при выключенном не работало.</p><div class="codebox"><pre><code>*LButton::
   While GetKeyState(&quot;LButton&quot;, &quot;P&quot;)
   {
      Click
      Sleep, 1000 ; регулируемый интервал (щас 1000мс, что соответствует 1сек.)
   }
   Return</code></pre></div>]]></content>
			<author>
				<name><![CDATA[size222]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27237</uri>
			</author>
			<updated>2013-09-04T16:19:11Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=75200#p75200</id>
		</entry>
</feed>
