Skip to content

Instantly share code, notes, and snippets.

@RaptorX
Created November 9, 2025 23:38
Show Gist options
  • Select an option

  • Save RaptorX/eb0b7c730db02ceee99fdada9f063df0 to your computer and use it in GitHub Desktop.

Select an option

Save RaptorX/eb0b7c730db02ceee99fdada9f063df0 to your computer and use it in GitHub Desktop.
Reply to @PuchoWebSolutions
#Requires AutoHotkey v2.0
company := Menu()
company.Add('[email protected]', EmailHander)
company.Add('[email protected]', EmailHander)
company.Add('[email protected]', EmailHander)
company.Add('[email protected]', EmailHander)
company.Add('[email protected]', EmailHander)
emails := Menu()
emails.Add('[email protected]', EmailHander)
emails.Add('[email protected]', EmailHander)
emails.Add('[email protected]', EmailHander)
emails.Add('[email protected]', EmailHander)
emails.Add('[email protected]', EmailHander)
emails.Add()
emails.Add('Company Emails', company)
:X:.emls::Sleep(100), emails.Show()
F1::emails.Show()
EmailHander(email, *) => SendText(email)
@anthonyalvarez
Copy link

anthonyalvarez commented Nov 11, 2025

Happy Monday! Thank you so much tor this. What is the procedure to configure Scite4autohotkey Version 3.0.06.01 to run AHK v2 scripts? Your code works perfectly in AHK Toolkit using Unicode v2 option, however.

@RaptorX
Copy link
Author

RaptorX commented Nov 14, 2025

image

You have to click the Set current platform button.

But for that to work you have to have Scite in the correct folder (where autohotkey is installed) or modify the properties file to point to where autohotkey is installed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment