hi all.
i've on my screen script this:
the part in if statement is for show on bg under the scene the sky to show it on the windows (transparent on scene).
it work perfectly but my question is.
the best way to declare it permanently and use on my screen when i need it?
i've on my screen script this:
Code:
screen mc_room_hm1:
zorder 0
modal True
if 4 < time < 18:
add "cielo sereno giorno.png"
else:
if 17 < time < 21:
add "cielo sereno sera.png"
else:
add "black"
add "mc_room_hm1.png"
imagebutton auto "pcmyroom_%s.png" xpos 1210 ypos 380 focus_mask True action Call("pcmyroom")
it work perfectly but my question is.
the best way to declare it permanently and use on my screen when i need it?