Log in

View Full Version : Multiple menus one video


srfscenar
19th February 2004, 10:39
Hey guys! I have one menu with 5 language selection.
Each of those 5 buttons will take me to the main menu of the lang. i selected where i have one button which will jump me into the movie.How do i make it so when the movie finishes i will go back to the main from where i start?
Thanx!

srfscenar
19th February 2004, 17:21
forgot to say that i am using scenarist.

Dimmer
20th February 2004, 02:43
Use a GPRM as a language flag. In Pre commands of each of your 5 language menus, set it to a different value. In Post commands of the movie, perform conditional jumps to the appropriate menu PGC based on the flag GPRM value.

Don't use different language domains for this, if that's what you had in mind.

srfscenar
20th February 2004, 08:57
can you be a little more detailed cause my knowledge in GPRMs is in beginners level.thanx

Bish0p
20th February 2004, 15:47
In each of the language menus set up a gprm in the pre command:

E.G.

English Menu-
Mov Gprm1, 1

Spanish Menu-
Mov Gprm1, 2

German Menu-
Mov Gprm1, 3

etc etc,

then in the post of the movie set a conditional jump back to the language menu:

E.G.

if ( Gprm1 == 1) CallSS RSM=1, Englishmenu1
if ( Gprm1 == 2) CallSS RSM=1, Spanishmenu1
if ( Gprm1 == 3) CallSS RSM=1, Germanmenu1
and so on for each language