We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
V1:
Gui, Add, Checkbox,, ABC 123 Gui, Show Return g:: ControlGet, OutputVar, Checked,,, %A_ScriptName% MsgBox % OutputVar ; 1 Return
V2 (Converted):
myGui := Gui() myGui.Add("Checkbox", , "ABC 123") myGui.Show() Return g:: { ; V1toV2: Added bracket global ; V1toV2: Made function global OutputVar := ControlGetChecked(, A_ScriptName) MsgBox(OutputVar) ; 1 Return } ; V1toV2: Added bracket in the end
V2 (Expected):
?
Not sure if we can do anything, former got the topmost control, but doesn't seem to be any easy way to do that, maybe just output a warning?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
V1:
V2 (Converted):
V2 (Expected):
Not sure if we can do anything, former got the topmost control, but doesn't seem to be any easy way to do that, maybe just output a warning?
The text was updated successfully, but these errors were encountered: