Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

on timeout go to......question

Status
Not open for further replies.

BongoMudpie

IS-IT--Management
Apr 27, 2002
32
0
0
GB
Hi all
I am developing a Kiosk that has an introduction screen, when the user touches this screen they are then taken into the main menu and can then access the rest of the kiosk via buttons displayed on the screen. However, I want Director to return to the intro screen after a certain amount of minutes automatically if a user has not used the kiosk, does anyone know of a script that can do this?

Thank you in advance to anyone who can solve this for me.
 
Use timeoutLength to set the duration of inactivity to trigger timeOut event.
--
on prepareMovie
the timeoutLength = 5 * 60 * 60 -- 5 minutes to time out
end prepareMovie

on timeOut
go to movie “screensaver”
end timeOut
--
 
Thank you, it works perfect.

many thanks again
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top