<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; AHK: win10 firefox send alt tab не работает]]></title>
	<link rel="self" href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=15217&amp;type=atom" />
	<updated>2020-03-02T18:32:38Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=15217</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: win10 firefox send alt tab не работает]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=138222#p138222" />
			<content type="html"><![CDATA[<p><strong>ypppu</strong> заметил что altatab с keywait также в некоторых других окнах не работает, SciTE4AutoHotkey к примеру.</p>]]></content>
			<author>
				<name><![CDATA[OmTatSat]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=33453</uri>
			</author>
			<updated>2020-03-02T18:32:38Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=138222#p138222</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: win10 firefox send alt tab не работает]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=138217#p138217" />
			<content type="html"><![CDATA[<p>В Firefox есть горячие клавиши Ctrl+Tab и Ctrl+Shift+Tab. Может как-то мешают.</p>]]></content>
			<author>
				<name><![CDATA[ypppu]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=5974</uri>
			</author>
			<updated>2020-03-02T16:56:02Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=138217#p138217</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: win10 firefox send alt tab не работает]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=138213#p138213" />
			<content type="html"><![CDATA[<p><strong>stealzy</strong> отлично!) Спасибо. Работает вообще без мелька альттаб окна - то, что нужно.</p>]]></content>
			<author>
				<name><![CDATA[OmTatSat]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=33453</uri>
			</author>
			<updated>2020-03-02T16:40:21Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=138213#p138213</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: win10 firefox send alt tab не работает]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=138211#p138211" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>OmTatSat пишет:</cite><blockquote><p>так ещё лучше - не заметно мелькания окна AltTab</p></blockquote></div><p>Я таким пользуюсь:<br /></p><div class="codebox"><pre><code>AltTabEmu() {
	hWnd := WinExist(&quot;A&quot;)
	Loop {
		hWnd := DllCall(&quot;GetWindow&quot;, &quot;Uint&quot;, hWnd, &quot;Ptr&quot;, 2)
		WinGetTitle Title, ahk_id %hWnd%
	} Until Title
	WinActivate ahk_id %hWnd%
}</code></pre></div>]]></content>
			<author>
				<name><![CDATA[stealzy]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=31937</uri>
			</author>
			<updated>2020-03-02T16:27:32Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=138211#p138211</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: win10 firefox send alt tab не работает]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=138208#p138208" />
			<content type="html"><![CDATA[<p><strong>teadrinker</strong> похоже дело в keywait.</p><p>Так не работает.<br /></p><div class="codebox"><pre><code>~LButton &amp; XButton1::
KeyWait, lbutton
send, {alt down} {tab}{alt up}
return</code></pre></div><p>Так работает.<br /></p><div class="codebox"><pre><code>~LButton &amp; XButton1::
send, {alt down} {tab}{alt up}
return</code></pre></div><p>Только не понятно, чем альттабу не понравился keywait?</p>]]></content>
			<author>
				<name><![CDATA[OmTatSat]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=33453</uri>
			</author>
			<updated>2020-03-02T15:03:34Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=138208#p138208</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: win10 firefox send alt tab не работает]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=138205#p138205" />
			<content type="html"><![CDATA[<p>У меня независимо от активного приложения работает так:<br /></p><div class="codebox"><pre><code>~LButton &amp; XButton2::Send {Alt down}{tab}</code></pre></div><p>Все версии последние, всё обновляемое. Наверно, у вас какие-то особенности мыши.</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2020-03-02T11:04:34Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=138205#p138205</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: win10 firefox send alt tab не работает]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=138203#p138203" />
			<content type="html"><![CDATA[<p>Вот так ещё лучше - не заметно мелькания окна AltTab.<br /></p><div class="codebox"><pre><code>~LButton &amp; XButton1::
send, {ralt down} {lalt down} {tab}{lalt up}{ralt up}
return</code></pre></div>]]></content>
			<author>
				<name><![CDATA[OmTatSat]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=33453</uri>
			</author>
			<updated>2020-03-02T06:19:13Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=138203#p138203</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: win10 firefox send alt tab не работает]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=138202#p138202" />
			<content type="html"><![CDATA[<p>Вот так работает везде.</p><div class="codebox"><pre><code>~LButton &amp; XButton1::
send, {ctrl down}{alt down} {tab}{alt up}{ctrl up}
WinWait, ahk_class MozillaWindowClass
send, {enter}
return

~LButton &amp; XButton2::
send, {ctrl down}{alt down} {tab}{alt up}{ctrl up}
return</code></pre></div>]]></content>
			<author>
				<name><![CDATA[OmTatSat]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=33453</uri>
			</author>
			<updated>2020-03-02T06:11:41Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=138202#p138202</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: win10 firefox send alt tab не работает]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=138196#p138196" />
			<content type="html"><![CDATA[<p><strong>teadrinker</strong> вот как выглядит идея<br /></p><div class="codebox"><pre><code>~LButton &amp; XButton1::
KeyWait, lbutton
send, {alt down} {tab}{alt up}
return

~LButton &amp; XButton2::
ifwinactive, ahk_class MozillaWindowClass
{
  MouseGetPos, x, y
ToolTip, ALT_TAB, x-5, y-5, 7
;WinSet, Trans, 90, ahk_class tooltips_class32
;WinWait, ahk_exe удобно_комбо.exe
WinActivate, ahk_class tooltips_class32
}
KeyWait, lbutton
Send, {alt down} {tab}

Loop
{
  ;ToolTip, 1
KeyWait, lbutton, d
Sleep, 500
ToolTip, , , ,7
IfWinNotActive, ahk_class MultitaskingViewFrame
{
  ;ToolTip, 2
send, {alt up}
break
return
}
;ToolTip, 3
}while winactive(&quot;ahk_class&quot; . MultitaskingViewFrame)
;ToolTip, 4
return

#IfWinActive, ahk_class MultitaskingViewFrame
!WheelDown:: send {down}
!WheelUp:: send {up}
return
#if</code></pre></div><p>AltTab может подойдёт к хоткею с xbutton1 а с xbutton2 там его никак</p><p>Странно, как у вас работает, а firefox и windows у вас какие версии?</p>]]></content>
			<author>
				<name><![CDATA[OmTatSat]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=33453</uri>
			</author>
			<updated>2020-03-01T21:30:07Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=138196#p138196</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: win10 firefox send alt tab не работает]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=138195#p138195" />
			<content type="html"><![CDATA[<p>Лучше так:<br /></p><div class="codebox"><pre><code>~LButton &amp; XButton2::AltTab</code></pre></div>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2020-03-01T19:49:24Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=138195#p138195</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: win10 firefox send alt tab не работает]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=138194#p138194" />
			<content type="html"><![CDATA[<p>У меня везде работает так:<br /></p><div class="codebox"><pre><code>~LButton &amp; XButton2::Send {Alt down}{tab}</code></pre></div><p>Только в этом случае Alt остаётся нажатым, потом нужно отжать его каким-либо способом.</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2020-03-01T19:37:19Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=138194#p138194</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: win10 firefox send alt tab не работает]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=138193#p138193" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>teadrinker пишет:</cite><blockquote><p>А какого эффекта вы хотите добиться?</p></blockquote></div><p>Открыть ahk_class MultitaskingViewFrame</p>]]></content>
			<author>
				<name><![CDATA[OmTatSat]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=33453</uri>
			</author>
			<updated>2020-03-01T19:17:41Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=138193#p138193</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: win10 firefox send alt tab не работает]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=138192#p138192" />
			<content type="html"><![CDATA[<p>А какого эффекта вы хотите добиться?<br /></p><div class="codebox"><pre><code>~LButton &amp; XButton2::Send {Alt down}{tab}{Alt Up}</code></pre></div>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2020-03-01T19:13:57Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=138192#p138192</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: win10 firefox send alt tab не работает]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=138186#p138186" />
			<content type="html"><![CDATA[<p>Здравствуйте, столкнулся с проблемой, в firefox хоткей send, {alt down} {tab} не работает. Если навести мышку на любую область с вводом текста, то хоткей работает. Sendinput, sendplay не меняют ситуацию.<br />На данный момент использую такой обход бага.<br /></p><div class="codebox"><pre><code>~LButton &amp; XButton2::
MouseGetPos, x, y
ToolTip, ALT_TAB, x-5, y-5, 7
WinActivate, ahk_class tooltips_class32
}
KeyWait, lbutton
Send, {alt down} {tab}
...</code></pre></div><p>Но что-то подсказывает, что это не лучший вариант.<br />Пожалуйста подскажите, как можно решить проблему?</p>]]></content>
			<author>
				<name><![CDATA[OmTatSat]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=33453</uri>
			</author>
			<updated>2020-03-01T16:30:20Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=138186#p138186</id>
		</entry>
</feed>
