repeating code?

Get help with using AutoHotkey (v2 or newer) and its commands and hotkeys
justha
Posts: 7
Joined: 09 May 2024, 08:56

repeating code?

Post by justha » 20 May 2024, 07:03

Code: Select all

;; XL GUIDE
2::
{
    Send "xl{Enter}"
}

------------

;;Dimension
X::
{
    Send "dimline{Enter}"
}
--------------

;;Trim / Extend
E::
{
    Send "TR{Enter}"
}

RESULTS...

l
dimlin
TR

can someone help me fix this, how to prevent it from activating another hotkey ?

thank you

[Mod edit: Added [code][/code] tags. Please use them yourself when posting code!]
gregster
Posts: 9096
Joined: 30 Sep 2013, 06:48

Re: repeating code?

Post by gregster » 20 May 2024, 07:15

Add the $ modifier: https://www.autohotkey.com/docs/v2/Hotkeys.htm#Symbols

btw, please use code tags when posting code. Thank you!
Post Reply

Return to “Ask for Help (v2)”