Need help remapping two shortcuts

Get help with using AutoHotkey (v2 or newer) and its commands and hotkeys
depakjan
Posts: 3
Joined: 01 Apr 2023, 09:30

Need help remapping two shortcuts

Post by depakjan » 01 Apr 2023, 11:34

Hi All,
I have recently purchased a Wechip W3 Air Mouse to use with my PC, it works great but i have two issues with it for which i need help in creating a script

https://www.amazon.com/WeChip-W3-Wireless-Control-Projector/dp/B09XMF5YN1?th=1

This air mouse does not a tab key and there is no right click button as well for some weird reason.

So i need a ahk script for following actions

1. Remap ALT + TAB to ALT + Backspace or ALT + DEL or ALT + ALTGr or Alt + Caps

2. Remap Browser Back button to Right click of mous

User avatar
mikeyww
Posts: 26935
Joined: 09 Sep 2014, 18:38

Re: Need help remapping two shortcuts

Post by mikeyww » 01 Apr 2023, 13:36

Welcome to this AutoHotkey forum!

Code: Select all

#Requires AutoHotkey v2.0
!Tab::Send '!{BS}'
!Left::Click 'R' ; Or can try Browser_Back as the hotkey

depakjan
Posts: 3
Joined: 01 Apr 2023, 09:30

Re: Need help remapping two shortcuts

Post by depakjan » 02 Apr 2023, 06:04

Thanks, but this does not work , i have tried using PowerToys keymapper even that does not work, have no clue why, not sure what else i can try

depakjan
Posts: 3
Joined: 01 Apr 2023, 09:30

Re: Need help remapping two shortcuts

Post by depakjan » 02 Apr 2023, 06:42

Actually i wrote a very simple script reading the guide

AppsKey::AltTabMenu
Browser_Back::RButton

above works great for me but 1 problem is after the alttabmenu , i have to press Alt again to release Alt

User avatar
mikeyww
Posts: 26935
Joined: 09 Sep 2014, 18:38

Re: Need help remapping two shortcuts

Post by mikeyww » 02 Apr 2023, 07:14

It worked when I tested it, so perhaps others can help with your issue here.

Post Reply

Return to “Ask for Help (v2)”