<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Серый форум &mdash; AHK: Com объект IE. живой поиск в google.]]></title>
		<link>https://forum.script-coding.com/viewtopic.php?id=11094</link>
		<atom:link href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=11094&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[Недавние сообщения в теме «AHK: Com объект IE. живой поиск в google.».]]></description>
		<lastBuildDate>Sat, 21 Nov 2015 14:38:29 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: AHK: Com объект IE. живой поиск в google.]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=99213#p99213</link>
			<description><![CDATA[<p>Или так:<br /></p><div class="codebox"><pre><code>ie := ComObjCreate(&quot;InternetExplorer.Application&quot;)
ie.Visible := 1
ie.Navigate(&quot;https://www.google.ru/&quot;)
while ie.readystate &lt;&gt; 4 
   sleep 10

elem := ie.document.getElementById(&quot;lst-ib&quot;)

sleep 500
elem.focus()
ControlSend, Internet Explorer_Server1, тест1, % &quot;ahk_id&quot; ie.hwnd
sleep 1000
elem.value := &quot;&quot;
elem.focus()
ControlSend, Internet Explorer_Server1, тест2, % &quot;ahk_id&quot; ie.hwnd
sleep 1000
elem.value := &quot;&quot;
elem.focus()
ControlSend, Internet Explorer_Server1, тест3, % &quot;ahk_id&quot; ie.hwnd</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Sat, 21 Nov 2015 14:38:29 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=99213#p99213</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Com объект IE. живой поиск в google.]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=99212#p99212</link>
			<description><![CDATA[<p>Как-нибудь так:<br /></p><div class="codebox"><pre><code>ie := ComObjCreate(&quot;InternetExplorer.Application&quot;)
ie.Visible := 1
ie.Navigate(&quot;https://www.google.ru&quot;)
while ie.readystate &lt;&gt; 4 
   sleep 10
sleep 500
SendInput, тест1
sleep 1000
ie.document.getElementById(&quot;lst-ib&quot;).value := &quot;&quot;
SendInput, тест2
sleep 1000
ie.document.getElementById(&quot;lst-ib&quot;).value := &quot;&quot;
SendInput, тест3</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Sat, 21 Nov 2015 14:16:43 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=99212#p99212</guid>
		</item>
		<item>
			<title><![CDATA[AHK: Com объект IE. живой поиск в google.]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=99198#p99198</link>
			<description><![CDATA[<p>Как можно реализовать что бы при изменении строки ввода поиска скриптом, так же предлагались варианты ответа и был живой поиск?</p><div class="codebox"><pre><code>ie := ComObjCreate(&quot;InternetExplorer.Application&quot;)
ie.Visible := 1
ie.Navigate(&quot;https://www.google.ru&quot;)
while ie.readystate &lt;&gt; 4 
	sleep 10
sleep 500
ie.document.getElementsByClassName(&quot;gsfi&quot;)[0].value := &quot;тест1&quot;
sleep 1000
ie.document.getElementsByClassName(&quot;gsfi&quot;)[0].value := &quot;тест2&quot;
sleep 1000
ie.document.getElementsByClassName(&quot;gsfi&quot;)[0].value := &quot;тест3&quot;</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (yalanne)]]></author>
			<pubDate>Fri, 20 Nov 2015 17:30:02 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=99198#p99198</guid>
		</item>
	</channel>
</rss>
