Code: Select all
label Start:
$ helloTest = "test"
# output content of variable to console window (shift O) ??
print helloTest
Code: Select all
label Start:
$ helloTest = "test"
# output content of variable to console window (shift O) ??
print helloTest
Code: Select all
label testFunction(val):
if val = "one":
return("hello")
else:
return("okay")
screen test:
vbox:
# should get set to a value of string "okay"
$ globalVariable = testFunction("two")
Code: Select all
screen testWindow:
text "Text 1"
text "Text 2"
imagebutton:
idle "images/button5.png"
#onclick
# hide TEXT 2
Code: Select all
style testStyle:
size 20
underline True
color "#747708"
# add drop shadow effect here