connman Posted August 15, 2024 Posted August 15, 2024 I'm the definition of Non-techie. I'm trying to move over from AutoHotKeys (is that a good decision?). Anyway, I would like help on: I guess I'm trying to use Notepad for some very simple Content and Entry. Example: My l_o_n_g Email Address. I guess I don't have the correct code(?), how to deploy the File(?), and it's generally not working(probably user error). I seem to have set up a lot of AutoHotKeys with "single keystroke/letter" commands. I need to know if I can use "two-keystroke/letter" commands so I can expand how many Autoit Files I can use. Thank you in advance.
ioa747 Posted August 15, 2024 Posted August 15, 2024 Take a look https://www.autoitscript.com/autoit3/docs/functions/HotKeySet.htm https://www.autoitscript.com/forum/topic/206698-hotstring-20-hot-keys-with-strings/ to forum I know that I know nothing
Developers Jos Posted August 15, 2024 Developers Posted August 15, 2024 1 hour ago, connman said: (is that a good decision?) 🙂 of course, but can't say we aren't biased.  Andreik and Festerini 1 1 SciTE4AutoIt3 Full installer Download page  - Beta files    Read before posting   How to post scriptsource   Forum etiquette Forum Rules  Live for the present, Dream of the future, Learn from the past.Â
connman Posted August 23, 2024 Author Posted August 23, 2024 Hi ioa747, OK, I'm really a "novice/Non-techie". Perhaps you/someone can just give me the code/string for Autoit Scripts and I can alter what I need with that for my other Autoit Scripts? Also, the reason I came over to Autoit, I also need a "two-key" command so I can have enough other Autoit Scripts for what I need. Here is an example of what I have with AutoHotkeys (First line command: Control Key/Letter "t"😞 ^t:: Send, Attn: To whom it may concern,  Again, any help is dee[ply appreciated.
ioa747 Posted August 23, 2024 Posted August 23, 2024 (edited) HotKeySet("^t", "k_Attn") While 1 Sleep(100) WEnd ;------------------------------------------------ Func k_Attn() Send("Attn: To whom it may concern,") EndFunc ;==>k_Attn ;------------------------------------------------ Â Edited August 23, 2024 by ioa747 I know that I know nothing
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now