hi im new member here . may i know how to build variable box from gui and have submit button for send value i put in var

Discussion, questions and support.
Post Reply
stevenwi87
Posts: 10
Joined: Jul 21st, ’19, 11:22

Post by stevenwi87 » Apr 26th, ’20, 02:51

hi im new member here . may i know how to build variable box have submit button for send value i put in variable box
User avatar
Tom
Posts: 796
Joined: Nov 24th, ’15, 23:39

Post by Tom » Apr 26th, ’20, 19:30

Something like this?

Code: Select all

gui, add, text,, Variable:
gui, add, edit, vMyVariable
gui, add, button, gButtonOK default, OK
gui, show
return

ButtonOK:
gui, submit, nohide
msgbox % MyVariable
return
Post Reply