Log in

View Full Version : doubt about Maestro commands ( double language menus )


Fenix
23rd March 2003, 13:33
Hi there,

First let me saw that I look ( search ) thru the forum, but I still have doubts:

I want to use double language menus. What I mean is, I have a start screen with language select and I set this commands for each language bottom:

First language
--------------------------------------------------
1 - SetGPRMMD GP0 to register
2 - ADD GP0 , 1
--------------------------------------------------

Second language
--------------------------------------------------
1 - SetGPRMMD GP1 to register
2 - ADD GP1 , 1
--------------------------------------------------

This is needed because I have to know ( for the common menus, I don't have space left to replicate all of them ) to here to go back, for example the "going back" bottom has to know where to go back ( first language menu or second )!!

So for the chapters back bottom I have something like this:

1 - Jump to Main_PT[#1] if (GP0 >= 1)
2 - Jump to Main_ENG[#1] if (GP1 >= 1)


Finally, I doing something wrong ( probably messing with reserved values ) or something because the loop points on all menus are screw up :(

Can anyone help, please???

Thanks in advance,
Regards,

Fenix.

oddyseus
24th March 2003, 11:22
1st of all u r using ADD and not MOV. The value in GPRM0 is increased every time this command sequence is used.

I would suggest to use MOV and only 1 GP for your selections

that is

First language
--------------------------------------------------
1 - SetGPRMMD GP0 to register
2 - MOV GP0 , 1
--------------------------------------------------

Second language
--------------------------------------------------
1 - SetGPRMMD GP0 to register
2 - MOV GP0 , 2
--------------------------------------------------

after this the return sequence would be

1 - Jump to Main_PT[#1] if (GP0 = 1)
2 - Jump to Main_ENG[#1] if (GP0 = 2)

auenf
24th March 2003, 11:52
Originally posted by oddyseus
only 1 GP for your selections

i second that, mainly cause the examples Fenix showed would always goto the first language menu, even if you accidentally selected it once. this would be very annoying for people like me who can only speak english ;)

the other thing is, instead of creating a third command sequence, right click properties on the item in the tree, and set a display condition (http://www9.brinkster.com/sportschook/?playlistprop.jpg) which im pretty sure is there for menus as well.

Enf...

Fenix
5th April 2003, 00:23
Hi oddyseus/auenf

All your advices have been very helpful :)
First let me apologize for not replying sooner, but I was outside my country ( working ) , so I didn't had anyway of trying your suggestions!

But they worked just fine ;)
BTW that problem with the "loop points on all menus are screw up" wasn't related with those variables , because it only happens on Power DVD XP (PC) , and not on the home player ( PS2 and Philips )!

Thanks once again for all your help ( and all of those in this forum ).

Best Regards,
Sincerely,

Fenix.