Sign in to follow this  
Followers 0
denise01

Alternating Screens

2 posts in this topic

Hello I display product counts on a overhead monitor using Supervisor. I want to alternate two screens so that one screen displays for twenty seconds and then another screen displays for twenty seconds. is this possible. Regards Peter Edited by denise01

Share this post


Link to post
Share on other sites
Sure. Use Projects Script, on every 20000ms and write something like this: IF bScreen1 Then display("Screen2") ELSE display("Screen1") ENDIF Also, in order to keep track of which screen is opened, put on Screen1 On Initialisation script: bScreen1 = TRUE and on Screen2 also put On Initialisation script: bScreen1 = FALSE One more thing, put for both screens Display mode to be Replace (double click on page will open Page properties dialogue). This way, opening one screen will close all other opened screens overlapped by the opening screen, which will ensure that On Initialisation scripts will be executed. regards Edited by tashinz

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!


Register a new account

Sign in

Already have an account? Sign in here.


Sign In Now
Sign in to follow this  
Followers 0