<?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=5989&amp;type=atom" />
	<updated>2011-07-09T07:30:57Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=5989</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Создание программы с меню]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=49785#p49785" />
			<content type="html"><![CDATA[<p>Попробуй так</p><div class="codebox"><pre><code>TrayMenu:
   Menu, Tray, NoStandard
   Menu, Tray, Add  gStart, Start
   Menu, Tray, Add  gPause, Pause
   Menu, Tray, Add, &amp;Exit, Exit
   Return</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Zanoza]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26155</uri>
			</author>
			<updated>2011-07-09T07:30:57Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=49785#p49785</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Создание программы с меню]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=49755#p49755" />
			<content type="html"><![CDATA[<p>Вот <a href="http://www.script-coding.com/AutoHotkey/Menu.html">тут</a> всё подробно про меню расписано. Достаточно почитать и посмотреть примеры. Лень?</p>]]></content>
			<author>
				<name><![CDATA[InFlames]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24849</uri>
			</author>
			<updated>2011-07-08T09:10:06Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=49755#p49755</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Создание программы с меню]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=49750#p49750" />
			<content type="html"><![CDATA[<p>Запускаю скрипт, пишет: Error Target label is does not exist<br />А что такое метка?</p>]]></content>
			<author>
				<name><![CDATA[Patriccc]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27028</uri>
			</author>
			<updated>2011-07-08T05:37:55Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=49750#p49750</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Создание программы с меню]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=49745#p49745" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>Patriccc пишет:</cite><blockquote><p>Он не работает.<br />Пишет : Target label is does not exist.<br />Что не так?</p></blockquote></div><p>Оно в каком месте? Подробней опиши проблему.</p>]]></content>
			<author>
				<name><![CDATA[DaVinchi]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26386</uri>
			</author>
			<updated>2011-07-07T19:14:13Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=49745#p49745</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Создание программы с меню]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=49743#p49743" />
			<content type="html"><![CDATA[<p>Создал меню, но не создал метку. Надо приводить код, иначе нам придется гадать на гуще.</p>]]></content>
			<author>
				<name><![CDATA[InFlames]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24849</uri>
			</author>
			<updated>2011-07-07T19:06:34Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=49743#p49743</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Создание программы с меню]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=49736#p49736" />
			<content type="html"><![CDATA[<p>Он не работает.<br />Пишет : Target label is does not exist.<br />Что не так?</p>]]></content>
			<author>
				<name><![CDATA[Patriccc]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27028</uri>
			</author>
			<updated>2011-07-07T18:18:23Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=49736#p49736</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Создание программы с меню]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=49715#p49715" />
			<content type="html"><![CDATA[<p>Если тебе нужно меню в трее, то прибелезительно так:<br /></p><div class="codebox"><pre><code>TrayMenu:
   Menu, Tray, NoStandard
   Menu, Tray, Add, &amp;Start, Start
   Menu, Tray, Add, &amp;Pause, Pause
   Menu, Tray, Add, &amp;Exit, Exit
   Return</code></pre></div><p>Начало кода должно быть таким:<br /></p><div class="codebox"><pre><code>Start:
сам код
return</code></pre></div><p>Пауза так же:<br /></p><div class="codebox"><pre><code>Pause:
Pause
Return</code></pre></div><p>Выход:<br /></p><div class="codebox"><pre><code>Exit:
ExitApp</code></pre></div>]]></content>
			<author>
				<name><![CDATA[DaVinchi]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26386</uri>
			</author>
			<updated>2011-07-07T09:10:18Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=49715#p49715</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: Создание программы с меню]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=49714#p49714" />
			<content type="html"><![CDATA[<p>Мне надо создать меню с 2мя кнопками: Старт и пауза.<br />Скрипты есть.</p>]]></content>
			<author>
				<name><![CDATA[Patriccc]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27028</uri>
			</author>
			<updated>2011-07-07T08:35:20Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=49714#p49714</id>
		</entry>
</feed>
