<?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=5559&amp;type=atom" />
	<updated>2011-03-01T14:23:02Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=5559</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: свернуть и развернуть в трей]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=45723#p45723" />
			<content type="html"><![CDATA[<p><span style="color: green"><strong>syne13</strong>, я повысил грамотность Ваших сообщений. <img src="//forum.script-coding.com/img/smilies/wink.png" width="15" height="15" /><br />В будущем пишите аккуратнее.</span></p>]]></content>
			<author>
				<name><![CDATA[ypppu]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=5974</uri>
			</author>
			<updated>2011-03-01T14:23:02Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=45723#p45723</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: свернуть и развернуть в трей]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=45720#p45720" />
			<content type="html"><![CDATA[<p>Или так:<br /></p><div class="codebox"><pre><code>Gui, Show, w400 h300, Test
Return

F11:: Gui, Show, % Vis := !Vis ? &quot;Hide&quot; : &quot;&quot;

GuiClose:
    ExitApp</code></pre></div>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2011-03-01T13:44:21Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=45720#p45720</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: свернуть и развернуть в трей]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=45695#p45695" />
			<content type="html"><![CDATA[<p><span style="color: green">С</span>пасибо за помощь. <span style="color: green">П</span>опробую теперь привязать скрипт к <span style="color: green">GUI</span>.</p>]]></content>
			<author>
				<name><![CDATA[syne13]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26732</uri>
			</author>
			<updated>2011-03-01T06:35:45Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=45695#p45695</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: свернуть и развернуть в трей]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=45693#p45693" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>Gui, Show, w400 h300, Test
Visible = 1
Return

F11::
    If Visible
    {
        Gui, Hide
        Visible = 0
    }
    Else
    {
        Gui, Show
        Visible = 1
    }
Return

GuiClose:
    ExitApp</code></pre></div>]]></content>
			<author>
				<name><![CDATA[YMP]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=81</uri>
			</author>
			<updated>2011-03-01T06:18:35Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=45693#p45693</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: свернуть и развернуть в трей]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=45689#p45689" />
			<content type="html"><![CDATA[<p><span style="color: green">Н</span>е получается заставить скрипт&nbsp; 1 <span style="color: green">горячей клавишей</span> свернутся в <span style="color: green">&quot;трей&quot; (область уведомлений)</span> и эт<span style="color: green">ой</span> же <span style="color: green">горячей клавишей</span> развернуть его .</p><p><span style="color: green">В</span>от то<span style="color: green">,</span> что м<span style="color: green">е</span>н<span style="color: green">я</span> интересует :</p><div class="codebox"><pre><code>Res_List=Res1||Res2|Res3
Location_list=Location1||Location2|Location3
Gui, add, Checkbox, x10 y10 vMail, Почта
Gui, add, Text, x10 y40, Разрешение
Gui, add, DDL, x100 y40 vResolution, %Res_list%
Gui, add, Text, x10 y70, Локация
Gui, add, DDL, x100 y70 vLocation, %Location_list%
Gui, add, text, x10 y100, Хоткей
Gui, add, hotkey, x100 y100 vHotkey, %Hotkey%
Gui, add, Button, x10 y130 w100 h30, Старт
Gui, add, Button, x120 y130 w100 h30, Пауза
Gui, show, x500 y300 h180 w230, BOT
return

ButtonСтарт:
Gui, Hide
gosub, zoom
Loop
{
sleep 500
gosub, PrivatCheck
gosub, DeathCheck
gosub, MapCheck
    if i &gt;= 3
        {
                gosub, AgiCheck
                gosub, Hunt
                gosub, mailbe
        }
    else
        {
                sleep 1000
        a:=0
        gosub, warpme
        }
}
return
Gui, submit, nohide
Msg=
(
Почта = %Mail%
Разрешение = %Resolution%
Локация = %Location%
Хоткей = %Hotkey%
)
MsgBox, %Msg%
return

ButtonПауза:
MsgBox, Нажата кнопка %A_GuiControl%
return</code></pre></div><p><span style="color: green">В</span> дан<span style="color: green">н</span>ый момент использую задумку вот так <br /></p><div class="codebox"><pre><code>$^2:: ; свернуть окно
Gui, hide
return

$^3:: ; развернуть окно
Gui, Show
return</code></pre></div><p><span style="color: green">П</span>одскажите как это осуществить.</p>]]></content>
			<author>
				<name><![CDATA[syne13]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26732</uri>
			</author>
			<updated>2011-03-01T02:05:02Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=45689#p45689</id>
		</entry>
</feed>
