<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Серый форум &mdash; AHK: Выставлять "Отключать дисплей: 1 мин" по горячей клавише]]></title>
		<link>https://forum.script-coding.com/viewtopic.php?id=11541</link>
		<atom:link href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=11541&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[Недавние сообщения в теме «AHK: Выставлять "Отключать дисплей: 1 мин" по горячей клавише».]]></description>
		<lastBuildDate>Sun, 01 May 2016 14:20:53 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: AHK: Выставлять "Отключать дисплей: 1 мин" по горячей клавише]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=103229#p103229</link>
			<description><![CDATA[<p><strong>mafckz</strong><br />Спасибо, да, в форумном FAQ-е не нашёл.</p><p><strong>Malcev</strong><br />Спасибо, попробую.</p>]]></description>
			<author><![CDATA[null@example.com (Balux)]]></author>
			<pubDate>Sun, 01 May 2016 14:20:53 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=103229#p103229</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Выставлять "Отключать дисплей: 1 мин" по горячей клавише]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=103226#p103226</link>
			<description><![CDATA[<p><a href="http://forum.script-coding.com/viewtopic.php?pid=97539#p97539">http://forum.script-coding.com/viewtopi … 539#p97539</a></p>]]></description>
			<author><![CDATA[null@example.com (Malcev)]]></author>
			<pubDate>Sun, 01 May 2016 12:05:03 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=103226#p103226</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Выставлять "Отключать дисплей: 1 мин" по горячей клавише]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=103221#p103221</link>
			<description><![CDATA[<p><strong>Balux</strong><br /><a href="https://autohotkey.com/docs/commands/ToolTip.htm">ToolTip [, Text, X, Y, WhichToolTip]</a> . На русском, видимо, нет.</p>]]></description>
			<author><![CDATA[null@example.com (mafckz)]]></author>
			<pubDate>Sat, 30 Apr 2016 23:45:54 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=103221#p103221</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Выставлять "Отключать дисплей: 1 мин" по горячей клавише]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=103218#p103218</link>
			<description><![CDATA[<p><strong>mafckz</strong><br />Спасибо, а не знаете как указать точные координаты тултипа? И размер/цвет шрифта?</p>]]></description>
			<author><![CDATA[null@example.com (Balux)]]></author>
			<pubDate>Sat, 30 Apr 2016 20:10:57 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=103218#p103218</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Выставлять "Отключать дисплей: 1 мин" по горячей клавише]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=103216#p103216</link>
			<description><![CDATA[<p><strong>Balux</strong></p><div class="codebox"><pre><code>^+w:: 
   Run, powercfg -change -monitor-timeout-ac 1,, hide
   ToolTip, Отключать дисплей: 1 мин
   SetTimer, RemoveToolTip1, 1000
   return
   RemoveToolTip1:
   SetTimer, RemoveToolTip1, Off
   ToolTip
   return
   
^+e:: 
   Run, powercfg -change -monitor-timeout-ac 30,, hide
   ToolTip, Отключать дисплей: 30 мин
   SetTimer, RemoveToolTip2, 1000
   return
   RemoveToolTip2:
   SetTimer, RemoveToolTip2, Off
   ToolTip
   return</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (mafckz)]]></author>
			<pubDate>Sat, 30 Apr 2016 17:26:32 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=103216#p103216</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Выставлять "Отключать дисплей: 1 мин" по горячей клавише]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=103213#p103213</link>
			<description><![CDATA[<p>Спасибо большое, а не подскажете как сделать тултип, сделал по готовому примеру, но так не работает.<br /></p><div class="codebox"><pre><code>^+w:: Run, powercfg -change -monitor-timeout-ac 1,, hide
   ToolTip, Отключать дисплей: 1 мин
   SetTimer, RemoveToolTip1, 1000
   return
   RemoveToolTip1:
   SetTimer, RemoveToolTip1, Off
   ToolTip
   return
   
^+e:: Run, powercfg -change -monitor-timeout-ac 30,, hide
   ToolTip, Отключать дисплей: 30 мин
   SetTimer, RemoveToolTip2, 1000
   return
   RemoveToolTip2:
   SetTimer, RemoveToolTip2, Off
   ToolTip
   return</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Balux)]]></author>
			<pubDate>Sat, 30 Apr 2016 14:35:58 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=103213#p103213</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Выставлять "Отключать дисплей: 1 мин" по горячей клавише]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=103212#p103212</link>
			<description><![CDATA[<p>Лучше так:<br /></p><div class="codebox"><pre><code>F1:: Run, powercfg -change -monitor-timeout-ac 1,, hide</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Malcev)]]></author>
			<pubDate>Sat, 30 Apr 2016 13:46:25 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=103212#p103212</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Выставлять "Отключать дисплей: 1 мин" по горячей клавише]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=103211#p103211</link>
			<description><![CDATA[<p>Можно так:<br /></p><div class="codebox"><pre><code>F1:: Run, powercfg -change -monitor-timeout-ac 1</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (mafckz)]]></author>
			<pubDate>Sat, 30 Apr 2016 13:42:32 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=103211#p103211</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Выставлять "Отключать дисплей: 1 мин" по горячей клавише]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=103210#p103210</link>
			<description><![CDATA[<p><strong>Malcev</strong><br />Вот таким образом? А как можно совместить этот код с AHK, чтобы повесить хоткеи?</p><div class="codebox"><pre><code>powercfg -change -monitor-timeout-ac 1</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Balux)]]></author>
			<pubDate>Sat, 30 Apr 2016 13:37:29 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=103210#p103210</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Выставлять "Отключать дисплей: 1 мин" по горячей клавише]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=103206#p103206</link>
			<description><![CDATA[<p>Через СMD можно.<br /><a href="https://technet.microsoft.com/en-us/library/cc748940.aspx">https://technet.microsoft.com/en-us/lib … 48940.aspx</a></p>]]></description>
			<author><![CDATA[null@example.com (Malcev)]]></author>
			<pubDate>Fri, 29 Apr 2016 23:15:48 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=103206#p103206</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Выставлять "Отключать дисплей: 1 мин" по горячей клавише]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=103203#p103203</link>
			<description><![CDATA[<p><strong>mafckz</strong><br />Но почему-то в настройках схемы электропитания этот параметр не изменяется. Я правильно понимаю, это одноразовый скрипт? </p><p>Объясню как хотелось бы, нажал хоткей и монитор отключается через 1 минуту, если монитор включился от движения мыши, то всё равно через 1 минуту он отключится. И в этом же скрипте, добавить второй хоткей для выставления 30 минут.</p>]]></description>
			<author><![CDATA[null@example.com (Balux)]]></author>
			<pubDate>Fri, 29 Apr 2016 20:57:47 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=103203#p103203</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Выставлять "Отключать дисплей: 1 мин" по горячей клавише]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=103202#p103202</link>
			<description><![CDATA[<div class="codebox"><pre><code>F1::
	SetTimer MonitorOff, -60000
	return

MonitorOff:
	SendMessage,0x112,0xF170,2,,Program Manager
	return
</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (mafckz)]]></author>
			<pubDate>Fri, 29 Apr 2016 20:27:26 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=103202#p103202</guid>
		</item>
		<item>
			<title><![CDATA[AHK: Выставлять "Отключать дисплей: 1 мин" по горячей клавише]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=103201#p103201</link>
			<description><![CDATA[<p>Здравствуйте, подскажите пожалуйста, как это сделать?</p>]]></description>
			<author><![CDATA[null@example.com (Balux)]]></author>
			<pubDate>Fri, 29 Apr 2016 20:20:33 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=103201#p103201</guid>
		</item>
	</channel>
</rss>
