
Signature
Did that answer the question / help?
_____________________________
John Wilson
Microsoft Certified Office Specialist
http://www.technologytrish.co.uk/ppttipshome.html
> Since its a touch screen do you have to use kiosk mode?
Yes because i don't want the icons at the left corner. And i use an
invisible cursor under windows, so it's work perfectly.
Finally, i found a way for doing what i want.
- I set up the show in kiosk mode, show all slides, use timings.
- I set an automating advance transition time for sub menu depending on
what it contains.
- i've write these macros wich use the hidden feature :
Sub RunSubMenu01()
With ActivePresentation
.Slides(3).SlideShowTransition.Hidden = msoFalse
.Slides.Range(Array(4, 5, 6, 7, 8)).SlideShowTransition.Hidden = msoTrue
.SlideShowWindow.View.GotoSlide 3, msoTrue
End With
End Sub
Sub RunSubMenu02()
With ActivePresentation
.Slides(4).SlideShowTransition.Hidden = msoFalse
.Slides.Range(Array(3, 5, 6, 7, 8)).SlideShowTransition.Hidden = msoTrue
.SlideShowWindow.View.GotoSlide 4, msoTrue
End With
End Sub
And it works perfectly ! :D