Inserting VM command

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • VRYK
    Super Member
    Super Member
    • Jan 2009
    • 226

    Inserting VM command

    I wish to insert a VM command setting gprm(10)’s value into the button command [71 07 00 00 00 00 0C 01] before navigation moves to highlighting button 3 of the menu. I would be grateful for help on how to do this.
  • r0lZ
    Lord of Digital Video
    Lord of Digital Video
    • Mar 2004
    • 1508

    #2
    You can't. There is only one command per button, and your command is:
    Code:
    [71 07 00 00 00 00 0C 01]   Set gprm(0) =(mov) 0 ; LinkCN Cell 1, button 3 (3072)
    There is no room to add a new Set to this command.

    But if there are no post commands at all in the menu PGC, you can replace the current button command with:
    Code:
    [20 01 00 00 00 00 00 0D]   LinkTailPGC
    And add your new command and the original command in the post-commands area:
    Code:
    [71 00 00 0A 00 00 00 00]   1  Set gprm(10) =(mov) 0 
    [71 07 00 00 00 00 0C 01]   2  Set gprm(0) =(mov) 0 ; LinkCN Cell 1, button 3 (3072)
    Last edited by r0lZ; 15 Nov 2011, 01:11 AM.
    r0lZ
    PgcEdit homepage (hosted by VideoHelp)
    Unofficial mirror (in Poland)

    Comment

    • VRYK
      Super Member
      Super Member
      • Jan 2009
      • 226

      #3
      Many thanks for the information and help.

      Comment

      Working...