简体   繁体   中英

Displaying value in an Edit/UpDown buddy in AutoHotKey

Is there anyway to get the textual chosen "word" to display in the spinner UI element as one flips through?

Whenever the user enters an up or down key the gosub display is called. So far though i have found only ways to display the index not the value...

#a::
words:= ["in","the","beginning","was","the","word"]

Gui, Add, Edit, w111 R1 vw, words3
Gui, Add, UpDown, w22 gdisplay vn Range1-6, 3

Gui, Show, x933 y0, test word display
return

display:
UD:=n
word:=words[UD]
n:=word
;Gui, Submit, NoHide
return

How about using a ListBox instead:

Gui, Add, ListBox, R1 vMyList -VScroll, in|the|beginning|was|the|command|line
Gui, Add, UpDown, gDisplay
Gui, Show, , test word display

Exit

Display:
    Gui, Submit, NoHide
    ; MsgBox % MyList
return

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM