Jump to content

AutoHotKey script

Could somone post an AutoHotKey script to, replace my Insert key with the right click menu button.

Thank you.

Link to comment
Share on other sites

Link to post
Share on other sites

What is the 'right click menu button'? Do you simply mean right click?

If so:

// Wait for 'Insert' button.
Insert::
{
	// Do stuff here.
    MouseClick, right
}

 

I have not tried this code, but that is basically what it should do. 

This code will right click at the position your mouse is at now. So that is something you might want to do differently? At the moment this code basically replaces your Insert button to be right click.

"We're all in this together, might as well be friends" Tom, Toonami.

 

mini eLiXiVy: my open source 65% mechanical PCB, a build log, PCB anatomy and discussing open source licenses: https://linustechtips.com/topic/1366493-elixivy-a-65-mechanical-keyboard-build-log-pcb-anatomy-and-how-i-open-sourced-this-project/

 

mini_cardboard: a 4% keyboard build log and how keyboards workhttps://linustechtips.com/topic/1328547-mini_cardboard-a-4-keyboard-build-log-and-how-keyboards-work/

Link to comment
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×