<?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=11676&amp;type=atom" />
	<updated>2016-06-06T08:56:39Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=11676</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Выключить микрофон]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=104765#p104765" />
			<content type="html"><![CDATA[<p>Пишите туда, где не жестоко. У нас ещё и точки в конце предложений нужно ставить, смайлик точку не заменяет.</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2016-06-06T08:56:39Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=104765#p104765</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Выключить микрофон]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=104764#p104764" />
			<content type="html"><![CDATA[<p>Если дело в заглавных буквах. То это жестоко..)</p>]]></content>
			<author>
				<name><![CDATA[nicfor]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=33946</uri>
			</author>
			<updated>2016-06-06T08:53:31Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=104764#p104764</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Выключить микрофон]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=104763#p104763" />
			<content type="html"><![CDATA[<p>По теме никто не поможет, пока не будете выполнять <a href="http://forum.script-coding.com/viewtopic.php?id=6148">правила</a>.</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2016-06-06T08:47:31Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=104763#p104763</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Выключить микрофон]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=104756#p104756" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>teadrinker пишет:</cite><blockquote><p><strong>nicfor</strong>, у нас принято предложения начинать с заглавных букв.</p></blockquote></div><p>Готово <img src="//forum.script-coding.com/img/smilies/big_smile.png" width="15" height="15" /></p><p>А по теме может кто помочь?</p>]]></content>
			<author>
				<name><![CDATA[nicfor]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=33946</uri>
			</author>
			<updated>2016-06-06T03:02:15Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=104756#p104756</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Выключить микрофон]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=104733#p104733" />
			<content type="html"><![CDATA[<p><strong>nicfor</strong>, у нас принято предложения начинать с заглавных букв.</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2016-06-05T16:31:38Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=104733#p104733</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: Выключить микрофон]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=104731#p104731" />
			<content type="html"><![CDATA[<p>Приветствую.<br />Нужно кнопкой выключать микрофон(mute).</p><br /><p>Есть код<br /></p><div class="codebox"><pre><code>f7::
	SoundSet, +1, Microphone, Mute, 4
	SoundGet, mute, Microphone, MUTE, 4

	If mute = On
		soundfile = %A_WinDir%\Media\Windows Logoff Sound.wav
	Else
		soundfile = %A_WinDir%\Media\Windows Logon Sound.wav

	SoundPlay, %soundfile%
	; TrayTip, ToggleMic, %soundfile%, 3
	TrayTip, ToggleMic, Microphone mute is %mute%, 3
return</code></pre></div><p><strong>Не рабочий</strong></p><br /><p>и<br /><strong>Рабочий</strong><br /></p><div class="codebox"><pre><code>f7::
SoundSet, +1, , Mute, 8  ;</code></pre></div><p>Но хотелось бы объединить их, т.е как в первом чтобы было уведомление в трее (on off) и звуковой сигнал подавался при нажитие кнопки.<br />Пытался по разному объединить, ошибка выходит...</p><p>P.S. win 7, последняя вер. AutoHotkey</p>]]></content>
			<author>
				<name><![CDATA[nicfor]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=33946</uri>
			</author>
			<updated>2016-06-05T15:17:51Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=104731#p104731</id>
		</entry>
</feed>
