खोज…


टिप्पणियों

AutoHotkey संस्करण 1.1.20 तक लेबल पर बहुत अधिक भरोसा करता था। यह लेबल पर निर्भरता बहुत गंभीर नुकसान था। मुख्य रूप से लेबल जो आमतौर पर वैश्विक दायरे में निष्पादित होते हैं, जिसका अर्थ है कि लेबल के भीतर परिभाषित कोई भी वैरिएबल विश्व स्तर पर उपलब्ध होगा। यह तब तक बहुत अच्छा लगता है जब तक आपको एहसास न हो कि उदाहरण के लिए आप अन्य लोगों के पुस्तकालयों का उपयोग नहीं कर सकते, बिना यह सुनिश्चित किए कि उनके चर आपके साथ हस्तक्षेप नहीं करते हैं।
जब आवश्यक नहीं है तो वैश्विक दायरे में काम करना केवल बुरा व्यवहार है।

तो यह वह जगह है जहाँ फ़ंक्शन आते हैं। संस्करण 1.1.20 के अनुसार, प्रत्येक AutoHotkey कमांड जो लेबल-नाम को एक पैरामीटर के रूप में स्वीकार करता है, अब वैकल्पिक रूप से एक फ़ंक्शन-नाम स्वीकार करता है।

SetTimer पर फ़ंक्शन उपयोग का बहुत मूल उदाहरण प्रदर्शित करता है।

;Sends the keystroke for the letter "a" every 3 seconds.
#Persistent
SetTimer, SendLetterA, 3000
return

SendLetterA() {
    Send, a
}

सेटटीमर का उन्नत उपयोग: विभिन्न मापदंडों के साथ एक ही फ़ंक्शन को कॉल करना

यह उस चीज का एक उदाहरण है जो लेबल के साथ सीधे असंभव हो जाएगा। यदि आप एक ही समय में एक ही लेबल को कई बार निष्पादित करते हैं और वे उन चरों पर निर्भर करते हैं जो उनके भीतर परिभाषित किए जा रहे हैं, तो वे बहुत संभव हस्तक्षेप करते हैं और अप्रत्याशित व्यवहार का कारण बनते हैं।

यहां बताया गया है कि इसे कार्यों के साथ कैसे करें:

; This script will switch between showing "Hello 1" and "Hello 2"

#Persistent
DisplayMessage_Hello1 := Func("DisplayMessage").bind("Hello 1")
SetTimer, %DisplayMessage_Hello1%, 2000

Sleep, 1000

DisplayMessage_Hello2 := Func("DisplayMessage").bind("Hello 2")
SetTimer, %DisplayMessage_Hello2%, 2000

DisplayMessage(messageToDisplay) {
    TrayTip ; remove other traytips
    TrayTip, Message to display:, %messageToDisplay%
}

यहाँ है कि यह कैसे नहीं करना है (लेबल के साथ):

;This script will never display the message "Hello 1". It will always show "Hello 2".

#Persistent
messageToDisplay := "Hello 1"
SetTimer, DisplayMessage, 2000

Sleep, 1000

messageToDisplay := "Hello 2"
SetTimer, DisplayMessage, 2000

DisplayMessage:
    TrayTip ; remove other traytips
    TrayTip, Message to display:, %messageToDisplay%
Return

लेबल के बजाय कार्यों के साथ गुई

उदाहरण दिखा रहा है कि लेबल के बजाय फ़ंक्शन का उपयोग करके Guis कैसे बनाएं।

Gui, Add, Button, gCtrlEvent vButton1, Button 1
Gui, Add, Button, gCtrlEvent vButton2, Button 2
Gui, Add, Button, gGoButton, Go Button
Gui, Add, Edit, vEditField, Example text
Gui, Show,, Functions instead of labels

CtrlEvent(CtrlHwnd:=0, GuiEvent:="", EventInfo:="", ErrLvl:="") {
    GuiControlGet, controlName, Name, %CtrlHwnd%
    MsgBox, %controlName% has been clicked!
}
GoButton(CtrlHwnd:=0, GuiEvent:="", EventInfo:="", ErrLvl:="") {
    GuiControlGet, EditField
    MsgBox, Go has been clicked! The content of the edit field is "%EditField%"!
}

GuiClose(hWnd) {
    WinGetTitle, windowTitle, ahk_id %hWnd%
    MsgBox, The Gui with title "%windowTitle%" has been closed!
    ExitApp
}

लेबल के बजाय फ़ंक्शंस के साथ हॉटकीज़

हॉटकी के साथ कार्यों का उपयोग करने के उदाहरण:

Hotkey, a, MyFunction ; Calls MyFunction() when a is pressed

MyFunction() {
    MsgBox You pressed %A_ThisHotkey%.
}

या:

a::MyFunction()

MyFunction() {
    MsgBox You pressed %A_ThisHotkey%.
}

कार्यों के साथ ट्रे मेनू क्रियाएं

#Persistent

Menu, Tray, NoStandard ; remove default tray menu entries
Menu, Tray, Add, MyDefaultAction, OnDefaultTrayAction ; add a new tray menu entry
Menu, Tray, Add, Exit, Exit ; add another tray menu entry
Menu, Tray, Default, MyDefaultAction ;When doubleclicking the tray icon, run the tray menu entry called "MyDefaultAction".


OnDefaultTrayAction() {
    MsgBox, You double clicked the tray icon of this script or you clicked the MyDefaultAction entry!
}

Exit() {
    MsgBox, You clicked the Exit entry! The script will close itself now.
    ExitApp
}

कार्यों बनाम लेबल का सामान्य उदाहरण

मैं लेबल + गोसब का उपयोग करके कार्यों के उपयोग के मूल उपयोग को प्रदर्शित करूँगा।
इस उदाहरण में हम दो नंबर जोड़ने और उन्हें एक चर में संग्रहीत करने के लिए सरल कार्यक्षमता लागू करेंगे।

कार्यों के साथ:

c := Add(3, 2) ; function call
MsgBox, Result: %c%

Add(a, b) { ; This is a function. Put it wherever you want, it doesn't matter.
    ; the a and b inside of this function are set by the function call above
    Return a+b ; the function will return the result of the expression "a+b"
}

लेबल के साथ (कृपया ऐसा न करें):

a := 3 
b := 2 
GoSub, Add ; execute the label "Add" then jump back to the next line here
MsgBox, Result: %c%
Return ; without this, the label would be executed again for no reason.

Add: ; This is a label. Please put them at the bottom of your script and use "Return" in a line above.
    c := a+b
Return

Fucntion / लेबल के साथ OnClipboardChange

निम्नलिखित कोड वह आधिकारिक ऑटोहॉटकी प्रलेखन से लिया गया है:

समारोह कार्यान्वयन:

#Persistent
OnClipboardChange("ClipChanged")
return

ClipChanged(Type) {
    ToolTip Clipboard data type: %Type%
    Sleep 1000
    ToolTip  ; Turn off the tip.
}

लेबल कार्यान्वयन:

#Persistent
return

OnClipboardChange:
ToolTip Clipboard data type: %A_EventInfo%
Sleep 1000
ToolTip  ; Turn off the tip.
return

एक ही इवेंट कॉलबैक फ़ंक्शन का उपयोग करके कई सूचियों के साथ अधिक जटिल गुई उदाहरण

यह स्क्रिप्ट दर्शाता है कि एक ही इवेंट कॉलबैक फ़ंक्शन में विभिन्न नियंत्रणों से जटिल GUI इवेंट कैसे प्राप्त करें। हम इसके लिए दो सूची दृश्य नियंत्रणों का उपयोग करेंगे।
अब हर बार उन सूची दृश्य नियंत्रणों में से किसी एक पर कार्रवाई की जाती है, हम चाहते हैं कि जो हुआ उसका सटीक विवरण और उसी GUI में संपादन नियंत्रण में लॉग इन किया है।

Gui, Add, ListView, gListCtrlEvent vMyFirstListView AltSubmit -ReadOnly R10 w310, ColumnTitle1|ColumnTitle2|ColumnTitle3
Gui, Add, ListView, gListCtrlEvent vMySecondListView AltSubmit -ReadOnly R10 w310, ColumnTitle1|ColumnTitle2|ColumnTitle3
Gui, Add, Text, w310, Action Log
Gui, Add, Edit, vLog R7 w310, 
Gui, Show,, Functions instead of labels

; Create example entries for the first ListView
Gui, ListView, MyFirstListView
Loop, 10 {
    LV_Add("", "Column-1 | Row-" A_Index ,  "Column-2 | Row-" A_Index,  "Column-3 | Row-" A_Index)
}
LV_ModifyCol()

; Create example entries for the second ListView
Gui, ListView, MySecondListView
Loop, 10 {
    LV_Add("", "Column-1 | Row-" A_Index ,  "Column-2 | Row-" A_Index,  "Column-3 | Row-" A_Index)
}
LV_ModifyCol()


ListCtrlEvent(ctrlHwnd:=0, guiEvent:="", eventInfo:="", errLvl:="") {
    GuiControlGet, ctrlName, Name, %CtrlHwnd%
    whatHappened := "Action detected!`n"
    whatHappened .= "Control handle: " ctrlHwnd "`n"
    whatHappened .= "Control name: " ctrlName "`n"
    
    If (guiEvent = "DoubleClick") {
        whatHappened .= "`nThe user has double-clicked within the control."
        whatHappened .= "`n> Focused row number: " eventInfo
    } Else If (guiEvent = "R") {
        whatHappened .= "`nThe user has double-right-clicked within the control."
        whatHappened .= "`n> Focused row number: " eventInfo
    } Else If (guiEvent = "ColClick") {
        whatHappened .= "`nThe user has clicked a column header."
        whatHappened .= "`n> Column number: " eventInfo
    } Else If (guiEvent = "D") {
        whatHappened .= "`nThe user has attempted to start dragging a row or icon."
        whatHappened .= "`n> Focused row number: " eventInfo
    } Else If (guiEvent = "d") {
        whatHappened .= "`nThe user has attempted to start right-click-dragging a row or icon."
        whatHappened .= "`n> Focused row number: " eventInfo
    } Else If (guiEvent = "e") {
        whatHappened .= "`nThe user has finished editing the first field of a row."
        whatHappened .= "`n> Row number: " eventInfo
    } Else If (guiEvent = "Normal") {
        whatHappened .= "`nThe user has left-clicked a row."
        whatHappened .= "`n> Focused row number: " eventInfo
    } Else If (guiEvent = "RightClick") {
        whatHappened .= "`nThe user has right-clicked a row."
        whatHappened .= "`n> Focused row number: " eventInfo
    } Else If (guiEvent = "A") {
        whatHappened .= "`nA row has been activated."
        whatHappened .= "`n> Row number: " eventInfo
    } Else If (guiEvent = "C") {
        whatHappened .= "`nThe ListView has released mouse capture."
    } Else If (guiEvent = "E") {
        whatHappened .= "`nThe user has begun editing the first field of a row."
        whatHappened .= "`n> Row number: " eventInfo
    } Else If (guiEvent = "F") {
        whatHappened .= "`nThe ListView has received keyboard focus."
    } Else If (guiEvent = "f") {
        whatHappened .= "`nThe ListView has lost keyboard focus."
    } Else If (guiEvent = "I") {
        whatHappened .= "`nItem changed. (A row has changed by becoming selected/deselected, checked/unchecked, etc.)"
        whatHappened .= "`n> Row number: " eventInfo
    } Else If (guiEvent = "K") {
        whatHappened .= "`nThe user has pressed a key while the ListView has focus."
        whatHappened .= "`n> Key pressed: " GetKeyName(Format("vk{:x}", eventInfo))
    } Else If (guiEvent = "M") {
        whatHappened .= "`nItem changed. (A row has changed by becoming selected/deselected, checked/unchecked, etc.)"
        whatHappened .= "`n> Row number: " eventInfo
    } Else If (guiEvent = "S") {
        whatHappened .= "`nMarquee. The user has started to drag a selection-rectangle around a group of rows or icons."
    } Else If (guiEvent = "s") {
        whatHappened .= "`nThe user has finished scrolling the ListView."
    }
    GuiControlGet, Log
    GuiControl,, Log, % whatHappened "`n---------------------`n" Log
}

GuiClose(hWnd) {
    WinGetTitle, windowTitle, ahk_id %hWnd%
    MsgBox, The Gui with title "%windowTitle%" is going to be closed! This script will exit afterwards!
    ExitApp
}


Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow