<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; AHK: парсер фото по ссылкам из Exel]]></title>
	<link rel="self" href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=11537&amp;type=atom" />
	<updated>2016-04-27T23:54:58Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=11537</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: парсер фото по ссылкам из Exel]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=103166#p103166" />
			<content type="html"><![CDATA[<p>В настоящий момент выглядит так:<br /></p><div class="codebox"><pre><code>
f1::
File = &quot;D:\ArrayLink1.xlsx&quot;; файл
XL := ComObjCreate(&quot;Excel.Application&quot;)
XL.Workbooks.Open(&quot;D:\ArrayLink1.xlsx&quot;) 
Run % Xl.Cells(1, 1).Value ; строка, колонка. Открываем через браузер
Sleep 5000
Send ^{s} ; сохраняем изображение
Sleep 500
Send ^{enter} ; подтверждаем сохранение
Return
f2:: pause
f3:: reload
</code></pre></div><p>Вопросы:<br />- как реализовать сохранение файлов в фоновом режиме, без открытия очередной ссылки в новой вкладке браузера?<br />- задать путь сохранения. У меня по умолчанию сохраняет в Диск С-Библиотека-Документы в данный момент.</p>]]></content>
			<author>
				<name><![CDATA[Veranda]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=33724</uri>
			</author>
			<updated>2016-04-27T23:54:58Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=103166#p103166</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: парсер фото по ссылкам из Exel]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=103163#p103163" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>File = ; файл

XL := ComObjCreate(&quot;Excel.Application&quot;)
XL.Workbooks.Open(File) 

MsgBox % Xl.Cells(1, 1).Value         ; строка, колонка

XL.ActiveWorkbook.Save()
XL.Application.Quit()
ExitApp 
</code></pre></div>]]></content>
			<author>
				<name><![CDATA[serzh82saratov]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27879</uri>
			</author>
			<updated>2016-04-27T23:08:25Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=103163#p103163</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: парсер фото по ссылкам из Exel]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=103161#p103161" />
			<content type="html"><![CDATA[<p>Кода нет совсем. Не знаю как подступиться. <br />Ранее работал с AHK только с простейшими функциями.</p><p>По работе самого парсера что представляю:<br />- Получает из одного столбца построчно ссылки на изображения ( А1: A5)<br />- Переходит на сайт<br />- Сохраняет в одну папку с предопределенным именем</p>]]></content>
			<author>
				<name><![CDATA[Veranda]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=33724</uri>
			</author>
			<updated>2016-04-27T23:00:37Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=103161#p103161</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: парсер фото по ссылкам из Exel]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=103160#p103160" />
			<content type="html"><![CDATA[<p>Приведите ваш нерабочий код который есть, сам файл, и какие в нём ячейки нужны.</p>]]></content>
			<author>
				<name><![CDATA[serzh82saratov]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27879</uri>
			</author>
			<updated>2016-04-27T22:34:56Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=103160#p103160</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: парсер фото по ссылкам из Exel]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=103159#p103159" />
			<content type="html"><![CDATA[<p>Нашел, но применить не могу. <br /><a href="http://forum.script-coding.com/viewtopic.php?id=7490">О данной ветке идет речь?</a><br />Не могу связать полученные данные и парсер готовых ссылок из Exel. Не хватает знаний(</p>]]></content>
			<author>
				<name><![CDATA[Veranda]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=33724</uri>
			</author>
			<updated>2016-04-27T22:30:28Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=103159#p103159</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: парсер фото по ссылкам из Exel]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=103156#p103156" />
			<content type="html"><![CDATA[<div class="quotebox"><blockquote><p>В поиске только парсинг html</p></blockquote></div><p>Ищите:</p><div class="codebox"><pre><code>ComObjCreate(&quot;Excel.Application&quot;)</code></pre></div>]]></content>
			<author>
				<name><![CDATA[serzh82saratov]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27879</uri>
			</author>
			<updated>2016-04-27T21:14:50Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=103156#p103156</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: парсер фото по ссылкам из Exel]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=103155#p103155" />
			<content type="html"><![CDATA[<p>Доброго времени суток, форумчане!<br />Есть эксель файл со столбцом ссылок на фото. Как их можно сохранить к себе на компьютер средствами AHK? В поиске только парсинг html документов нашел - не совсем то то нужно. <img src="//forum.script-coding.com/img/smilies/hmm.png" width="15" height="15" /></p>]]></content>
			<author>
				<name><![CDATA[Veranda]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=33724</uri>
			</author>
			<updated>2016-04-27T21:09:53Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=103155#p103155</id>
		</entry>
</feed>
