Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
686 views
in Technique[技术] by (71.8m points)

autohotkey - Is there a way to create a variable in a funtion

Is there a way to create a variable in the funtion making the funtion abell to save more than just 5 different chords and then saving the variables for later use

; #Warn  ; Enable warnings to assist with detecting common errors.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.

CoordMode, Mouse, Screen

VarMousePosx1 =  
VarMousePosy1 =  

VarMousePosx2 =  
VarMousePosy2 =  

VarMousePosx3 =  
VarMousePosy3 =  

VarMousePosx4 =  
VarMousePosy4 =  

VarMousePosx5 =  
VarMousePosy5 =  

MouseChordSaver(X,Y)
{

KeyWait LButton , D

    MouseGetPos,X, Y
    
msgbox, %X% %Y%

}

MouseChordSaver(VarMousePosx1, VarMousePosy1) 
question from:https://stackoverflow.com/questions/65648671/is-there-a-way-to-create-a-variable-in-a-funtion

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...