Log in

View Full Version : controlling what happens with stop button


redguy
31st August 2007, 01:05
hello ppl
i have authored a dvd and i have this prioblem: when i hit stop button it interrupts playback like it should. if i press it again my standalone player comes to a full stop. if i push play again to play again the dvd it starts not from the beginning (i.e.: copyright texts, audio selection, main menu) but from the first VTS (i.e.: the show).
i want to know if i can control this behavior. my clients told me that in movie dvds after pushing twice stop it resumes from the title menu, so there must be some way to do it.
thanks :)

bigotti5
31st August 2007, 08:26
Pressing play in stop mode activates a title play command.
All GPRMs are cleared and title 1 is forced to play.

You have to set a GPRM in First Play and evaluate its value in precommands of the title.

E.g.

FP precommands:
1. GPRM1 = 1
...

Title precommands:
1. if GPRM1 == 0 goto line 7
....
6. Break
7. CallSS RSM=1, FP_DOM

Pressing play in stop mode resets GPRM1, so precommands of title navigates to FP in this case.

redguy
31st August 2007, 16:13
ok thank you :):)
i'll try it