Tab Character in Gmail

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
RefBob
Posts: 4
Joined: 01 Dec 2021, 11:33

Tab Character in Gmail

Post by RefBob » 01 Dec 2021, 11:42

I am totally new to AHK. I've poked around and searched the forums, but I haven't found an answer yet.

Gmail does not support inserting [Tab] into a message. You can do it by using ASCII code 009 but my current computer doesn't make that easy (or even possible). (You have to use Num Lock to activate the imbedded number pad, then hold down ALT while typing 009. This computer doesn't have the number pad option or Num Lock and I can't get it to work with my USB number pad.)

So, how do I use AHK to send an ASCII code in a gmail message so that it inserts a tab character?

Thanks,

Bob

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

Re: Tab Character in Gmail

Post by mikeyww » 01 Dec 2021, 17:51

Code: Select all

#IfWinActive ahk_class Chrome_WidgetWin_1
F3::Send {ASC 009}
#IfWinActive

RefBob
Posts: 4
Joined: 01 Dec 2021, 11:33

Re: Tab Character in Gmail

Post by RefBob » 03 Dec 2021, 09:58

That works!

Many thanks.

Post Reply

Return to “Ask for Help (v1)”