Created
November 9, 2025 23:38
-
-
Save RaptorX/eb0b7c730db02ceee99fdada9f063df0 to your computer and use it in GitHub Desktop.
Reply to @PuchoWebSolutions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #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) |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You have to click the
Set current platformbutton.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.