I thought, cool. Any chance we can add the ability to do the following?If Not b
Debug "Ok"
EndIf
If a = 1 And Not b
Debug "Ok"
EndIf
If a = 1 And Not (b=1 or b=3)
Debug "Ok"
EndIf
Code: Select all
Visible.b = #True
HideWindow(#Window, Not Visible)
Code: Select all
Visible.b = #True
Select Visible
Case #True
HideWindow(#Window, #False)
Case
HideWindow(#Window, #True)
EndSelect
