<?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="http://forum.script-coding.com/extern.php?action=feed&amp;tid=6147&amp;type=atom" />
	<updated>2015-09-16T11:18:22Z</updated>
	<generator>PunBB</generator>
	<id>http://forum.script-coding.com/viewtopic.php?id=6147</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Помогите создать скрипт на основе имеющегося]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=97489#p97489" />
			<content type="html"><![CDATA[<p><span style="color: green"><strong>mr.ramser</strong>, <a href="http://forum.script-coding.com/rules.html#3.11.">не нужно</a> приписывать свой вопрос в чужие темы. Создайте свою, либо найдите тему с аналогичным вопросом. Но сначала почитайте <a href="http://forum.script-coding.com/viewtopic.php?id=6148">правила</a>.</span></p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2015-09-16T11:18:22Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=97489#p97489</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Помогите создать скрипт на основе имеющегося]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=97477#p97477" />
			<content type="html"><![CDATA[<p>Всем здравствуйте, есть один вопросик. Как сделать чтоб при нажатии клавиши ЛШифт очень часто нажималась клавиша ПШифт, а когда отпускаешь то цикл прекращался</p>]]></content>
			<author>
				<name><![CDATA[mr.ramser]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=33354</uri>
			</author>
			<updated>2015-09-16T05:11:30Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=97477#p97477</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Помогите создать скрипт на основе имеющегося]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=50889#p50889" />
			<content type="html"><![CDATA[<p>Всем БОЛЬШОЕ СПАСИБО, в будущем хочу сам освоить скрипты (когда времени будет побольше), ибо такая штука всегда пригодиться для разных задач <img src="//forum.script-coding.com/img/smilies/smile.png" width="15" height="15" /></p>]]></content>
			<author>
				<name><![CDATA[Acomsait]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=27159</uri>
			</author>
			<updated>2011-08-26T14:58:45Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=50889#p50889</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Помогите создать скрипт на основе имеющегося]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=50884#p50884" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>HotKeys := &quot;F1,F2,F3,F4&quot;

Del::
   While GetKeyState(&quot;Del&quot;, &quot;P&quot;)
   {
      Loop, Parse, HotKeys, `,
      {
         Send, {%A_LoopField%}
         Click
         If !GetKeyState(&quot;Del&quot;, &quot;P&quot;)
            Break
         Sleep, 10 ; скорость можно задать тут
      }
   }
   Return</code></pre></div><div class="codebox"><pre><code>Del::
   While GetKeyState(&quot;Del&quot;, &quot;P&quot;)
   {
      Send, {F1}
      Click
      If !GetKeyState(&quot;Del&quot;, &quot;P&quot;)
         Break
      Sleep, 10
      Send, {F2}
      Click
      If !GetKeyState(&quot;Del&quot;, &quot;P&quot;)
         Break
      Sleep, 10
      Send, {F3}
      Click
      If !GetKeyState(&quot;Del&quot;, &quot;P&quot;)
         Break
      Sleep, 10
      Send, {F4}
      Click
      If !GetKeyState(&quot;Del&quot;, &quot;P&quot;)
         Break
      Sleep, 10
   }
   Return</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Grey]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=25792</uri>
			</author>
			<updated>2011-08-26T12:05:02Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=50884#p50884</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Помогите создать скрипт на основе имеющегося]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=50883#p50883" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>Del::
Loop
{
if not GetKeyState(&quot;Del&quot;, &quot;P&quot;)
break
Send {F1}{LButton}{F2}{LButton}{F3}{LButton}{F4}{LButton}
}
return</code></pre></div>]]></content>
			<author>
				<name><![CDATA[ypppu]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=5974</uri>
			</author>
			<updated>2011-08-26T11:50:45Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=50883#p50883</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Помогите создать скрипт на основе имеющегося]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=50879#p50879" />
			<content type="html"><![CDATA[<p>Да, отлично.</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2011-08-26T09:24:57Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=50879#p50879</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Помогите создать скрипт на основе имеющегося]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=50877#p50877" />
			<content type="html"><![CDATA[<p>Так нормально?</p>]]></content>
			<author>
				<name><![CDATA[Acomsait]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=27159</uri>
			</author>
			<updated>2011-08-26T06:20:01Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=50877#p50877</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Помогите создать скрипт на основе имеющегося]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=50870#p50870" />
			<content type="html"><![CDATA[<p><span style="color: green"><strong>Acomsait</strong>, ознакомься с <a href="http://forum.script-coding.com/misc.php?action=rules">Правилами</a> и отредактируй заголовок и текст поста.</span></p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2011-08-25T15:20:57Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=50870#p50870</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: Помогите создать скрипт на основе имеющегося]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=50869#p50869" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>$F2::
Loop
{
if not GetKeyState(&quot;F2&quot;, &quot;P&quot;)
break
Send {F2}
Send {Click}
}
return</code></pre></div><p>Выше написан скрипт F2 - клик с максимальной скоростью, помогите создать скрипт чтобы поочередно шло F1 - клик - F2 - клик - F3 - клик - F4 -клик, и повторение, все с максимальной скоростью на клавишу delete. Заранее спасибо, сам просто к скриптам прикасаюсь первый раз в жизни <img src="//forum.script-coding.com/img/smilies/roll.png" width="15" height="15" /></p>]]></content>
			<author>
				<name><![CDATA[Acomsait]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=27159</uri>
			</author>
			<updated>2011-08-25T15:09:12Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=50869#p50869</id>
		</entry>
</feed>
