how can I go back to where i was watching???

How can I make in a dvd to go back and keep playing from the point that I stopped it.??? Just like the professional dvd’s when you are watching them and you go to the menu to change the settings and press play and goes back to where you where watching.

Also, if I click in certain chapter that takes me to somewhere in the movie How can I go back to that menu???? is that what the back button does???? if yes how should I link it????

Thanks for any help!!

Posted on Oct 25, 2005 9:34 PM

Reply
3 replies

Oct 26, 2005 3:00 PM in response to Daza Fab

When you leave a track and go to a menu the information about the exact place you were at is retained. ALl you need to do is press the menu button again and you will go back to the track at the point that you left.

However, if you want to add a menu to do some 'set up', and want to provide the user with a 'resume' button then you point the button to a small script whcih simply contains the word 'Resume'... you should get right back to the track.

I'm not sure what you mean in your second question... from any chapter, pressing the menu button will take you to a menu if a track is playing. You can specify which menu in the property inspector for the track.

If you can clarify this a bit more then I'm sure there will be a better answer...

Oct 26, 2005 5:25 PM in response to Daza Fab

Thank you for answering

My question is: lets say I have 3 menus, on menu number 2 I have a chapter link to go somewhere in a track that holds a movie or video… once that i pressed that chapter link on menu 2 the track will playing...... ; what button or link takes me back to that menu 2...??? that is if I go back to the menu 2... if it is a script how should use it....? where can I learn or understand scripts????

Thanks for your help...

fab

Oct 27, 2005 1:49 PM in response to Daza Fab

In general the track will go back to the menu you left, but this is dependent on the player you are using in many cases, and the way that you author the disc. You can ensure it goes to the correct menu in several ways.

Firstly, you can use stories - place all the markers from the track into a story and point the menu button to the story container. You can set the end jump and menu call properties for a story to be independent of a track. Stories also do not replicate the track asset, so in effect you are creating a play list which has everything in it. You can create up to 99 tracks, stories and slideshows on a single disc, with any combination of these up to the maximum of 99 overall.

Secondly, you could use scripting, and again there are several ways to do what you want. Scripting is not too difficult for this kind of functionality, but you need to get to grips with a few terms and structures when you write scripts. Much of it is taken care of for you by the script editor - it's impossible to type freely into a script command so you can only choose the correct things... but you need to do so in the correct order!

One scripting method is to make the menu button jump to a script before you go to the track. The script sets up a unique value and you can look for the value when you want to return to a menu. Depending on what you find you will go to one of your three possible menus. That script looks like this:

mov GPRM0, 1
Jump Trackname

You would change the value to be 2 or 3 for the other two scripts. Then, you set the menu call for the track and the end jump to go to a script like this:

Jump menu1 If(GPRM0 = 1)
Jump menu1 If(GPRM0 = 2)
Jump menu1 If(GPRM0 = 3)

Now, the disc will return to the correct menu, but go to the default button on that menu. If you have lots of buttons then you might want to expand that script to be sure to get to the right one. This was a question that came up recently and I wrote out two methods to do it - have a little hunt around in the forum to find those threads!

This thread has been closed by the system or the community team. You may vote for any posts you find helpful, or search the Community for additional answers.

how can I go back to where i was watching???

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.