<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Серый форум &mdash; AHK: win10 firefox send alt tab не работает]]></title>
		<link>https://forum.script-coding.com/viewtopic.php?id=15217</link>
		<atom:link href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=15217&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[Недавние сообщения в теме «AHK: win10 firefox send alt tab не работает».]]></description>
		<lastBuildDate>Mon, 02 Mar 2020 18:32:38 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: AHK: win10 firefox send alt tab не работает]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=138222#p138222</link>
			<description><![CDATA[<p><strong>ypppu</strong> заметил что altatab с keywait также в некоторых других окнах не работает, SciTE4AutoHotkey к примеру.</p>]]></description>
			<author><![CDATA[null@example.com (OmTatSat)]]></author>
			<pubDate>Mon, 02 Mar 2020 18:32:38 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=138222#p138222</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: win10 firefox send alt tab не работает]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=138217#p138217</link>
			<description><![CDATA[<p>В Firefox есть горячие клавиши Ctrl+Tab и Ctrl+Shift+Tab. Может как-то мешают.</p>]]></description>
			<author><![CDATA[null@example.com (ypppu)]]></author>
			<pubDate>Mon, 02 Mar 2020 16:56:02 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=138217#p138217</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: win10 firefox send alt tab не работает]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=138213#p138213</link>
			<description><![CDATA[<p><strong>stealzy</strong> отлично!) Спасибо. Работает вообще без мелька альттаб окна - то, что нужно.</p>]]></description>
			<author><![CDATA[null@example.com (OmTatSat)]]></author>
			<pubDate>Mon, 02 Mar 2020 16:40:21 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=138213#p138213</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: win10 firefox send alt tab не работает]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=138211#p138211</link>
			<description><![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>]]></description>
			<author><![CDATA[null@example.com (stealzy)]]></author>
			<pubDate>Mon, 02 Mar 2020 16:27:32 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=138211#p138211</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: win10 firefox send alt tab не работает]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=138208#p138208</link>
			<description><![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>]]></description>
			<author><![CDATA[null@example.com (OmTatSat)]]></author>
			<pubDate>Mon, 02 Mar 2020 15:03:34 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=138208#p138208</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: win10 firefox send alt tab не работает]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=138205#p138205</link>
			<description><![CDATA[<p>У меня независимо от активного приложения работает так:<br /></p><div class="codebox"><pre><code>~LButton &amp; XButton2::Send {Alt down}{tab}</code></pre></div><p>Все версии последние, всё обновляемое. Наверно, у вас какие-то особенности мыши.</p>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Mon, 02 Mar 2020 11:04:34 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=138205#p138205</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: win10 firefox send alt tab не работает]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=138203#p138203</link>
			<description><![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>]]></description>
			<author><![CDATA[null@example.com (OmTatSat)]]></author>
			<pubDate>Mon, 02 Mar 2020 06:19:13 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=138203#p138203</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: win10 firefox send alt tab не работает]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=138202#p138202</link>
			<description><![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>]]></description>
			<author><![CDATA[null@example.com (OmTatSat)]]></author>
			<pubDate>Mon, 02 Mar 2020 06:11:41 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=138202#p138202</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: win10 firefox send alt tab не работает]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=138196#p138196</link>
			<description><![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>]]></description>
			<author><![CDATA[null@example.com (OmTatSat)]]></author>
			<pubDate>Sun, 01 Mar 2020 21:30:07 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=138196#p138196</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: win10 firefox send alt tab не работает]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=138195#p138195</link>
			<description><![CDATA[<p>Лучше так:<br /></p><div class="codebox"><pre><code>~LButton &amp; XButton2::AltTab</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Sun, 01 Mar 2020 19:49:24 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=138195#p138195</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: win10 firefox send alt tab не работает]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=138194#p138194</link>
			<description><![CDATA[<p>У меня везде работает так:<br /></p><div class="codebox"><pre><code>~LButton &amp; XButton2::Send {Alt down}{tab}</code></pre></div><p>Только в этом случае Alt остаётся нажатым, потом нужно отжать его каким-либо способом.</p>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Sun, 01 Mar 2020 19:37:19 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=138194#p138194</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: win10 firefox send alt tab не работает]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=138193#p138193</link>
			<description><![CDATA[<div class="quotebox"><cite>teadrinker пишет:</cite><blockquote><p>А какого эффекта вы хотите добиться?</p></blockquote></div><p>Открыть ahk_class MultitaskingViewFrame</p>]]></description>
			<author><![CDATA[null@example.com (OmTatSat)]]></author>
			<pubDate>Sun, 01 Mar 2020 19:17:41 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=138193#p138193</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: win10 firefox send alt tab не работает]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=138192#p138192</link>
			<description><![CDATA[<p>А какого эффекта вы хотите добиться?<br /></p><div class="codebox"><pre><code>~LButton &amp; XButton2::Send {Alt down}{tab}{Alt Up}</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Sun, 01 Mar 2020 19:13:57 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=138192#p138192</guid>
		</item>
		<item>
			<title><![CDATA[AHK: win10 firefox send alt tab не работает]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=138186#p138186</link>
			<description><![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>]]></description>
			<author><![CDATA[null@example.com (OmTatSat)]]></author>
			<pubDate>Sun, 01 Mar 2020 16:30:20 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=138186#p138186</guid>
		</item>
	</channel>
</rss>
