I've often wondered this, practically ever since I started using Rev (about 9 months ago):
If only a script similar to this
Code: Select all
set the visible of image "BLUE BACK" to false
set the visible of image "Wiper" to false
set the visible of button "Add" to false
set the visible of button "CheckB" to false
Code: Select all
set the visible of image "BLUE BACK" and image "Wiper" and button "Add" and button "CheckB" to false
Code: Select all
set the visible of\
image "BLUE BACK" and\
image "Wiper" and\
button "Add" and\
button "CheckB"\
to false
Code: Select all
set the visible of image "BLUE BACK" to false
set the enabled of image "BLUE BACK" to false
set the highlight of image "BLUE BACK" to false
Code: Select all
set the visible and the enabled and the highlight of image "BLUE BACK" to false
Code: Select all
set the (visible and enabled and highlight) of image "BLUE BACK" to false
And is there already proper shorthand versions of the above, can anyone tell me please
