<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; AHK: Изменение количества повторов с помощью GUI]]></title>
	<link rel="self" href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=10555&amp;type=atom" />
	<updated>2015-04-08T08:53:27Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=10555</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Изменение количества повторов с помощью GUI]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=93107#p93107" />
			<content type="html"><![CDATA[<p><strong>teadrinker</strong>, спасибо!</p>]]></content>
			<author>
				<name><![CDATA[HideGenius]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=32783</uri>
			</author>
			<updated>2015-04-08T08:53:27Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=93107#p93107</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Изменение количества повторов с помощью GUI]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=93096#p93096" />
			<content type="html"><![CDATA[<p><strong>teadrinker</strong>, спасибо!</p>]]></content>
			<author>
				<name><![CDATA[HideGenius]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=32783</uri>
			</author>
			<updated>2015-04-07T19:46:57Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=93096#p93096</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Изменение количества повторов с помощью GUI]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=93086#p93086" />
			<content type="html"><![CDATA[<p>Добавьте<br /></p><div class="codebox"><pre><code>!^vk53:: Pause, On
!^vk41:: Pause, Off</code></pre></div>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2015-04-07T13:23:11Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=93086#p93086</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Изменение количества повторов с помощью GUI]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=93085#p93085" />
			<content type="html"><![CDATA[<p><strong>teadrinker</strong>, а как сделать чтобы при нажатии !^s скрипт остановился, а при нажатии !^a снова начал повторять с того места где остановился?</p>]]></content>
			<author>
				<name><![CDATA[HideGenius]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=32783</uri>
			</author>
			<updated>2015-04-07T13:14:07Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=93085#p93085</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Изменение количества повторов с помощью GUI]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=93039#p93039" />
			<content type="html"><![CDATA[<p>Лучше использовать выражение &quot;вышеприведённый&quot;.<br /></p><div class="codebox"><pre><code>gui, +alwaysontop -border 
Gui, Add, Edit, vEdit x0 y0 w60 h20 Number
Gui, Add, Button, x0 y20 w60 h20 , Ок
Gui, Add, Button, x0 y40 w60 h20 , Отмена
Gui, Show, x127 y87 h60 w60, New GUI Window
Return

ButtonОтмена:
ExitApp

ButtonОк:
   GuiControlGet, Edit
   WinActivate, ahk_class Chrome_WidgetWin_1
   Loop % Edit  {
      send {down}0
      sleep, 500
      send {tab}{tab}{space}
      sleep, 500
   }
   Return</code></pre></div><p>Но ещё нужно убедиться, что в Хроме в фокусе именно то поле, в которое нужно посылать клавиши.</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2015-04-05T21:22:05Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=93039#p93039</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Изменение количества повторов с помощью GUI]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=93037#p93037" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>teadrinker пишет:</cite><blockquote><p>, а куда скрипт должен посылать клавиши? В таком виде посылаться будет в само окно скрипта.</p></blockquote></div><p>В окно гугл хрома.<br /></p><div class="codebox"><pre><code>Batch Editor v0.2.2 - пакетное редактирование товаров - Google Chrome,
</code></pre></div>]]></content>
			<author>
				<name><![CDATA[HideGenius]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=32783</uri>
			</author>
			<updated>2015-04-05T21:18:39Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=93037#p93037</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Изменение количества повторов с помощью GUI]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=93035#p93035" />
			<content type="html"><![CDATA[<p><strong>teadrinker</strong>, исправил, извиняюсь.</p>]]></content>
			<author>
				<name><![CDATA[HideGenius]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=32783</uri>
			</author>
			<updated>2015-04-05T21:14:49Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=93035#p93035</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Изменение количества повторов с помощью GUI]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=93034#p93034" />
			<content type="html"><![CDATA[<p><strong>HideGenius</strong>, а куда скрипт должен посылать клавиши? В таком виде посылаться будет в само окно скрипта.</p><div class="quotebox"><cite>HideGenius пишет:</cite><blockquote><p>выше надевеный</p></blockquote></div><p>Этого не понял.</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2015-04-05T21:06:21Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=93034#p93034</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: Изменение количества повторов с помощью GUI]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=93032#p93032" />
			<content type="html"><![CDATA[<p>Есть GUI <br /></p><div class="fancy_spoiler_switcher"><div class="fancy_spoiler_switcher_header"><strong>+</strong>&nbsp;gui</div><div class="fancy_spoiler"><div class="codebox"><pre><code>gui, +alwaysontop -border 
Gui, Add, Edit, x0 y0 w60 h20 , Edit
Gui, Add, Button, x0 y20 w60 h20 , Ок
Gui, Add, Button, x0 y40 w60 h20 , Отмена
Gui, Show, x127 y87 h60 w60, New GUI Window
Return

Отмена::
ExitApp
</code></pre></div></div></div><p>И есть скрипт исполнитель<br /></p><div class="codebox"><pre><code>send {down}0
sleep, 500
send {tab}{tab}{space}
sleep, 500</code></pre></div><p>Как сделать чтобы когда вписываешь в строку ввода GUI желаемое число и после нажатия кнопки &quot;Ок&quot; в GUI&nbsp; то выше наведеный скрипт повторялся то количество раз сколько было введено в строку ввода GUI. Заранее спасибо!</p>]]></content>
			<author>
				<name><![CDATA[HideGenius]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=32783</uri>
			</author>
			<updated>2015-04-05T20:48:20Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=93032#p93032</id>
		</entry>
</feed>
