<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; AHK: Отображение вводимых символов через Input]]></title>
	<link rel="self" href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=15029&amp;type=atom" />
	<updated>2019-10-20T22:38:26Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=15029</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Отображение вводимых символов через Input]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=136427#p136427" />
			<content type="html"><![CDATA[<p>Например, так можно:<br /></p><div class="codebox"><pre><code>$F10::
   InputHook := InputHook(&quot;C&quot;, &quot;{Enter}&quot;)
   InputHook.OnChar := Func(&quot;ShowInput&quot;).Bind([])
   InputHook.Start()
   InputHook.Wait()
   ToolTip
   MsgBox, % InputHook.Input
   Return

ShowInput(arr, hook, char) {
   ToolTip % &quot;Name: &quot; . arr[1] .= char
}</code></pre></div>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2019-10-20T22:38:26Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=136427#p136427</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Отображение вводимых символов через Input]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=136426#p136426" />
			<content type="html"><![CDATA[<p><strong>teadrinker</strong>, показывается по 1 символу в tooltip, а нужно что-бы все показывались. (Например: N Na Nam Name)<br />Я пытался сам это сделать, но поскольку я чайник, ничего не вышло. До последнего не хотел просить<br />доделывать это, но видимо придётся.<br />Заранее спасибо.</p>]]></content>
			<author>
				<name><![CDATA[darknessadvances]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=40449</uri>
			</author>
			<updated>2019-10-20T21:55:31Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=136426#p136426</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Отображение вводимых символов через Input]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=136425#p136425" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>F10::
   InputHook := InputHook(&quot;C&quot;, &quot;{Enter}&quot;)
   InputHook.OnChar := Func(&quot;ShowInput&quot;)
   InputHook.Start()
   InputHook.Wait()
   ToolTip
   MsgBox, % InputHook.Input
   Return

ShowInput(hook, char) {
   ToolTip % &quot;Name: &quot; . char
}</code></pre></div>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2019-10-20T19:53:54Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=136425#p136425</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Отображение вводимых символов через Input]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=136422#p136422" />
			<content type="html"><![CDATA[<p><strong>ypppu</strong>, да? печально...</p>]]></content>
			<author>
				<name><![CDATA[darknessadvances]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=40449</uri>
			</author>
			<updated>2019-10-20T19:20:26Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=136422#p136422</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Отображение вводимых символов через Input]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=136421#p136421" />
			<content type="html"><![CDATA[<p>Наверное простого способа нет. Дело пахнет хуком.</p>]]></content>
			<author>
				<name><![CDATA[ypppu]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=5974</uri>
			</author>
			<updated>2019-10-20T19:06:12Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=136421#p136421</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: Отображение вводимых символов через Input]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=136416#p136416" />
			<content type="html"><![CDATA[<p>У меня есть переменная name1, она отображается через tooltip.<br /></p><div class="codebox"><pre><code>tooltip, Name: %name%,,,1</code></pre></div><p>При нажатии на F10 срабатывает Input.<br /></p><div class="codebox"><pre><code>F10::
Input, name1, C, enter,
Return</code></pre></div><p>Итак, мне нужно что-бы во время ввода через Input, в ToolTip отображалось, что вводится в данный момент,<br />каждый символ. Если такое вообще возможно.</p><p>P.S: Мне нужно именно таким способом, InputBox и т.д не подходят.<br />Заранее спасибо!</p>]]></content>
			<author>
				<name><![CDATA[darknessadvances]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=40449</uri>
			</author>
			<updated>2019-10-20T09:58:12Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=136416#p136416</id>
		</entry>
</feed>
