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('email1@company.com', EmailHander) | |
| company.Add('email2@company.com', EmailHander) | |
| company.Add('email3@company.com', EmailHander) | |
| company.Add('email4@company.com', EmailHander) | |
| company.Add('email5@company.com', EmailHander) | |
| emails := Menu() | |
| emails.Add('email1@personal.com', EmailHander) | |
| emails.Add('email2@personal.com', EmailHander) | |
| emails.Add('email3@personal.com', EmailHander) | |
| emails.Add('email4@personal.com', EmailHander) | |
| emails.Add('email5@personal.com', 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

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.