Log in

View Full Version : All Gone


Tariq
26th October 2004, 12:38
Hi,

I have just burnt my dvd for testing and it acts in a completely different way then in the simulation window in scenarist.
In scenarist all the menus are linking back to the correct menus with the correct buttuns highlighted. But when I burn my disc its selecting different buttons. If I press Button2 on my Title Menu,
it takes me to the correct menu but it then highlights button2 there aswel. Its the same if I press button 3 on my Title menu, I am then taken to the 3rd menu with button 3 on that menu highlighted.
I dont understand please help.

Basically what I have done is on the Title Menu
set the highlighted button to whatver the value of GPRM2 is.
Then the 2nd line of code says Set the Value of GPRM10 to 1024.

Then on the post commands I am having it remember the values of GPRM2
So if the user press button 2 the value of GPRM2==1024 if the user presses button 3 gprm2==3072

When they return to this menu the pre command says

4: Set_BTTN_HL_BTN==GPRM2
and it highlights the correct button.

The buttons have the command
1: (mov GPRM2 1024 ;LinkTailPGC, button=1)
2: (mov GPRM2 2048 ;LinkTailPGC, button=2)
...
...

On the Pre of my Title Menu I have
1: Mov GPRM7, 0
2: Mov GPRM10, 1024
3: Mov GPRM12, 1024
4: Set_BTTN_HL_BTN==GPRM2
Post of Title Menu
1: Mov GPRM2, SPRM8
2: if (GPRM2 ==1024 ) GoTo 7
3: if (GPRM1 ==2048 ) GoTo 8
4: if (GPRM1 ==3072 ) GoTo 9
5: if (GPRM1 ==4096 ) GoTo 10
6: if (GPRM1 ==5120 ) GoTo 11
7: JumpSS MainMovie:ROOT Menu
8: JumpSS MainMovie:ROOT PTT Menu
9: JumpSS FamilyVideo:ROOT Menu
10: JumpSS Extras:ROOT Menu
11: JumpSS SetUp:ROOT Menu


On the Pre command of my Main Movie Menus I have
1: If (GPRM 7 == 1) LinkPGN Cell2,button=0
2: If (GPRM 9 == 3) LinkPGCN Chapter menu2
3: If (GPRM 7 == 2) LinkPGCN Chapter menu1
4: mov GPRM7, 1
5: Set STN audio=GPRM13
6: If (GPRM 9 == 4) LinkPGCN Chapter menu3
7: Set_BTTN_HL_BTN==GPRM10

So on here it should Highlight button one because command 3 says
highlight button to the value of GPRM 10 which is set at 1024 in the Title menu.

Pre command of my FamilyVideos I have
1: If (GPRM 7 == 5) LinkCN Cell2,button=0
2: Set STN audio=GPRM4
3: Set_BTTN_HL_BTN==GPRM10

But what it does is highlight button 2.


So on here it should Highlight button one because command 3 says
highlight button to the value of GPRM 10 which is set at 1024 in the Title menu.

On the Pre command of Extras menu I have
1: If (GPRM 7 == 1) LinkCN Cell2,button=0
2: Set_BTTN_HL_BTN==GPRM10

But what it does is highlight button 3 as this is the 3rd button on the Title Menu
.
On the Pre command of my audio setup I have

1: mov GPRM 9 SMPRM 1 LinkCN
2: Set STN audio=GPRM3
3: Set_BTTN_HL_BTN==GPRM1

It does the same thing here.

Help I am stuck. Why does it work but when you burn it doesnt.

2) Why is it that in my chapter menu if I press chapter 2 then play chapter 2 then with the remote I change the audio to stream 2, then I press menu on the remote and play chapter 3 why has the stream gone back to stream 1? How do I store this? Please help.