<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; AHK: Свои горячие клавиши в illustrator cc]]></title>
	<link rel="self" href="http://forum.script-coding.com/extern.php?action=feed&amp;tid=12767&amp;type=atom" />
	<updated>2017-07-18T10:36:14Z</updated>
	<generator>PunBB</generator>
	<id>http://forum.script-coding.com/viewtopic.php?id=12767</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Свои горячие клавиши в illustrator cc]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=117348#p117348" />
			<content type="html"><![CDATA[<p>Пишу с телефона, но вроде так:<br />msgbox % format(&quot;{:d}&quot;, &quot;0x&quot; 8100)<br />В справке также есть пример dec2hex.</p>]]></content>
			<author>
				<name><![CDATA[stealzy]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=31937</uri>
			</author>
			<updated>2017-07-18T10:36:14Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=117348#p117348</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Свои горячие клавиши в illustrator cc]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=117347#p117347" />
			<content type="html"><![CDATA[<p><strong>stealzy</strong> а можно пример с SetFormat?</p>]]></content>
			<author>
				<name><![CDATA[ser3ga]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=38587</uri>
			</author>
			<updated>2017-07-18T09:33:19Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=117347#p117347</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Свои горячие клавиши в illustrator cc]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=116931#p116931" />
			<content type="html"><![CDATA[<p>Думается, этот вопрос решен, хотя это не мой вопрос был. Просто у меня был похожий вопрос, на который я более-менее нашел ответ.</p>]]></content>
			<author>
				<name><![CDATA[svoboden]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=34280</uri>
			</author>
			<updated>2017-06-30T16:31:15Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=116931#p116931</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Свои горячие клавиши в illustrator cc]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=116918#p116918" />
			<content type="html"><![CDATA[<p>А можно проще - не переводить из hex в dec, а просто указать, что данные в хексе.<br />И правильней, наверное, передавать, как SendMessage, так как Spy++ передает с буквой S.<br /></p><div class="codebox"><pre><code>f1::
SendMessage, 0x111, 0x8100 &lt;&lt; 16 | 625,,,A</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2017-06-30T13:41:09Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=116918#p116918</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Свои горячие клавиши в illustrator cc]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=116913#p116913" />
			<content type="html"><![CDATA[<p>А так?<br /></p><div class="codebox"><pre><code>f1::
PostMessage, 0x111, hexToDecimal(8100) &lt;&lt; 16 | 625,,,A

hexToDecimal(str){
    static _0:=0,_1:=1,_2:=2,_3:=3,_4:=4,_5:=5,_6:=6,_7:=7,_8:=8,_9:=9,_a:=10,_b:=11,_c:=12,_d:=13,_e:=14,_f:=15
    str:=ltrim(str,&quot;0x `t`n`r&quot;),   len := StrLen(str),  ret:=0
    Loop,Parse,str
      ret += _%A_LoopField%*(16**(len-A_Index))
    return ret
}</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2017-06-29T21:29:51Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=116913#p116913</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Свои горячие клавиши в illustrator cc]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=116911#p116911" />
			<content type="html"><![CDATA[<p>В принципе, такой метод работает, но, допустим, нужно открыть меню &quot;Сведения о файле&quot;, где имеется два параметра &quot;WM_COMMAND WNotifyCode:8100wID:625&quot;, тут уже данный метод не срабатывает.</p>]]></content>
			<author>
				<name><![CDATA[svoboden]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=34280</uri>
			</author>
			<updated>2017-06-29T20:07:52Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=116911#p116911</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Свои горячие клавиши в illustrator cc]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=116909#p116909" />
			<content type="html"><![CDATA[<p>Так посмотрите, что отправляется в вашей версии.<br />Вот туториал:<br /><a href="https://autohotkey.com/docs/misc/SendMessage.htm">https://autohotkey.com/docs/misc/SendMessage.htm</a><br />Тут скачиваете spy++:<br /><a href="http://mdb-blog.blogspot.com/2010/11/microsoft-spy-or-spyxx-for-download.html">http://mdb-blog.blogspot.com/2010/11/mi … nload.html</a><br />Для 32-битных программ смотрите через spyxx.exe.<br />Для 64-битных программ смотрите через spyxx_amd64.exe.</p>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2017-06-29T10:36:20Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=116909#p116909</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Свои горячие клавиши в illustrator cc]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=116908#p116908" />
			<content type="html"><![CDATA[<p><strong>Malcev</strong> 17.0.0 не работает, может быть есть ещё варианты? В 16.0.2 тоже не работает.</p>]]></content>
			<author>
				<name><![CDATA[ser3ga]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=38587</uri>
			</author>
			<updated>2017-06-29T10:27:26Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=116908#p116908</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Свои горячие клавиши в illustrator cc]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=116907#p116907" />
			<content type="html"><![CDATA[<p>У меня работает на 2015.3.0.</p>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2017-06-29T10:24:22Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=116907#p116907</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Свои горячие клавиши в illustrator cc]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=116906#p116906" />
			<content type="html"><![CDATA[<p><strong>Malcev</strong> не работает почему то.</p>]]></content>
			<author>
				<name><![CDATA[ser3ga]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=38587</uri>
			</author>
			<updated>2017-06-29T10:17:43Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=116906#p116906</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Свои горячие клавиши в illustrator cc]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=116904#p116904" />
			<content type="html"><![CDATA[<p>А что именно непонятно?<br />Вот так открывает file-&gt;export-export as:<br /></p><div class="codebox"><pre><code>f1::
PostMessage, 0x111, 355,,,A</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2017-06-29T09:05:08Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=116904#p116904</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Свои горячие клавиши в illustrator cc]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=116901#p116901" />
			<content type="html"><![CDATA[<p>Там непонятно с этими сообщениями. Такие программы нужно через com автоматизировать.</p>]]></content>
			<author>
				<name><![CDATA[svoboden]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=34280</uri>
			</author>
			<updated>2017-06-29T02:01:50Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=116901#p116901</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Свои горячие клавиши в illustrator cc]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=116879#p116879" />
			<content type="html"><![CDATA[<p><strong>svoboden</strong>, а можно какой нибудь пример с &quot;PostMessage, 0x111&quot; чего-то у меня не получается с этой функцией.</p>]]></content>
			<author>
				<name><![CDATA[ser3ga]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=38587</uri>
			</author>
			<updated>2017-06-28T07:19:14Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=116879#p116879</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Свои горячие клавиши в illustrator cc]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=116870#p116870" />
			<content type="html"><![CDATA[<p>Сам интересуюсь нечто подобным. Вызвать меню можно с помощью сообщений &quot;PostMessage, 0x111&quot;. Насчет скрытых настроек, нашел только, что у них тоже есть свои сообщения, но заслать их в окно настроек не получается. Пришел к тому, что окно настроек надо запускать в любом случае и там пытаться что-то изменить.</p>]]></content>
			<author>
				<name><![CDATA[svoboden]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=34280</uri>
			</author>
			<updated>2017-06-26T13:59:03Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=116870#p116870</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Свои горячие клавиши в illustrator cc]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=116869#p116869" />
			<content type="html"><![CDATA[<p>Иллюстратором можно через com управлять:<br /></p><div class="codebox"><pre><code>ComObjCreate(&quot;Illustrator.Application&quot;)</code></pre></div><p><a href="http://wwwimages.adobe.com/content/dam/Adobe/en/devnet/illustrator/sdk/CC2015_3/Illustrator%20VBScript%20Reference.pdf">http://wwwimages.adobe.com/content/dam/ … erence.pdf</a></p>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2017-06-26T13:19:21Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=116869#p116869</id>
		</entry>
</feed>
