<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Серый форум &mdash; AHK: Свои горячие клавиши в illustrator cc]]></title>
		<link>http://forum.script-coding.com/viewtopic.php?id=12767</link>
		<atom:link href="http://forum.script-coding.com/extern.php?action=feed&amp;tid=12767&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[Недавние сообщения в теме «AHK: Свои горячие клавиши в illustrator cc».]]></description>
		<lastBuildDate>Tue, 18 Jul 2017 10:36:14 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: AHK: Свои горячие клавиши в illustrator cc]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=117348#p117348</link>
			<description><![CDATA[<p>Пишу с телефона, но вроде так:<br />msgbox % format(&quot;{:d}&quot;, &quot;0x&quot; 8100)<br />В справке также есть пример dec2hex.</p>]]></description>
			<author><![CDATA[null@example.com (stealzy)]]></author>
			<pubDate>Tue, 18 Jul 2017 10:36:14 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=117348#p117348</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Свои горячие клавиши в illustrator cc]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=117347#p117347</link>
			<description><![CDATA[<p><strong>stealzy</strong> а можно пример с SetFormat?</p>]]></description>
			<author><![CDATA[null@example.com (ser3ga)]]></author>
			<pubDate>Tue, 18 Jul 2017 09:33:19 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=117347#p117347</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Свои горячие клавиши в illustrator cc]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=116931#p116931</link>
			<description><![CDATA[<p>Думается, этот вопрос решен, хотя это не мой вопрос был. Просто у меня был похожий вопрос, на который я более-менее нашел ответ.</p>]]></description>
			<author><![CDATA[null@example.com (svoboden)]]></author>
			<pubDate>Fri, 30 Jun 2017 16:31:15 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=116931#p116931</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Свои горячие клавиши в illustrator cc]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=116918#p116918</link>
			<description><![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>]]></description>
			<author><![CDATA[null@example.com (Malcev)]]></author>
			<pubDate>Fri, 30 Jun 2017 13:41:09 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=116918#p116918</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Свои горячие клавиши в illustrator cc]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=116913#p116913</link>
			<description><![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>]]></description>
			<author><![CDATA[null@example.com (Malcev)]]></author>
			<pubDate>Thu, 29 Jun 2017 21:29:51 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=116913#p116913</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Свои горячие клавиши в illustrator cc]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=116911#p116911</link>
			<description><![CDATA[<p>В принципе, такой метод работает, но, допустим, нужно открыть меню &quot;Сведения о файле&quot;, где имеется два параметра &quot;WM_COMMAND WNotifyCode:8100wID:625&quot;, тут уже данный метод не срабатывает.</p>]]></description>
			<author><![CDATA[null@example.com (svoboden)]]></author>
			<pubDate>Thu, 29 Jun 2017 20:07:52 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=116911#p116911</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Свои горячие клавиши в illustrator cc]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=116909#p116909</link>
			<description><![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>]]></description>
			<author><![CDATA[null@example.com (Malcev)]]></author>
			<pubDate>Thu, 29 Jun 2017 10:36:20 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=116909#p116909</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Свои горячие клавиши в illustrator cc]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=116908#p116908</link>
			<description><![CDATA[<p><strong>Malcev</strong> 17.0.0 не работает, может быть есть ещё варианты? В 16.0.2 тоже не работает.</p>]]></description>
			<author><![CDATA[null@example.com (ser3ga)]]></author>
			<pubDate>Thu, 29 Jun 2017 10:27:26 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=116908#p116908</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Свои горячие клавиши в illustrator cc]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=116907#p116907</link>
			<description><![CDATA[<p>У меня работает на 2015.3.0.</p>]]></description>
			<author><![CDATA[null@example.com (Malcev)]]></author>
			<pubDate>Thu, 29 Jun 2017 10:24:22 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=116907#p116907</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Свои горячие клавиши в illustrator cc]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=116906#p116906</link>
			<description><![CDATA[<p><strong>Malcev</strong> не работает почему то.</p>]]></description>
			<author><![CDATA[null@example.com (ser3ga)]]></author>
			<pubDate>Thu, 29 Jun 2017 10:17:43 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=116906#p116906</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Свои горячие клавиши в illustrator cc]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=116904#p116904</link>
			<description><![CDATA[<p>А что именно непонятно?<br />Вот так открывает file-&gt;export-export as:<br /></p><div class="codebox"><pre><code>f1::
PostMessage, 0x111, 355,,,A</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Malcev)]]></author>
			<pubDate>Thu, 29 Jun 2017 09:05:08 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=116904#p116904</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Свои горячие клавиши в illustrator cc]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=116901#p116901</link>
			<description><![CDATA[<p>Там непонятно с этими сообщениями. Такие программы нужно через com автоматизировать.</p>]]></description>
			<author><![CDATA[null@example.com (svoboden)]]></author>
			<pubDate>Thu, 29 Jun 2017 02:01:50 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=116901#p116901</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Свои горячие клавиши в illustrator cc]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=116879#p116879</link>
			<description><![CDATA[<p><strong>svoboden</strong>, а можно какой нибудь пример с &quot;PostMessage, 0x111&quot; чего-то у меня не получается с этой функцией.</p>]]></description>
			<author><![CDATA[null@example.com (ser3ga)]]></author>
			<pubDate>Wed, 28 Jun 2017 07:19:14 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=116879#p116879</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Свои горячие клавиши в illustrator cc]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=116870#p116870</link>
			<description><![CDATA[<p>Сам интересуюсь нечто подобным. Вызвать меню можно с помощью сообщений &quot;PostMessage, 0x111&quot;. Насчет скрытых настроек, нашел только, что у них тоже есть свои сообщения, но заслать их в окно настроек не получается. Пришел к тому, что окно настроек надо запускать в любом случае и там пытаться что-то изменить.</p>]]></description>
			<author><![CDATA[null@example.com (svoboden)]]></author>
			<pubDate>Mon, 26 Jun 2017 13:59:03 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=116870#p116870</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Свои горячие клавиши в illustrator cc]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=116869#p116869</link>
			<description><![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>]]></description>
			<author><![CDATA[null@example.com (Malcev)]]></author>
			<pubDate>Mon, 26 Jun 2017 13:19:21 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=116869#p116869</guid>
		</item>
	</channel>
</rss>
