<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; AHK: SelectFile в Internet Explorer]]></title>
	<link rel="self" href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=10482&amp;type=atom" />
	<updated>2015-03-08T18:18:32Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=10482</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: SelectFile в Internet Explorer]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=92402#p92402" />
			<content type="html"><![CDATA[<p>Вряд ли.</p>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2015-03-08T18:18:32Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=92402#p92402</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: SelectFile в Internet Explorer]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=92401#p92401" />
			<content type="html"><![CDATA[<p>Возник новый вопрос, может как-то можно не открывая окно установить путь?</p>]]></content>
			<author>
				<name><![CDATA[tuma4ok]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=32022</uri>
			</author>
			<updated>2015-03-08T17:58:10Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=92401#p92401</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: SelectFile в Internet Explorer]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=92380#p92380" />
			<content type="html"><![CDATA[<p>Я только через костыль нашел способ:<br /></p><div class="codebox"><pre><code>DetectHiddenWindows, On
SetTitleMatchMode, 2
link := &quot;http://m.vk.com/......profile&quot;
ComObjError(false)
oIE := ComObjCreate(&quot;InternetExplorer.Application&quot;)
oIE.visible := True, oIEHWND := oIE.HWND
WinMaximize ahk_id %oIEHWND%
oIE.navigate(link)
While oIE.readyState != 4 || oIE.document.readyState != &quot;complete&quot; || oIE.busy
   Sleep, 10
FileDelete, WinWait.ahk
FileAppend, 
(
#NoTrayIcon
WinWait, Choose File to Upload
ControlSetText, Edit1, &quot;1.jpg&quot;, Choose File to Upload
ControlClick, Button1, Choose File to Upload,,,, NA
WinWaitClose, Choose File to Upload
ExitApp
), WinWait.ahk
Run, WinWait.ahk
WinWait, WinWait.ahk
oIE.document.querySelector(&quot;INPUT[Name=&quot;&quot;file1&quot;&quot;]&quot;).click()
WinWaitClose, WinWait.ahk
FileDelete, WinWait.ahk
msgbox</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2015-03-07T20:43:40Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=92380#p92380</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: SelectFile в Internet Explorer]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=92379#p92379" />
			<content type="html"><![CDATA[<p>Хорошо, буду с IE присылать.<br />Возник ещё вопрос. Когда форма открыта, для выбора файла, то скрипт замирает, действия дальше не идут, как это исправить?</p>]]></content>
			<author>
				<name><![CDATA[tuma4ok]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=32022</uri>
			</author>
			<updated>2015-03-07T20:19:54Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=92379#p92379</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: SelectFile в Internet Explorer]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=92378#p92378" />
			<content type="html"><![CDATA[<p>Вот полный&nbsp; код - работает без задержек:<br /></p><div class="codebox"><pre><code>link := &quot;http://m.vk.com/.........=profile&quot;
oIE := ComObjCreate(&quot;InternetExplorer.Application&quot;)
oIE.visible := True, oIEHWND := oIE.HWND
WinMaximize ahk_id %oIEHWND%
oIE.navigate(link)
While oIE.readyState != 4 || oIE.document.readyState != &quot;complete&quot; || oIE.busy
   Sleep, 10
oIE.document.querySelector(&quot;INPUT[Name=&quot;&quot;file1&quot;&quot;]&quot;).click()
msgbox, done</code></pre></div><p>ЗЫ Если вопросы по IE, то и фотки нужно присылать с IE, а не с Хрома.</p>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2015-03-07T20:05:59Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=92378#p92378</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: SelectFile в Internet Explorer]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=92377#p92377" />
			<content type="html"><![CDATA[<p>Хм.. Открыло, но пришлось поставить задержку после загрузки страницы, странно. Вопрос закрыт, спасибо.</p>]]></content>
			<author>
				<name><![CDATA[tuma4ok]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=32022</uri>
			</author>
			<updated>2015-03-07T20:03:38Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=92377#p92377</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: SelectFile в Internet Explorer]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=92376#p92376" />
			<content type="html"><![CDATA[<p>Cтранно, у меня так не получается почему-то. Может есть какие нибудь другие способы?</p>]]></content>
			<author>
				<name><![CDATA[tuma4ok]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=32022</uri>
			</author>
			<updated>2015-03-07T20:00:58Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=92376#p92376</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: SelectFile в Internet Explorer]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=92375#p92375" />
			<content type="html"><![CDATA[<p>У меня так загружает:<br /></p><div class="codebox"><pre><code>oIE.document.querySelector(&quot;INPUT[Name=&quot;&quot;file1&quot;&quot;]&quot;).click()</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2015-03-07T19:57:01Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=92375#p92375</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: SelectFile в Internet Explorer]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=92374#p92374" />
			<content type="html"><![CDATA[<p>У вас нет таких полей?<br /><span class="postimg"><img src="http://i.imgur.com/o8ANOZm.png" alt="http://i.imgur.com/o8ANOZm.png" /></span><br />Я может не верно написал. В общем, мне надо как-то загрузить фотографию через IE именно через мобильную версию.</p>]]></content>
			<author>
				<name><![CDATA[tuma4ok]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=32022</uri>
			</author>
			<updated>2015-03-07T19:27:00Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=92374#p92374</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: SelectFile в Internet Explorer]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=92373#p92373" />
			<content type="html"><![CDATA[<p>После нажатия на скрепку появляется сверху 3 поля для загрузки фотографий.<br />Но нигде нету кнопки с первого поста.</p>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2015-03-07T19:24:30Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=92373#p92373</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: SelectFile в Internet Explorer]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=92372#p92372" />
			<content type="html"><![CDATA[<p><span class="postimg"><img src="http://i.imgur.com/29oWrgX.png" alt="http://i.imgur.com/29oWrgX.png" /></span></p>]]></content>
			<author>
				<name><![CDATA[tuma4ok]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=32022</uri>
			</author>
			<updated>2015-03-07T19:17:24Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=92372#p92372</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: SelectFile в Internet Explorer]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=92371#p92371" />
			<content type="html"><![CDATA[<p>Скину скриншоты в течении 5 минут. Может у вас есть скайп? Скажите свой логин.</p>]]></content>
			<author>
				<name><![CDATA[tuma4ok]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=32022</uri>
			</author>
			<updated>2015-03-07T19:15:25Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=92371#p92371</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: SelectFile в Internet Explorer]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=92370#p92370" />
			<content type="html"><![CDATA[<p>У меня такой кнопки, как на картинке нет. Есть только кнопка - &quot;загрузить фотографии&quot;.</p>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2015-03-07T19:10:45Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=92370#p92370</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: SelectFile в Internet Explorer]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=92369#p92369" />
			<content type="html"><![CDATA[<p>С мобильной версии зайдите в группу и нажмите прикрепить файл(скрепка).<br />Там сверху будет 3 поля для загрузки фотографий.<br />Создайте на время группу.</p>]]></content>
			<author>
				<name><![CDATA[tuma4ok]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=32022</uri>
			</author>
			<updated>2015-03-07T19:03:08Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=92369#p92369</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: SelectFile в Internet Explorer]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=92368#p92368" />
			<content type="html"><![CDATA[<p>Это ни о чем не говорит.<br />Нужна ссылка на ту страницу, где эта кнопка есть.</p>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2015-03-07T18:54:46Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=92368#p92368</id>
		</entry>
</feed>
