As the title says... I cannot seem to figure this one out. How do you have the application go to the next page after the WAV file is finished playing? PowerPoint does this easily, so I am confused!
Thank you.
Professional Software Development Tools
As the title says... I cannot seem to figure this one out. How do you have the application go to the next page after the WAV file is finished playing? PowerPoint does this easily, so I am confused!
Thank you.
How are you loading and playing the Wav file? That will determine how to do the page jump.
For instance. If you use Audio.Load to load the wav into a channel you can then place this code on the "On Audio" event for the page.
Code:if e_Channel == CHANNEL_USER1 and e_State == "Finish" then Page.Jump("PageName") end
TJ-Tigger
"A common mistake that people make when trying to design something completely foolproof was to underestimate the ingenuity of complete fools."
"Draco dormiens nunquam titillandus."
Map of IR Forum Users - IR Project CodeViewer - Online Help - TiggTV - QuizEngine
Good one Tig![]()
![]()
![]()
Adam.
I have to agree Tigg, nice one! Didn't know that.
So - the fact that there's a change in the audio state fires the event automatically. What a slick'n easy way to do a commentary or sound over - another day, another idea![]()
![]()
Thanks guys.![]()
TJ-Tigger
"A common mistake that people make when trying to design something completely foolproof was to underestimate the ingenuity of complete fools."
"Draco dormiens nunquam titillandus."
Map of IR Forum Users - IR Project CodeViewer - Online Help - TiggTV - QuizEngine