Apex-NoRecoil-2021 icon indicating copy to clipboard operation
Apex-NoRecoil-2021 copied to clipboard

Alt-Tabs Randomly

Open Karuneko opened this issue 2 years ago • 9 comments

In some occasions it alt-tabs out of APEX.

Already happened multiple times for me.

Karuneko avatar Nov 03 '22 07:11 Karuneko

Try alt-tabs out of the game, see what it does, its not a bug of the software.

QASDJKL5 avatar Nov 03 '22 09:11 QASDJKL5

What do you mean by this??

It randomly alt-tabs OUT of the game sometimes in use.

Karuneko avatar Nov 03 '22 10:11 Karuneko

sorry, i'm not a native english speaker. my english is not that good. I mean alt-tab is a function of windows. by using it, you could switch between softwares. You had other softwares on when you were playing apex, by using alt-tab, you switched to an another software window, so you were out of APEX. If you want to avoid this, try not pushing these two buttons at the same time.

QASDJKL5 avatar Nov 03 '22 12:11 QASDJKL5

If a message pop-up happens from another windows application while in full-screen, it will change applications to the application doing the pop-up message... I think AHK is giving a pop-up and making apex minimize; I think the 0-button is maybe the cause. It is not like someone is actually pressing ALT+TAB to switch or minimize apex. Removing pop-up messages from code is my guess, but again, I am not 100% certain.

On Thu, Nov 3, 2022 at 7:33 AM QASDJKL5 @.***> wrote:

sorry, i'm not a native english speaker. my english is not that good. I mean alt-tab is a function of windows. by using it, you could switch between softwares. You had other softwares on when you were playing apex, by using alt-tab, you switched to an another software window, so you were out of APEX. If you want to avoid this, try not pushing these two buttons at the same time.

— Reply to this email directly, view it on GitHub https://github.com/mgsweet/Apex-NoRecoil-2021/issues/178#issuecomment-1302032217, or unsubscribe https://github.com/notifications/unsubscribe-auth/AXJUWMOBVROZ3X2DP5QIEADWGOWJXANCNFSM6AAAAAARV3LNOM . You are receiving this because you are subscribed to this thread.Message ID: @.***>

BamaBinBombin avatar Nov 03 '22 12:11 BamaBinBombin

sorry, i'm not a native english speaker. my english is not that good. I mean alt-tab is a function of windows. by using it, you could switch between softwares. You had other softwares on when you were playing apex, by using alt-tab, you switched to an another software window, so you were out of APEX. If you want to avoid this, try not pushing these two buttons at the same time.

Your english is good. Yes it is a windows function but I am not pressing the buttons, My Alt key is for the Survival Item (Heat Shield / Mobi). Sometimes most frequently it switches to the desktop (Windows Key + D). Especially in intense fights (frequently) it will randomly put me into another software (Chrome, Spotify, i.e) without pressing both buttons (Alt+Tab and/or Windows+D).

If a message pop-up happens from another windows application while in full-screen, it will change applications to the application doing the pop-up message... I think AHK is giving a pop-up and making apex minimize; I think the 0-button is maybe the cause. It is not like someone is actually pressing ALT+TAB to switch or minimize apex. Removing pop-up messages from code is my guess, but again, I am not 100% certain.

I will look into it, the only things that are open when I play is Steam and Discord, It could maybe be discord notifications but I do not hear the ping and no banner thing appears on the desktop mode where it usually switches to. It can be security notifications but still, no banner or the sound of the notification. Just in desktop randomly. I will turn off notifications all together to test.

If it is from the code I do not know what to change nor how to make the debug sound the woman (lol), Kindly let me know in simple terms what might it be. Much Appreciated.

Karuneko avatar Nov 03 '22 14:11 Karuneko

" Tooltip("has_gold_optics: " + has_gold_optics)"

Again, not certain, but this may be the line causing the issue.

On Thu, Nov 3, 2022 at 9:37 AM Karuneko @.***> wrote:

sorry, i'm not a native english speaker. my english is not that good. I mean alt-tab is a function of windows. by using it, you could switch between softwares. You had other softwares on when you were playing apex, by using alt-tab, you switched to an another software window, so you were out of APEX. If you want to avoid this, try not pushing these two buttons at the same time.

Your english is good. Yes it is a windows function but I am not pressing the buttons, My Alt key is for the Survival Item (Heat Shield / Mobi). Sometimes most frequently it switches to the desktop (Windows Key + D). Especially in intense fights (frequently) it will randomly put me into another software (Chrome, Spotify, i.e) without pressing both buttons (Alt+Tab and/or Windows+D).

If a message pop-up happens from another windows application while in full-screen, it will change applications to the application doing the pop-up message... I think AHK is giving a pop-up and making apex minimize; I think the 0-button is maybe the cause. It is not like someone is actually pressing ALT+TAB to switch or minimize apex. Removing pop-up messages from code is my guess, but again, I am not 100% certain.

I will look into it, the only things that are open when I play is Steam and Discord, It could maybe be discord notifications but I do not hear the ping and no banner thing appears on the desktop mode where it usually switches to. It can be security notifications but still, no banner or the sound of the notification. Just in desktop randomly. I will turn off notifications all together to test.

If it is from the code I do not know what to change nor how to make the debug sound the woman (lol), Kindly let me know in simple terms what might it be. Much Appreciated.

— Reply to this email directly, view it on GitHub https://github.com/mgsweet/Apex-NoRecoil-2021/issues/178#issuecomment-1302211259, or unsubscribe https://github.com/notifications/unsubscribe-auth/AXJUWMI2JWNCVB3SFA3AXCLWGPEY7ANCNFSM6AAAAAARV3LNOM . You are receiving this because you commented.Message ID: @.***>

BamaBinBombin avatar Nov 03 '22 18:11 BamaBinBombin

Yes, this should be for the gold optics debugging. You can wrap it with

if (debug) {
Tooltip("has_gold_optics: " + has_gold_optics)
}

Kazemiro avatar Nov 04 '22 00:11 Kazemiro

What does this do exactly? @Kazemiro

if (debug) {
Tooltip("has_gold_optics: " + has_gold_optics)
}

Senixisded avatar Nov 04 '22 12:11 Senixisded

@Senixisded when you press 0 on the keyboard, the fame will minimise and you will see a small message in the middle of the screen saying “has_gold_optics: 1”. This message is for debugging purpose. @BamaBinBombin mention that this is caused by the following line in the AHK script:

" Tooltip("has_gold_optics: " + has_gold_optics)" Again, not certain, but this may be the line causing the issue.

So, the code i mentioned is to display the message only if you start the ahk with the debug option.

Kazemiro avatar Nov 04 '22 15:11 Kazemiro