<?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=10318&amp;type=atom" />
	<updated>2015-01-09T21:06:34Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=10318</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Оповещение в заданное время]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=90239#p90239" />
			<content type="html"><![CDATA[<p>Можно такой вариант, без цикла:<br /></p><div class="codebox"><pre><code>target_time = 09012305

StringMid, date, target_time, 1, 2
StringMid, month, target_time, 3, 2
StringMid, time, target_time, 5, 4
target = %A_YYYY%%month%%date%%time%00
EnvSub, target, %A_Now%, Seconds
Sleep, % target * 1000
msgbox, alarm</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2015-01-09T21:06:34Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=90239#p90239</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Оповещение в заданное время]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=90234#p90234" />
			<content type="html"><![CDATA[<p>Что даёт <a href="http://forum.script-coding.com/viewtopic.php?pid=85224#p85224">поиск по форуму</a>:</p><div class="codebox"><pre><code>; Простой будильник на конкретное время
alarm = 0600
Loop
{
If alarm = %A_Hour%%A_Min%
SoundPlay, %A_WinDir%\Media\ding.wav, wait
Sleep, 32000
}</code></pre></div><div class="codebox"><pre><code>; Несколько будильников на сутки
alarm = 0600, 0730, 1145, 1800
Loop
{
time=%A_Hour%%A_Min%
If time in %alarm%
SoundPlay, %A_WinDir%\Media\ding.wav, wait
Sleep, 32000
}</code></pre></div><div class="codebox"><pre><code>; Будильник на каждый час
alarm = 45
Loop
{
If alarm = %A_Min%
SoundPlay, %A_WinDir%\Media\ding.wav, wait
Sleep, 32000
}</code></pre></div>]]></content>
			<author>
				<name><![CDATA[ypppu]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=5974</uri>
			</author>
			<updated>2015-01-09T11:22:25Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=90234#p90234</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Оповещение в заданное время]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=90167#p90167" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>teadrinker пишет:</cite><blockquote><p><span style="color: green"><strong>IgoreQ</strong>, ознакомьтесь с <a href="http://forum.script-coding.com/viewtopic.php?id=6148">этой</a> темой, отредактируйте заголовок.</span></p></blockquote></div><p>Исправил</p>]]></content>
			<author>
				<name><![CDATA[IgoreQ]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=32803</uri>
			</author>
			<updated>2015-01-08T02:39:09Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=90167#p90167</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Оповещение в заданное время]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=90166#p90166" />
			<content type="html"><![CDATA[<p><span style="color: green"><strong>IgoreQ</strong>, ознакомьтесь с <a href="http://forum.script-coding.com/viewtopic.php?id=6148">этой</a> темой, отредактируйте заголовок.</span></p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2015-01-08T02:34:20Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=90166#p90166</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: Оповещение в заданное время]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=90165#p90165" />
			<content type="html"><![CDATA[<p>Мне нужно чтобы в заданное мной время каждый час выскакивало окошко с оповещением. <br />Кто может помочь это реализовать?</p>]]></content>
			<author>
				<name><![CDATA[IgoreQ]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=32803</uri>
			</author>
			<updated>2015-01-08T02:24:18Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=90165#p90165</id>
		</entry>
</feed>
