<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; АХК : Возможно ли узнать, что написано в элементе Gui, Text]]></title>
	<link rel="self" href="http://forum.script-coding.com/extern.php?action=feed&amp;tid=11276&amp;type=atom" />
	<updated>2016-02-05T11:56:35Z</updated>
	<generator>PunBB</generator>
	<id>http://forum.script-coding.com/viewtopic.php?id=11276</id>
		<entry>
			<title type="html"><![CDATA[Re: АХК : Возможно ли узнать, что написано в элементе Gui, Text]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=100857#p100857" />
			<content type="html"><![CDATA[<p><span style="color: green"><strong>Godarck</strong>, приведите заголовок в порядок.</span> Что за АХК?</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2016-02-05T11:56:35Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=100857#p100857</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: АХК : Возможно ли узнать, что написано в элементе Gui, Text]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=100856#p100856" />
			<content type="html"><![CDATA[<p>Если э. у. &quot;Text&quot; принадлежит GUI самого AutoHotkey-скрипта, то извлекать ничего не нужно. Просто при создании GUI-окна для каждого из э. у. &quot;Text&quot; задайте третьим параметром имя переменной, с которой он будет проассоциирован. В справке это есть.</p>]]></content>
			<author>
				<name><![CDATA[ypppu]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=5974</uri>
			</author>
			<updated>2016-02-05T11:33:26Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=100856#p100856</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: АХК : Возможно ли узнать, что написано в элементе Gui, Text]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=100853#p100853" />
			<content type="html"><![CDATA[<p><strong>Godarck</strong><br /></p><div class="fancy_spoiler_switcher"><div class="fancy_spoiler_switcher_header"><strong>+</strong>&nbsp;Я пример дал не корректный,</div><div class="fancy_spoiler"><div class="codebox"><pre><code>loop 30
Gui, Add, Text, , Текст %A_Index%
Gui, Show

Loop 30
{
GuiControlGet, Var ,, % &quot;static&quot; A_Index
Stringhelp .= Var &quot;`n&quot;
}

MsgBox,%Stringhelp%</code></pre></div></div></div><p> но <a href="https://autohotkey.com/docs/commands/GuiControlGet.htm">GuiControlGet</a> именно это и делает.<br />Как вариант, есть еще <a href="http://www.script-coding.com/AutoHotkey/ControlGetText.html">ControlGetText</a>.<br /></p><div class="codebox"><pre><code>loop 30
Gui, Add, Text, , Текст %A_Index%
Gui, Show ,, ControlGetText

Loop 30
{
ControlGetText, Var , % &quot;static&quot; A_Index, ControlGetText
Stringhelp .= Var &quot;`n&quot;
}

MsgBox,%Stringhelp%</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Nikva]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=27416</uri>
			</author>
			<updated>2016-02-05T06:55:33Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=100853#p100853</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: АХК : Возможно ли узнать, что написано в элементе Gui, Text]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=100850#p100850" />
			<content type="html"><![CDATA[<p><strong>Nikva</strong><br />Gui ControlGet не извлекает информацию из Gui.Text <br />Решил проблему с помощью переменных</p>]]></content>
			<author>
				<name><![CDATA[Godarck]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=33594</uri>
			</author>
			<updated>2016-02-04T21:08:49Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=100850#p100850</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: АХК : Возможно ли узнать, что написано в элементе Gui, Text]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=100756#p100756" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>loop 30
Gui, Add, Text, , Текст %A_Index%

Loop 30
{
GuiControlGet, Var ,, Текст %A_Index%
Stringhelp .= Var &quot;`n&quot;
}

MsgBox,%Stringhelp%</code></pre></div><p><a href="https://autohotkey.com/docs/commands/GuiControlGet.htm">GuiControlGet, справка на английском.</a></p>]]></content>
			<author>
				<name><![CDATA[Nikva]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=27416</uri>
			</author>
			<updated>2016-02-01T13:17:27Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=100756#p100756</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[АХК : Возможно ли узнать, что написано в элементе Gui, Text]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=100755#p100755" />
			<content type="html"><![CDATA[<p>Например, имеется много элементов &quot;Gui Text&quot;.<br />В итоге нужно собрать в одну переменную, то что было написано в &quot;Gui text&quot;.<br />Такое возможно?</p><div class="codebox"><pre><code>
 	Gui, Add, Text, , Текст 1
	Gui, Add, Text, , Текст 2
	Gui, Add, Text, , Текст 3
		...
	Gui, Add, Text, , Текст 30

Loop 30
{
Stringhelp := % Stringhelp Var%A_Index% &quot;`n&quot; 
; в переменной &quot;var1&quot; например будет &quot;Текст 1&quot; и т.д.
}

MsgBox,%Stringhelp%

</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Godarck]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=33594</uri>
			</author>
			<updated>2016-02-01T12:50:52Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=100755#p100755</id>
		</entry>
</feed>
