<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; AHK: Скрипт выбор фотографий.]]></title>
	<link rel="self" href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=11586&amp;type=atom" />
	<updated>2016-05-13T15:44:33Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=11586</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Скрипт выбор фотографий.]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=103749#p103749" />
			<content type="html"><![CDATA[<p>becauseim, я думаю это вы уже сами можете сделать с помощью Loop Files &amp; Folders.</p>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2016-05-13T15:44:33Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=103749#p103749</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Скрипт выбор фотографий.]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=103745#p103745" />
			<content type="html"><![CDATA[<p><strong>yalanne</strong>, так уже пробовал.</p>]]></content>
			<author>
				<name><![CDATA[becauseim]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=33149</uri>
			</author>
			<updated>2016-05-13T14:41:01Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=103745#p103745</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Скрипт выбор фотографий.]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=103744#p103744" />
			<content type="html"><![CDATA[<p>Сейчас нет возможности проверить но вроде если указать *.PNG то должно все PNG добавить.</p>]]></content>
			<author>
				<name><![CDATA[yalanne]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=32850</uri>
			</author>
			<updated>2016-05-13T14:40:04Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=103744#p103744</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Скрипт выбор фотографий.]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=103743#p103743" />
			<content type="html"><![CDATA[<p><strong>yalanne</strong>, кстати, а можно ли открыть подобным образом все файлы из заданной директории?</p>]]></content>
			<author>
				<name><![CDATA[becauseim]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=33149</uri>
			</author>
			<updated>2016-05-13T14:13:29Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=103743#p103743</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Скрипт выбор фотографий.]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=103741#p103741" />
			<content type="html"><![CDATA[<p><strong>yalanne</strong>, импортирует первое изображение из списка, после чего скрипт закрывается. В чем ошибка?<br /></p><div class="codebox"><pre><code>#SingleInstance Force
SetTitleMatchMode 2

pathImages = D:\Pictures\wall\
fileListImages = 
(
1.jpg
2.jpg
)

allListI := &quot;&quot;
loop,parse,fileListImages,`n
  allListI  .= &quot;&quot;&quot;&quot; pathImages A_LoopField &quot;&quot;&quot;&quot; . &quot; &quot;


WinWait, Import ahk_class #32770
WinExist(&quot;Import ahk_class #32770&quot;)
ControlSetText,Edit1,% allListI
sleep 100
ControlSend,edit1, {Enter}
return</code></pre></div><p>upd.: Извиняюсь, все работает.</p>]]></content>
			<author>
				<name><![CDATA[becauseim]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=33149</uri>
			</author>
			<updated>2016-05-13T13:40:20Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=103741#p103741</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Скрипт выбор фотографий.]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=103734#p103734" />
			<content type="html"><![CDATA[<p>Самое простое это вот так<br /></p><div class="codebox"><pre><code>pathImages = C:\Новая папка\
fileListImages = 
(
yunga.png
image.png
)

allListI := &quot;&quot;
loop,parse,fileListImages,`n
  allListI  .= &quot;&quot;&quot;&quot; pathImages A_LoopField &quot;&quot;&quot;&quot; . &quot; &quot;


WinWait, Открытие ahk_class #32770
WinExist(&quot;Открытие ahk_class #32770&quot;)
ControlSetText,Edit1,% allListI
sleep 100
ControlSend,edit1, {Enter}
return</code></pre></div>]]></content>
			<author>
				<name><![CDATA[yalanne]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=32850</uri>
			</author>
			<updated>2016-05-13T11:27:32Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=103734#p103734</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: Скрипт выбор фотографий.]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=103732#p103732" />
			<content type="html"><![CDATA[<p>Каким скриптом вставить фотографии после нажатии кнопки Выбрать фотографию?<br />Суть скрипта автозаполнение нового объявления, и нужно чтобы с указанного пути вставлялись 3 фотографии.</p>]]></content>
			<author>
				<name><![CDATA[Capone]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=31022</uri>
			</author>
			<updated>2016-05-13T10:15:18Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=103732#p103732</id>
		</entry>
</feed>
