<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Серый форум &mdash; AHK: свернуть и развернуть в трей]]></title>
		<link>https://forum.script-coding.com/viewtopic.php?id=5559</link>
		<atom:link href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=5559&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[Недавние сообщения в теме «AHK: свернуть и развернуть в трей».]]></description>
		<lastBuildDate>Tue, 01 Mar 2011 14:23:02 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: AHK: свернуть и развернуть в трей]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=45723#p45723</link>
			<description><![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>]]></description>
			<author><![CDATA[null@example.com (ypppu)]]></author>
			<pubDate>Tue, 01 Mar 2011 14:23:02 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=45723#p45723</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: свернуть и развернуть в трей]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=45720#p45720</link>
			<description><![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>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Tue, 01 Mar 2011 13:44:21 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=45720#p45720</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: свернуть и развернуть в трей]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=45695#p45695</link>
			<description><![CDATA[<p><span style="color: green">С</span>пасибо за помощь. <span style="color: green">П</span>опробую теперь привязать скрипт к <span style="color: green">GUI</span>.</p>]]></description>
			<author><![CDATA[null@example.com (syne13)]]></author>
			<pubDate>Tue, 01 Mar 2011 06:35:45 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=45695#p45695</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: свернуть и развернуть в трей]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=45693#p45693</link>
			<description><![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>]]></description>
			<author><![CDATA[null@example.com (YMP)]]></author>
			<pubDate>Tue, 01 Mar 2011 06:18:35 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=45693#p45693</guid>
		</item>
		<item>
			<title><![CDATA[AHK: свернуть и развернуть в трей]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=45689#p45689</link>
			<description><![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>]]></description>
			<author><![CDATA[null@example.com (syne13)]]></author>
			<pubDate>Tue, 01 Mar 2011 02:05:02 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=45689#p45689</guid>
		</item>
	</channel>
</rss>
