How to make remap Alt to Win button when there are Xbox Game key-bindings

0

I would like to bind my LAlt to LWin button. I have the AutoHotKey script:

LWin::LAlt

It works great except for a few key sentences: Win-r, Win-g, Win-b. They have their roots in Xbox Game application in Windows 10, but after I turned them off nothing changed and they still don't work. I have lost Win-r, Win-g, Win-b. Could you advise me how I can fix it?

UPDATE.

Fix my post.

Pfedj

Posted 2019-09-22T17:48:16.467

Reputation: 9

You are mapping your left-win key to left-alt, which is the opposite of what you describe. Please fix your post. – harrymc – 2019-09-22T19:51:31.267

From documentation The syntax for the built-in remapping feature is OriginKey::DestinationKey. For example, a script consisting only of the following line would make the A key behave like the B key: a::b

– Pfedj – 2019-09-29T12:11:56.140

No answers