Search found 9 matches

by Technomage Awunes
27 May 2023, 10:18
Forum: Editors
Topic: Insert AHK Command/Function Parameters (with Search/Auto-Complete)
Replies: 15
Views: 20769

Re: Insert AHK Command/Function Parameters (with Search/Auto-Complete)

It's funny you suggest this: You could even give it a NP++ icon and similar name (Notepad+++ ?) so that it looks visually like you’re opening NP++. I made a script after seeing my son's discord post of an Alien virus that says it's technology isn't able to do anything but if you'd be so kind as to d...
by Technomage Awunes
15 Aug 2022, 04:16
Forum: Scripts and Functions (v1)
Topic: Eject() : For Removable storage devices
Replies: 67
Views: 40566

Re: Eject() : For Removable storage devices

I'm attempting to eject a drive but it only seems to work when the script is not compiled. here's the result of the message box you would like for the test... Note I modified it a little to show both the drive letter and the "MediaType". MsgBox % Clipboard := "drive letter " A_ScriptDir " is " Eject...
by Technomage Awunes
12 Nov 2021, 05:21
Forum: Ask for Help (v1)
Topic: If few specified (kinda) windows not exist. Topic is solved
Replies: 12
Views: 1153

Re: If few specified (kinda) windows not exist. Topic is solved

Also the following would make it true if any of them exist*:

Code: Select all

If !WinExist(1) || !WinExist(2) || !WinExist(3)
*I think

I am sort of nub still
by Technomage Awunes
12 Nov 2021, 04:40
Forum: Scripts and Functions (v1)
Topic: AutoHotFlow - Simply draw your applications
Replies: 72
Views: 50670

Re: AutoHotFlow - Simply draw your applications

Scroll to the top, look on the right side... the link will take you here: https://github.com/bichlepa/AutoHotFlow/releases Or follow the Download page link from the first post of this topic: https://www.autohotkey.com/boards/viewtopic.php?f=6&t=6399#p38174 Thanks for that. I missed the download lin...
by Technomage Awunes
12 Nov 2021, 04:04
Forum: Scripts and Functions (v1)
Topic: AutoHotFlow - Simply draw your applications
Replies: 72
Views: 50670

Re: AutoHotFlow - Simply draw your applications

I'm attempting to get this from your github but it only says the following https://github.com/bichlepa/AutoHotFlow#how-to-install-and-use Go the the Relases section and download the installer of the current version. If you only want to use AutoHotFlow, it's not recommended to clone this repository. ...
by Technomage Awunes
11 Nov 2021, 13:09
Forum: Ask for Help (v1)
Topic: How to change AutoHotKey default editor in Win10 Topic is solved
Replies: 5
Views: 4560

Re: How to change AutoHotKey default editor in Win10 Topic is solved

Here's a little script I improved from the archived forums about the same issue (not necessarily windows 10) hope it helps someone :) If not A_IsAdmin{ Run *RunAs "%A_ScriptFullPath%" ; causes script to reload and be run as admin } #SingleInstance, Force ; prevent's 2nd prompt to change the editor I...
by Technomage Awunes
29 Oct 2021, 07:52
Forum: Ask for Help (v1)
Topic: Best way to make ahk scripts run at start-up with admin rights? Topic is solved
Replies: 19
Views: 33261

Re: Best way to make ahk scripts run at start-up with admin rights? Topic is solved

Using Joe's method I had trouble with the #include command. You must not forget to fill the Start in (optional) field in the Edit Action dialog for everything to work correctly. If you don't mind the UAC prompt you can simply add the following at the start of your script as described by Lexikos her...
by Technomage Awunes
27 Oct 2021, 18:13
Forum: Adventure IDE
Topic: Show Explanation continuous
Replies: 3
Views: 3058

Re: Show Explanation continuous

I can't answer exactly but I'm guessing you'd like it to be similar to excel where you begin entering a formula and as you enter each part it shows what you need next? Also where are you seeing these "Explanations"? What app? That would be sooo helpful.
by Technomage Awunes
25 Oct 2021, 20:52
Forum: Ask for Help (v1)
Topic: (SOLVED) How to toggle the Icon for microphone listen state and the state itself?
Replies: 0
Views: 326

(SOLVED) How to toggle the Icon for microphone listen state and the state itself?

I found the base of the following script at this site: https://superuser.com/questions/695169/listen-to-device-autohotkey-need-advice-to-finish There are a couple questions in the comments I've put in it #SingleInstance ;#NoTrayIcon FileInstall, micOff.ico, micOff.ico FileInstall, micOn.ico, micOn.i...

Go to advanced search