<?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=7906&amp;type=atom" />
	<updated>2015-11-16T15:18:18Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=7906</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Как при нажатии кнопки пропустить часть скрипта]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=99096#p99096" />
			<content type="html"><![CDATA[<p>С помощью условий...<br /></p><div class="codebox"><pre><code>f11::
f12::
send, 1
if (A_ThisHotkey != &quot;f12&quot;)
{
  send, 2
  send, 3
  send, 4
  send, 5,5
}
else
  send, 5
return
</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Alectric]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26027</uri>
			</author>
			<updated>2015-11-16T15:18:18Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=99096#p99096</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Как при нажатии кнопки пропустить часть скрипта]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=99085#p99085" />
			<content type="html"><![CDATA[<p>А как на примере кода из первого поста, по нажатию на&nbsp; F11 заменить &quot;5&quot; на &quot;5,5&quot;?</p>]]></content>
			<author>
				<name><![CDATA[becauseim]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=33149</uri>
			</author>
			<updated>2015-11-16T11:08:39Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=99085#p99085</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Как при нажатии кнопки пропустить часть скрипта]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=67509#p67509" />
			<content type="html"><![CDATA[<p>Удивительно, я был уверен, что всё намного хуже.<br />Пожалуйста.</p>]]></content>
			<author>
				<name><![CDATA[creature.ws]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26105</uri>
			</author>
			<updated>2012-12-24T12:38:42Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=67509#p67509</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Как при нажатии кнопки пропустить часть скрипта]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=67507#p67507" />
			<content type="html"><![CDATA[<p>Спасибо большое!</p>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2012-12-24T12:26:21Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=67507#p67507</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Как при нажатии кнопки пропустить часть скрипта]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=67503#p67503" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>f11::
f12::
    send, 1
    if (A_ThisHotkey &lt;&gt; &quot;f12&quot;) {
        send, 2
        send, 3
        send, 4
    }
    send, 5
    return</code></pre></div>]]></content>
			<author>
				<name><![CDATA[creature.ws]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26105</uri>
			</author>
			<updated>2012-12-24T12:15:08Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=67503#p67503</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: Как при нажатии кнопки пропустить часть скрипта]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=67499#p67499" />
			<content type="html"><![CDATA[<p>Типа:<br /></p><div class="codebox"><pre><code>f11::
send, 1
send, 2
send, 3
send, 4
send, 5

f12::
send, 1
; send, 2    пропускаем
; send, 3    пропускаем
; send, 4    пропускаем
send, 5
</code></pre></div><p>Или легче создать просто новый скрипт?<br />Что не очень хочется, так как их и так 6.</p>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2012-12-24T12:04:37Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=67499#p67499</id>
		</entry>
</feed>
