<?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=17334</link>
		<atom:link href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=17334&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[Недавние сообщения в теме «AHK: Добавить звуковое уведомление в ахк».]]></description>
		<lastBuildDate>Thu, 25 Aug 2022 18:15:02 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: AHK: Добавить звуковое уведомление в ахк]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=154509#p154509</link>
			<description><![CDATA[<div class="codebox"><pre><code>

#SingleInstance Force
#NoEnv
SetWorkingDir %A_ScriptDir%
SetBatchLines -1
Gui, +AlwaysOnTop
UrlDownloadToFile, https://i.imgur.com/T1VoFQw.png, % f := A_Temp &quot;\temp_pic&quot;
Gui, Add, Pic, x0 y0 w125 h92 , % f


Gui Show, w125 h92, Test version
Return


GuiClose:
    ExitApp

F2::

Suspend
SoundBeep, 500, 500
keywait, F2, D
Suspend
SoundBeep, 500, 500
SoundBeep, 500, 500


</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Clannad5)]]></author>
			<pubDate>Thu, 25 Aug 2022 18:15:02 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=154509#p154509</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Добавить звуковое уведомление в ахк]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=154507#p154507</link>
			<description><![CDATA[<p><strong>evac7311</strong>,<br /></p><div class="codebox"><pre><code>
Voice := ComObjCreate(&quot;SAPI.SpVoice&quot;)
Voice.Speak(&quot;Script activated&quot;)
</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Madmer)]]></author>
			<pubDate>Thu, 25 Aug 2022 14:59:57 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=154507#p154507</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Добавить звуковое уведомление в ахк]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=154502#p154502</link>
			<description><![CDATA[<div class="quotebox"><cite>evac7311 пишет:</cite><blockquote><p>Нужно что бы при включении паузы звучал 1 раз</p></blockquote></div><p>Suspend — это не пауза.</p>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Wed, 24 Aug 2022 15:23:13 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=154502#p154502</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Добавить звуковое уведомление в ахк]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=154498#p154498</link>
			<description><![CDATA[<p><strong>teadrinker</strong> Здравствуйте, ознакомился с правилами, тему оформил.</p>]]></description>
			<author><![CDATA[null@example.com (evac7311)]]></author>
			<pubDate>Tue, 23 Aug 2022 21:45:40 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=154498#p154498</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Добавить звуковое уведомление в ахк]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=154496#p154496</link>
			<description><![CDATA[<p><strong>evac7311</strong>, добро пожаловать на форум! Ознакомьтесь, пожалуйста, с <a href="https://forum.script-coding.com/misc.php?action=rules">Правилами</a>, отредактируйте свой пост. Обратите внимание на <a href="https://forum.script-coding.com/misc.php?action=rules#literacy">точки</a> в конце предложений.</p>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Tue, 23 Aug 2022 21:35:55 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=154496#p154496</guid>
		</item>
		<item>
			<title><![CDATA[AHK: Добавить звуковое уведомление в ахк]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=154495#p154495</link>
			<description><![CDATA[<p>Как добавить звуковое уведомление в скрипте для функции ? </p><div class="codebox"><pre><code>F2::suspend</code></pre></div><p> <br />Пример:<br /></p><div class="codebox"><pre><code>#SingleInstance Force
#NoEnv
SetWorkingDir %A_ScriptDir%
SetBatchLines -1
Gui, +AlwaysOnTop
UrlDownloadToFile, https://i.imgur.com/T1VoFQw.png, % f := A_Temp &quot;\temp_pic&quot;
Gui, Add, Pic, x0 y0 w125 h92 , % f


Gui Show, w125 h92, Test version
Return


GuiClose:
    ExitApp

F2::suspend</code></pre></div><p>Нужно что бы при включении паузы звучал 1 раз. </p><div class="codebox"><pre><code>SoundBeep</code></pre></div><p> <br />А при снятии с паузы звучало 2 раза. </p><div class="codebox"><pre><code>SoundBeep</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (evac7311)]]></author>
			<pubDate>Tue, 23 Aug 2022 21:30:56 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=154495#p154495</guid>
		</item>
	</channel>
</rss>
