xboxscene.org forums

Author Topic: 2 Memory3.xaps  (Read 86 times)

BobMcGee

  • Archived User
  • Newbie
  • *
  • Posts: 48
2 Memory3.xaps
« on: September 16, 2003, 07:37:00 PM »

CODE
DEF theGamesInline Inline
{
   visible false
   url "Games3.xap"

   function onLoad()
   {
       theGamesInline.children[0].theGamesMenu.GoTo();
   }
}

function GoToGames()
{
   if (theGamesInline.visible)
       theGamesInline.children[0].theGamesMenu.GoTo();
   else
       theGamesInline.visible = true;
}


I made the function 8 in the config to link to this at the bottom of the default.xbe:

CODE
if ( MainMenuLaunch4 == 8 )
           {
            theGamesMenuIn.Play();
            GoToGames();
           }


now this should work....provided I also put Games3.xap into the default.xip, save, and resign.

Only when I press the link corresponding to 8 nothing happens...The original Memory3.xip loads fine.

If someone more clever than I would help me out with this, I would be greatly appreciative...

Thanks in advance,

BobMcGee
Logged