need help finding editing program

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
oliveboy123
Posts: 41
Joined: 25 May 2020, 06:31

need help finding editing program

17 Jun 2020, 08:37

I'm wondering if there is a program that allows for you to edit the code and then run it without going to the desktop icon
User avatar
Smile_
Posts: 858
Joined: 03 May 2020, 00:51

Re: need help finding editing program

17 Jun 2020, 08:43

What kind of code? and what desktop icon?
gregster
Posts: 9002
Joined: 30 Sep 2013, 06:48

Re: need help finding editing program

17 Jun 2020, 08:44

There are a number of editors which allow to run AHK scripts from the editor (some you might need to set up for it), and also debugging. Have a look here: https://www.autohotkey.com/boards/viewforum.php?f=60
CodeQuickTester by GeekDude is great for quickly testing AHK snippets, without having to worry about saving the code.
mshafer1
Posts: 54
Joined: 16 Jul 2017, 14:49
Contact:

Re: need help finding editing program

17 Jun 2020, 08:55

I think what you're asking for is a script manager - I've seen a couple come across the forums, try doing a search.

One example:
https://autohotkey.com/board/topic/64156-script-manager/
mshafer1
Posts: 54
Joined: 16 Jul 2017, 14:49
Contact:

Re: need help finding editing program

17 Jun 2020, 09:00

Otherwise, if you want to put hotkeys into your script to launch an editor and re-load the code, it might look something like this (untested)

Code: Select all

^RButton::
    ; run Notepad passing this script to edit
    Run, notepad %A_ScriptFullPath%
    Return

^+RButton::
   ; Tell Windows to run this script (causes a reload)
   Run, %A_ScriptFullPath%
   Return
User avatar
boiler
Posts: 16931
Joined: 21 Dec 2014, 02:44

Re: need help finding editing program

17 Jun 2020, 09:17

Smile_ wrote:
17 Jun 2020, 08:43
What kind of code? and what desktop icon?
AHK code. AHK script icon.
User avatar
boiler
Posts: 16931
Joined: 21 Dec 2014, 02:44

Re: need help finding editing program

17 Jun 2020, 09:19

mshafer1 wrote:
17 Jun 2020, 08:55
I think what you're asking for is a script manager
It would seem that gregster's interpretation of his request is correct.

Return to “Ask for Help (v1)”

Who is online

Users browsing this forum: No registered users and 281 guests