<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Серый форум &mdash; AHK: встроенный браузер]]></title>
		<link>https://forum.script-coding.com/viewtopic.php?id=16462</link>
		<atom:link href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=16462&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[Недавние сообщения в теме «AHK: встроенный браузер».]]></description>
		<lastBuildDate>Thu, 08 Jul 2021 21:22:14 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: AHK: встроенный браузер]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=148911#p148911</link>
			<description><![CDATA[<div class="quotebox"><cite>teadrinker пишет:</cite><blockquote><p>Попробуйте <em>Gui, +AboveGame</em></p></blockquote></div><p>Invalid Option.</p><div class="quotebox"><cite>teadrinker пишет:</cite><blockquote><p>Старайтесь руководствоваться правилом &quot;одна тема — один вопрос&quot;. Для вопросов, связанных с играми, у нас есть отдельная ветка.</p></blockquote></div><p>Понял. Просто думал чтобы не засирать форум и не создавать темы для банальных вопросов напишу здесь.</p>]]></description>
			<author><![CDATA[null@example.com (Morux2112)]]></author>
			<pubDate>Thu, 08 Jul 2021 21:22:14 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=148911#p148911</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: встроенный браузер]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=148902#p148902</link>
			<description><![CDATA[<p>Попробуйте <em>Gui, +AboveGame</em>.<br />Старайтесь руководствоваться правилом &quot;одна тема — один вопрос&quot;. Для вопросов, связанных с играми, у нас есть отдельная ветка.</p>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Wed, 07 Jul 2021 18:07:56 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=148902#p148902</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: встроенный браузер]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=148901#p148901</link>
			<description><![CDATA[<p>Можно ли как-то вывести это окно поверх игры?<br />Попробовал &quot;Gui, +LastFound +AlwaysOnTop -Caption +ToolWindow +E0x20&quot;, не помогло.</p>]]></description>
			<author><![CDATA[null@example.com (Morux2112)]]></author>
			<pubDate>Wed, 07 Jul 2021 17:35:52 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=148901#p148901</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: встроенный браузер]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=148891#p148891</link>
			<description><![CDATA[<p><strong>teadrinker</strong>, спасибо</p>]]></description>
			<author><![CDATA[null@example.com (Morux2112)]]></author>
			<pubDate>Wed, 07 Jul 2021 13:36:46 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=148891#p148891</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: встроенный браузер]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=148890#p148890</link>
			<description><![CDATA[<p>А какой именно пример? Возврат на предыдущую страницу GoBack.</p>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Wed, 07 Jul 2021 12:49:45 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=148890#p148890</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: встроенный браузер]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=148889#p148889</link>
			<description><![CDATA[<p><strong>teadrinker</strong>, спасибо. На счет Explorera, не могли бы Вы привести пример, а то ничего не понятно?)</p>]]></description>
			<author><![CDATA[null@example.com (Morux2112)]]></author>
			<pubDate>Wed, 07 Jul 2021 12:19:24 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=148889#p148889</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: встроенный браузер]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=148882#p148882</link>
			<description><![CDATA[<p>Символы в адресе, код которых выходит за пределы 1 — 127, должны быть закодированы. В Javascript для этого есть функции <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURI">encodeURI()</a> и <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent">encodeURIComponent()</a> (читайте о разнице между ними по ссылкам). На AHK можно их использовать так:<br /></p><div class="codebox"><pre><code>MsgBox, % EncodeDecodeURI(&quot;&amp;привет&quot;)

EncodeDecodeURI(str, encode := true, component := true) {
   static Doc, JS
   if !Doc {
      Doc := ComObjCreate(&quot;htmlfile&quot;)
      Doc.write(&quot;&lt;meta http-equiv=&quot;&quot;X-UA-Compatible&quot;&quot; content=&quot;&quot;IE=9&quot;&quot;&gt;&quot;)
      JS := Doc.parentWindow
      ( Doc.documentMode &lt; 9 &amp;&amp; JS.execScript() )
   }
   Return JS[ (encode ? &quot;en&quot; : &quot;de&quot;) . &quot;codeURI&quot; . (component ? &quot;Component&quot; : &quot;&quot;) ](str)
}</code></pre></div><p>Если передать параметр component false, будет вызвана encodeURI():<br /></p><div class="codebox"><pre><code>MsgBox, % EncodeDecodeURI(&quot;&amp;привет&quot;,, false)

EncodeDecodeURI(str, encode := true, component := true) {
   static Doc, JS
   if !Doc {
      Doc := ComObjCreate(&quot;htmlfile&quot;)
      Doc.write(&quot;&lt;meta http-equiv=&quot;&quot;X-UA-Compatible&quot;&quot; content=&quot;&quot;IE=9&quot;&quot;&gt;&quot;)
      JS := Doc.parentWindow
      ( Doc.documentMode &lt; 9 &amp;&amp; JS.execScript() )
   }
   Return JS[ (encode ? &quot;en&quot; : &quot;de&quot;) . &quot;codeURI&quot; . (component ? &quot;Component&quot; : &quot;&quot;) ](str)
}</code></pre></div><div class="quotebox"><cite>Morux2112 пишет:</cite><blockquote><p>И как можно вернуться на предыдущую страницу?</p></blockquote></div><p>О методах и свойствах объекта WebBrowser читайте <a href="https://docs.microsoft.com/en-us/previous-versions/windows/internet-explorer/ie-developer/platform-apis/aa752084(v=vs.85)">здесь</a> (они совпадают с методами и свойствами InternetExplorer объекта).</p>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Wed, 07 Jul 2021 11:00:34 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=148882#p148882</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: встроенный браузер]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=148878#p148878</link>
			<description><![CDATA[<p><strong>teadrinker</strong>, спасибо. Проверил, работает. Но, в ссылке нельзя указывать русские символы, мне они нужны для ввода переменной. Можно ли как-то это исправить? И как можно вернуться на предыдущую страницу?</p>]]></description>
			<author><![CDATA[null@example.com (Morux2112)]]></author>
			<pubDate>Tue, 06 Jul 2021 23:38:48 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=148878#p148878</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: встроенный браузер]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=148707#p148707</link>
			<description><![CDATA[<p>Смотрите <a href="https://www.autohotkey.com/docs/commands/GuiControls.htm#ActiveX">ActiveX</a> контрол.</p>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Wed, 30 Jun 2021 11:32:55 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=148707#p148707</guid>
		</item>
		<item>
			<title><![CDATA[AHK: встроенный браузер]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=148704#p148704</link>
			<description><![CDATA[<p>Добрый ночи. Есть ли возможность как-то выводить определенную страницу и взаимодействовать с ней? Типо как встроенный браузер. Есть есть, то как?</p>]]></description>
			<author><![CDATA[null@example.com (Morux2112)]]></author>
			<pubDate>Tue, 29 Jun 2021 23:48:24 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=148704#p148704</guid>
		</item>
	</channel>
</rss>
