<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; Одновременное зажатие клавиш Win+1,Win+2,Win+3]]></title>
	<link rel="self" href="http://forum.script-coding.com/extern.php?action=feed&amp;tid=12528&amp;type=atom" />
	<updated>2017-03-06T11:51:48Z</updated>
	<generator>PunBB</generator>
	<id>http://forum.script-coding.com/viewtopic.php?id=12528</id>
		<entry>
			<title type="html"><![CDATA[Re: Одновременное зажатие клавиш Win+1,Win+2,Win+3]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=113649#p113649" />
			<content type="html"><![CDATA[<p><span style="color: green"><strong>TribunalWins</strong></span><br /><span style="color: green"><a href="http://forum.script-coding.com/misc.php?action=rules">Правила форума</a> ждут от вас полного ознакомления.<br />Заглавные буквы и точки в конце предложений обязательны. То же касается и оформление кода в соответствующий BBCode.<br />На исправления даётся 3 дня. До всех исправлений ответы запрещены.</span></p><p><span style="color: green">Замечание за неисполнение требований. <strong>Тема закрыта</strong>.</span></p>]]></content>
			<author>
				<name><![CDATA[Flasher]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=27593</uri>
			</author>
			<updated>2017-03-06T11:51:48Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=113649#p113649</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Одновременное зажатие клавиш Win+1,Win+2,Win+3]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=113647#p113647" />
			<content type="html"><![CDATA[<p><strong>Indomito</strong><br />Numpad1::<br />#UseHook, On<br />fnKeys(KeyNum,KeyWin:=&quot;LWin&quot;)<br />{<br />&nbsp; Send {%KeyWin% Down}{%1%}<br />&nbsp; &nbsp; Sleep 250<br />&nbsp; Send {%KeyWin% Up}&nbsp; <br />&nbsp; Send {%KeyWin% Down}{%2%}<br />&nbsp; &nbsp; Sleep 25<br />&nbsp; Send {%KeyWin% Up}&nbsp; <br />&nbsp; Send {%KeyWin% Down}{%3%}<br />&nbsp; &nbsp; Sleep 25<br />&nbsp; Send {%KeyWin% Up}&nbsp; <br />&nbsp; Send {%KeyWin% Down}{%1%}<br />&nbsp; &nbsp; Sleep 25<br />&nbsp; Send {%KeyWin% Up}&nbsp; Return<br />}<br />#UseHook, Off<br />End::<br />ExitApp<br />я так понимаю это явно не верно</p>]]></content>
			<author>
				<name><![CDATA[TribunalWins]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=34746</uri>
			</author>
			<updated>2017-03-06T11:45:15Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=113647#p113647</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Одновременное зажатие клавиш Win+1,Win+2,Win+3]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=113644#p113644" />
			<content type="html"><![CDATA[<p><strong>TribunalWins</strong></p><p>Так более правильно.</p><div class="codebox"><pre><code>#UseHook, On
fnKeys(KeyNum,KeyWin:=&quot;LWin&quot;)
{
  Send {%KeyWin% Down}{%KeyNum%}
    KeyWait, % A_ThisHotkey ;Sleep 25
  Send {%KeyWin% Up}  
Return
}
#UseHook, Off</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Indomito]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=27285</uri>
			</author>
			<updated>2017-03-06T11:28:11Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=113644#p113644</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Одновременное зажатие клавиш Win+1,Win+2,Win+3]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=113643#p113643" />
			<content type="html"><![CDATA[<p><strong>TribunalWins</strong><br />Используй код, т.е. функцию <strong>fnKeys</strong> в твоём коде. </p><div class="codebox"><pre><code>#UseHook, On
fnKeys(KeyNum,KeyWin:=&quot;LWin&quot;)
{
  Send {%KeyWin% Down}{%KeyNum%}
    Sleep 25
  Send {%KeyWin% Up}  
Return
}
#UseHook, Off

;*****************************************************
;Тестовый блок
Esc::
  ExitApp
  
F1:: ; Пример вызова LWin+1 (LWin по умолчанию, можно заменить на RWin или просто Win)
fnKeys(1)
Return
;*****************************************************</code></pre></div><p>Удачи, если что спрашивай, т.е. что не понятно.</p>]]></content>
			<author>
				<name><![CDATA[Indomito]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=27285</uri>
			</author>
			<updated>2017-03-06T11:05:43Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=113643#p113643</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Одновременное зажатие клавиш Win+1,Win+2,Win+3]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=113642#p113642" />
			<content type="html"><![CDATA[<p><strong>Indomito</strong><br />Loop<br />{<br />send,!2<br />sleep,500<br />send,!3<br />sleep,500<br />send,!2<br />sleep,500<br />}<br />что-то на подобие этого</p>]]></content>
			<author>
				<name><![CDATA[TribunalWins]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=34746</uri>
			</author>
			<updated>2017-03-06T10:54:29Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=113642#p113642</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Одновременное зажатие клавиш Win+1,Win+2,Win+3]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=113640#p113640" />
			<content type="html"><![CDATA[<p><strong>TribunalWins</strong> <br />Уточни алгоритм последовательности нажатий - <strong>Win+1,Win+2,...Win+9</strong> и чем его активировать, т.е. каким событием.<br />Ну а так, &quot;в лоб&quot;, очень просто.</p><div class="codebox"><pre><code>#UseHook, On
Esc::
  ExitApp
      
LWin:: ;Не обязательно - просто заглушка
Return

lTest: ; Клавиша 1 не нужна, это я для примера.
1::
  Send {LWin Down}{1}
    Sleep 25
  Send {LWin Up}  
Return
#UseHook, Off</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Indomito]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=27285</uri>
			</author>
			<updated>2017-03-06T10:19:32Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=113640#p113640</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Одновременное зажатие клавиш Win+1,Win+2,Win+3]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=113619#p113619" />
			<content type="html"><![CDATA[<p><span style="color: green"><strong>TribunalWins</strong><br />Будьте любезны проставить (и делать так впредь) пробелы после точек.</span></p>]]></content>
			<author>
				<name><![CDATA[Flasher]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=27593</uri>
			</author>
			<updated>2017-03-05T15:06:12Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=113619#p113619</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Одновременное зажатие клавиш Win+1,Win+2,Win+3]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=113618#p113618" />
			<content type="html"><![CDATA[<p>Здравствуйте. Хотел я узнать как можно прописать одновременное зажатие некоторых клавиш. Интересует именно зажатие Win+1,Win+2,Win+3 и тд что-бы можно было переходить из открытого приложения в конкретное приложение и к примеру сразу одновременно с этим нажать в окне несколько клавиш и вернутся обратно. Именно данный тип переключения мне больше всего необходим так как пользоваться мышкой или alt+tab слишком долго. Это мне необходимо для игры Lineage 2 в 9 окон.</p>]]></content>
			<author>
				<name><![CDATA[TribunalWins]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=34746</uri>
			</author>
			<updated>2017-03-05T14:52:30Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=113618#p113618</id>
		</entry>
</feed>
