TaranVH / 2nd-keyboard

ALL of Taran's scripts - not just for the 2nd keyboard.
https://www.youtube.com/watch?v=O6ERELse_QY
1.66k stars 534 forks source link

Alt_menu_acceleration_DISABLER not working #108

Open quickreactor opened 4 years ago

quickreactor commented 4 years ago

I have disabled game bar and NVIDIA Broadcast Live but it still triggers menu acccelration in Premiere.

TaranVH commented 4 years ago

That's annoying. Quit all other AHK scripts, and then try this code instead, and let me know what happens:

~LAlt::Send {Blind}{vk07} return

;(i don't think you need the "return," but just have it there anyway)

quickreactor commented 4 years ago

Tried that, still no dice. I've closed everything I can find - I'm sure theres some sneaky culprit I'm missing. It's definitely sending the key, but it still highlights and activates the menus as well.

quickreactor commented 4 years ago

Just to be clear, it's just that code that you need?

TaranVH commented 4 years ago

welllllllllllll....

Try to use all or some of this code. The keyboard HOOK is probably the most important consideration:

InstallKeybdHook

NoEnv

;#NoTrayIcon ;comment this in if you do not want a tray icon.

SingleInstance

MaxHotkeysPerInterval 2000

Process, Priority, , H SendMode Input

SingleInstance force

;These next two lines are very important. You have to change the "menu mask key" away from being CTRL, to something that won't result in cross-talk. Read this thread to learn the details: https://autohotkey.com/boards/viewtopic.php?f=76&t=57683

MenuMaskKey vk07 ; vk07 is unassigned.

UseHook

On Wed, Mar 18, 2020 at 12:37 AM quickreactor notifications@github.com wrote:

Just to be clear, it's just that code that you need?

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/TaranVH/2nd-keyboard/issues/108#issuecomment-600469156, or unsubscribe https://github.com/notifications/unsubscribe-auth/AD2MGX6CAXKMBDYVCPNK2MLRIB23BANCNFSM4LM2XJYQ .

TaranVH commented 4 years ago

also, try the test i did in the video. turn off all scripts. open premiere. In the shortcuts panel, make sure no command is assigned to F12. press and HOLD alt. then press F12. then release alt. then press F. The menu should NOT open. If it does, you're hooped, and the script will never work.

https://www.youtube.com/watch?v=vRld4bVFrpU

On Wed, Mar 18, 2020 at 12:37 AM quickreactor notifications@github.com wrote:

Just to be clear, it's just that code that you need?

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/TaranVH/2nd-keyboard/issues/108#issuecomment-600469156, or unsubscribe https://github.com/notifications/unsubscribe-auth/AD2MGX6CAXKMBDYVCPNK2MLRIB23BANCNFSM4LM2XJYQ .