I implemented r0lz suggestions:
And it now works as I want it to:
1) Jumps to main menu on dvd insert (skipping annoying trailers)
2) From my SAP pressing STOP twice, then PLAY from any point in the movie run now grabs the Main Menu.
3) Trailer gallery has all the trailers.
I have no idea where you get that GPRM 15 is free (unused) but was happy to use it. As blutach mentioned with the above method it does jump all over the place but finally arrives at the menu.
I actually wanted to keep the Previews for later viewing from the menu special features, so didn't want to blank them out (as I typically do when I get the Link to Cell... Warning Msg from a 'Kill PGC Playback').
Thanks 2COOL, r0lz and blutach for your support on this one!
To force the playback to return to the FP-PGC, you have to use a free GPRM. In the examples below, I assume GPRM 15 is unused.
In the FP-PGC, init GPRM 15 to any value different than 0:
In Title 1, test if GPRM 15 has the value 0. This means that Title 1 is entered directly after STOP. In this case, restarts the DVD completely from the beginning by jumping to the FP-PGC:
In the FP-PGC, init GPRM 15 to any value different than 0:
Code:
VMG , First-Play PGC - Chapters: n/a, Programs: n/a, Cells: n/a ********** pre commands: 1 Set gprm(15) =(mov) 1 2 ...
Code:
VTST 1 , 1 TTN 1 (1:47:35) Title 1 - Chapters: 21, Programs: 21, Cells: 21 ********** pre commands: 1 if ( gprm(15) != 0 ) then { Goto line 3 } 2 (CallSS) Call the First Play PGC, resume cell 1 3 NOP 4 ...
1) Jumps to main menu on dvd insert (skipping annoying trailers)
2) From my SAP pressing STOP twice, then PLAY from any point in the movie run now grabs the Main Menu.
3) Trailer gallery has all the trailers.
I have no idea where you get that GPRM 15 is free (unused) but was happy to use it. As blutach mentioned with the above method it does jump all over the place but finally arrives at the menu.
I actually wanted to keep the Previews for later viewing from the menu special features, so didn't want to blank them out (as I typically do when I get the Link to Cell... Warning Msg from a 'Kill PGC Playback').
Thanks 2COOL, r0lz and blutach for your support on this one!
Comment