<?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=13069&amp;type=atom" />
	<updated>2017-10-07T14:32:22Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=13069</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Переменные в GUI]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=119882#p119882" />
			<content type="html"><![CDATA[<p>Переменные в виде простого числа являются встроенными, их лучше не использовать. Добавьте какой нибудь набор букв, или хотя-бы одну букву.</p><div class="codebox"><pre><code>Gui, Add, Hotkey, x12 y20 w50 h40 vkey1 ,
Gui, Add, Hotkey, x72 y20 w50 h40 vkey2 ,
Gui, Show, w138 h86, Untitled GUI
return

GuiClose:
ExitApp

Numpad1::
gui,submit ; &lt;- ключевая фраза
send, %key1%
send, %key2%
var = 1
return

</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Alectric]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26027</uri>
			</author>
			<updated>2017-10-07T14:32:22Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=119882#p119882</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Переменные в GUI]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=119881#p119881" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>
Numpad1:
Gui, Submit, Nohide
Send {%1%}
Send {%2%}
var = 1
return</code></pre></div>]]></content>
			<author>
				<name><![CDATA[belyankin12]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=34408</uri>
			</author>
			<updated>2017-10-07T13:37:35Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=119881#p119881</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Переменные в GUI]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=119880#p119880" />
			<content type="html"><![CDATA[<p><strong>sharhaing</strong>, можешь переформулировать вопрос? <br />А то, мягко говоря, не очень понятно.</p>]]></content>
			<author>
				<name><![CDATA[aktor311]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=38738</uri>
			</author>
			<updated>2017-10-07T12:53:04Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=119880#p119880</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: Переменные в GUI]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=119879#p119879" />
			<content type="html"><![CDATA[<p>Не видит переменные которые указаны в gui</p><div class="codebox"><pre><code>

Gui, Add, Hotkey, x12 y20 w50 h40 v1 , 
Gui, Add, Hotkey, x72 y20 w50 h40 v2 , 
Gui, Show, w138 h86, Untitled GUI
return

GuiClose:
ExitApp

Numpad1::
send, %1%
send, %2%
var = 1
return

</code></pre></div>]]></content>
			<author>
				<name><![CDATA[sharhaing]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=38774</uri>
			</author>
			<updated>2017-10-07T12:47:36Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=119879#p119879</id>
		</entry>
</feed>
