2013-04-29 66 views
0
^!a: 
run do 
run lots 
run of 
run things 
return 

^!b: 
run dosomething small 
; --- and here I want to do everything that is done for ^!a 

我能想到的做它的兩大理論方法之一AutoHotkey的:1。通過某種方式調用代碼2.通過生成^點擊!我覺得第一名更好,但是如果可以的話,怎麼做呢?調用從另一個

回答

0

向標籤添加標籤。

^!a: 
RunA: 
run do 
run lots 
run of 
run things 
return 

^!b: 
run dosomething small 
GoSub, RunA 
Return 
+0

謝謝,正在尋找這個 – shealtiel 2013-04-29 16:30:01