Typing % in message.

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
ExcelHotKeys
Posts: 41
Joined: 21 Dec 2020, 10:27

Typing % in message.

Post by ExcelHotKeys » 16 Aug 2022, 16:25

Hi guys,

I want to type % in a message like
#1::Send xxxx%x
The script is not letting me.
How do I fix it?

Thanks,
Last edited by ExcelHotKeys on 16 Aug 2022, 16:26, edited 1 time in total.

gregster
Posts: 9001
Joined: 30 Sep 2013, 06:48

Re: Typing % in message.

Post by gregster » 16 Aug 2022, 16:38

Escape the %:

Code: Select all

#1::Send xxxx`%x		; or  Send {text}xxxx`%x  - text mode works better in some environments

ExcelHotKeys
Posts: 41
Joined: 21 Dec 2020, 10:27

Re: Typing % in message.

Post by ExcelHotKeys » 17 Aug 2022, 05:31

gregster wrote:
16 Aug 2022, 16:38
Escape the %:

Code: Select all

#1::Send xxxx`%x		; or  Send {text}xxxx`%x  - text mode works better in some environments
Thanks so much for taking the time to answer this question. You made the world better :). You don't know how important this is to me. Saved me at least hours of headache and helplessness. I would've given you real money reward had it been in real person. Have a wonderful day :).

Post Reply

Return to “Ask for Help (v1)”