I'm a little surprised at the response since Code Explorer has supported
AutoHotkey for many many years (since 2007 I think) but here goes.
Here is a small code sample:
#NoEnv
#SingleInstance Force
gui Margin,50,50
gui Add,Button,gButton1,Press Me
gui Show
return
GUIEscape:
GUIClose:
ExitApp
Button1:
x1:=MyFunc1(22)
x2:=MyFunc2(22)
MsgBox %x1%, %x2%
return
MyFunc1(p1)
{
Return p1+1
}
MyFunc2(p1)
{
Return p1+2
}
In the Code Explorer window, there should be references to the GUIEscape,
GUIClose, Button1 labels and to the MyFunc1 and MyFunc2 functions. This sample
does not include a class but according to the PSPad History page, "Code explorer
for Autohotkey - class support added".
Thank you for your assistance.
--
<https://forum.pspad.com/read.php?2,71336,71339>
PSPad freeware editor https://www.pspad.com