connman Posted August 15 Share Posted August 15 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. Link to comment Share on other sites More sharing options...
ioa747 Posted August 15 Share Posted August 15 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 Link to comment Share on other sites More sharing options...
Developers Jos Posted August 15 Developers Share Posted August 15 1 hour ago, connman said: (is that a good decision?) 🙂 of course, but can't say we aren't biased. Festerini and Andreik 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. Link to comment Share on other sites More sharing options...
connman Posted August 23 Author Share Posted August 23 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. Link to comment Share on other sites More sharing options...
ioa747 Posted August 23 Share Posted August 23 (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 by ioa747 I know that I know nothing Link to comment Share on other sites More sharing options...
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