Can it be done? I think not, but I've been thinking if I jump to the end of a title which has a post command to go to the menu, that'll do the same thing.
Dave
+ Reply to Thread
Results 1 to 6 of 6
-
-
if it is in the same titleset, simply use 'call menu 1', or 'call menu 2'. If the menu is not in the same titleset, you will need to go through the VMGM
-
It's in the same titleset.
If I do what you suggested, it says "cannot 'call' a menu from another menu. Use 'jump' instead".
If I do "jump menu 1", nothing happens when I select the hotspot on the second menu. If I do "jump menu" it says ERR: cannot find PGC with entry.
Here's some XML if it helps. I've got one menu that plays one of two titles. Each title goes to a second menu with a post command (implemented via a register). The second menu has a single button that goes back to the first menu (or at least is supposed to).
<dvdauthor dest="c:\crap">
<vmgm>
</vmgm>
<titleset>
<menus>
<pgc>
<pre>
if (g1==2) jump menu 2;
</pre>
<button>jump title 1;</button>
<button>jump title 2;</button>
<vob file="c:\crap\Menu1_sub.mpg"/>
</pgc>
<pgc>
<button>jump menu 1;</button>
<vob file="c:\crap\Menu2_sub.mpg"/>
</pgc>
</menus>
<titles>
<video format="pal" />
<pgc>
<vob file="c:\crap\Title1.mpg"/>
<post>g1=2; call menu;</post>
</pgc>
<pgc>
<vob file="c:\crap\Title2.mpg"/>
<post>g1=2; call menu;</post>
</pgc>
</titles>
</titleset>
</dvdauthor> -
Doh!
"jump menu 1" does work, it's just thanks to my pre logic it jumped straight back to menu 2. Needed to set g1=1 before the jump.
Oh I'm so stupid. -
Ahh, I haven't had my morning coffee yet. I really did mean 'jump menu 1' and 'jump menu 2' above
I see your problem here in this example though. In your menu 2, you need to set the register as well, else it will go BACK to the menu2.
edit: Nevermind, you saw it before I did.
Similar Threads
-
call menu 2 after film in DVDAuthorGUI
By awesomer in forum Authoring (DVD)Replies: 8Last Post: 5th Mar 2008, 17:55 -
dvdauthorgui nav cmds/call menu to different menus?
By ecc in forum Authoring (DVD)Replies: 4Last Post: 23rd Jan 2008, 21:58 -
TMPGEnc DVD Author 3 (MENU PROBLEM)
By jaffacaique in forum Authoring (DVD)Replies: 9Last Post: 18th Sep 2007, 19:43 -
Call Email Client from DVD Menu
By SCDVD in forum Authoring (DVD)Replies: 5Last Post: 24th Aug 2007, 04:03 -
Menu troubleshoot using Tmpgenc Dvd Author
By tekka06 in forum Authoring (DVD)Replies: 8Last Post: 4th Jul 2007, 03:53