<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; AHK: Как вытащить текст из любого ToolTipa?]]></title>
	<link rel="self" href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=9182&amp;type=atom" />
	<updated>2014-06-30T05:09:45Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=9182</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Как вытащить текст из любого ToolTipa?]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=84360#p84360" />
			<content type="html"><![CDATA[<p>А не проще использовать IE, чем засорять компьютер всякими хромами?</p>]]></content>
			<author>
				<name><![CDATA[YMP]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=81</uri>
			</author>
			<updated>2014-06-30T05:09:45Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=84360#p84360</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Как вытащить текст из любого ToolTipa?]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=84358#p84358" />
			<content type="html"><![CDATA[<p>А, не легче (в хроме к примеру) нажать пр. кн. мыши, просмотр кода страницы, ctr+f, и в сплывшем поиске ввести часть текста от toltipa (потом просто скопировать весь текст). И не нужно засорять компьютер лишними программами...</p>]]></content>
			<author>
				<name><![CDATA[millenium7000]]></name>
			</author>
			<updated>2014-06-30T03:38:39Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=84358#p84358</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Как вытащить текст из любого ToolTipa?]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=79596#p79596" />
			<content type="html"><![CDATA[<p>Если в качестве параметра WinTitle указать <strong>A</strong>, команда будет работать с активным окном.</p>]]></content>
			<author>
				<name><![CDATA[ypppu]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=5974</uri>
			</author>
			<updated>2014-01-31T13:55:03Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=79596#p79596</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Как вытащить текст из любого ToolTipa?]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=79585#p79585" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>ypppu пишет:</cite><blockquote><p> и встроенные переменные.</p></blockquote></div><p>&nbsp; Какие?</p>]]></content>
			<author>
				<name><![CDATA[Foma]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=31521</uri>
			</author>
			<updated>2014-01-31T09:54:01Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=79585#p79585</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Как вытащить текст из любого ToolTipa?]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=79474#p79474" />
			<content type="html"><![CDATA[<p>Предупреждение: в Браузерах программа Копирование с ToolTip-а не работает-выдает пустой результат, но мне это и не нежно было.</p>]]></content>
			<author>
				<name><![CDATA[sh-aleksandr]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=31626</uri>
			</author>
			<updated>2014-01-26T14:13:20Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=79474#p79474</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Как вытащить текст из любого ToolTipa?]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=79472#p79472" />
			<content type="html"><![CDATA[<p>ОГРОМНОЕ Спасибо <strong>ypppu</strong> за совет с командой <em>ControlGetText</em> помогло, работает с программными ToolTip-ами, что мне и нужно))).<br />Код ToolTip для тестирования<br /></p><div class="codebox"><pre><code>
F6::
loop 1
{
tooltip, проверка ToolTipa
}
</code></pre></div><p>Код программы вытаскивания текста из ToolTip-а-всплывающих подсказок:<br /></p><div class="codebox"><pre><code>
MsgBox, Копирование с ToolTip-всплывающей подсказки. Наведите курсор мыши на объект, после появления подсказки нажмите F7
F7::
Clipboard = чисто
ControlGetText, TextToolTipa,, ahk_class tooltips_class32 ;класс ToolTip
msgbox %TextToolTipa%
Clipboard = %TextToolTipa%
MsgBox, Считанный текст занесен в Clipboard, т.е. его можно вставит в любой `n текстовый документ клавишами Ctrl+v или правой клавишей мыши -&gt; Вставить :`n%TextToolTipa%
return

;выход из программы
F10::
ExitApp

</code></pre></div>]]></content>
			<author>
				<name><![CDATA[sh-aleksandr]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=31626</uri>
			</author>
			<updated>2014-01-26T13:49:26Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=79472#p79472</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Как вытащить текст из любого ToolTipa?]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=79471#p79471" />
			<content type="html"><![CDATA[<p>Писал сам на основе примеров с Хелпа)))</p>]]></content>
			<author>
				<name><![CDATA[sh-aleksandr]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=31626</uri>
			</author>
			<updated>2014-01-26T13:19:37Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=79471#p79471</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Как вытащить текст из любого ToolTipa?]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=79470#p79470" />
			<content type="html"><![CDATA[<p>Очень полезная программа-вытаскивает с окон текст, который не копируется с окон обычным способом,<br />но не вытаскивает инфу с ToolTip.<br /></p><div class="codebox"><pre><code>
MsgBox, Выберите окно с которого хотите считать текст, нажмите F7
F7::
Clipboard = чисто
WinGetActiveTitle, name1 ;определяет имя окна
WinActivate, %name1%
WinWait, %name1%
WinGetText, text ; Будит использовано окно, найденное выше.
Clipboard = %text%
MsgBox, Считанный текст занесен в Clipboard, т.е. его можно вставит в любой `n текстовый документ клавишами Ctrl+v или правой клавишей мыши -&gt; Вставить :`n%text%


</code></pre></div>]]></content>
			<author>
				<name><![CDATA[sh-aleksandr]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=31626</uri>
			</author>
			<updated>2014-01-26T13:17:39Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=79470#p79470</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Как вытащить текст из любого ToolTipa?]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=79458#p79458" />
			<content type="html"><![CDATA[<p>Насколько мне известно, ToolTip - это окно, находящееся поверх остальных окон. Соответственно, должны работать команды <em>WinGet</em>, <em>WinGetText</em>, <em>ControlGetText</em> и встроенные переменные.</p>]]></content>
			<author>
				<name><![CDATA[ypppu]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=5974</uri>
			</author>
			<updated>2014-01-25T14:52:11Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=79458#p79458</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: Как вытащить текст из любого ToolTipa?]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=79456#p79456" />
			<content type="html"><![CDATA[<p>Добрый день Всем)</p><p>Как получить текст из ToolTipa любого окна или программы?<br />Уточняю -&gt; При наведении на объект появляется <strong>ToolTip</strong> с текстом, <strong>как этот текст вытащить</strong> например в MsgBox, %Текст из ToolTip%</p><p>Зарание спасибо.</p>]]></content>
			<author>
				<name><![CDATA[sh-aleksandr]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=31626</uri>
			</author>
			<updated>2014-01-25T13:08:48Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=79456#p79456</id>
		</entry>
</feed>
