B
Bill Handler
I am creating some powerpoint files (in Office v.X) to be used in a
stand alone information kiosk. The kiosks will be using PC hardware,
and a current, an unknown version of Powerpoint... 1 presentation is a
loop of the available topics, and then there are seperate presentations
for each topic. Getting to the topics works fine, it's the getting back
to the loop that's a problem. It's set up so that if the person clicks
on the last slide in the topic presentation, it ends the show, and goes
back to the loop which is still running. My problem is creating a
'timeout' feature so that if someone walks away, the topic presentation
will automatically end the show, and revert back to the loop. This is
what I have so far, but it ends the loop too.
Sub delay()
Dim PauseTime, Start
PauseTime = 15 ' set duration of pause.
Start = Timer ' set start time.
If Timer < Start + PauseTime Then
Do While Timer < Start + PauseTime
DoEvents ' yield to other processes.
Loop
End If
Presentations(1).Close
End Sub
this macro is set to the 'mouse over' button.
Any help is appreciated.......
Thanks,
bill
stand alone information kiosk. The kiosks will be using PC hardware,
and a current, an unknown version of Powerpoint... 1 presentation is a
loop of the available topics, and then there are seperate presentations
for each topic. Getting to the topics works fine, it's the getting back
to the loop that's a problem. It's set up so that if the person clicks
on the last slide in the topic presentation, it ends the show, and goes
back to the loop which is still running. My problem is creating a
'timeout' feature so that if someone walks away, the topic presentation
will automatically end the show, and revert back to the loop. This is
what I have so far, but it ends the loop too.
Sub delay()
Dim PauseTime, Start
PauseTime = 15 ' set duration of pause.
Start = Timer ' set start time.
If Timer < Start + PauseTime Then
Do While Timer < Start + PauseTime
DoEvents ' yield to other processes.
Loop
End If
Presentations(1).Close
End Sub
this macro is set to the 'mouse over' button.
Any help is appreciated.......
Thanks,
bill