Help - Search - Members - Calendar
Full Version: Info Panel Dvd =
Scenyx Entertainment Community > Xbox1 Forums > Dashboard Forums > Official Team UIX Forums > User.Interface.X (UIX) Code
computer guy
I want the Av pack = .......... on the Info panel mod to be DVD = ............

eg. Av pack = Standard. becomes DVD = Game

I need:

DVD = Game
DVD = Video
DVD = Audio
DVD = Unknown
DVD = Empty

Plz help.

Thanks to slick50zd for the info panel. love it. love.gif
Odb718
So is this the same freakin question as the other topic??
computer guy
I have an launch button in my main menu. but would like to display what is currently inserted. a tab in the bottom right corner would be nice. and a folder called "Icons" to put images in called "Game.jpg, Unknown.jpg" and so on,

and when a disc is inserted it displayed the corresponding image.

then i could make my own xbox looking images for it. smile.gif

Plz... Think up some code for me. i'm sure lots of other people would want it to.
shank-
this is some code i use in my info panel
CODE

else if (nDisplayNum == 2)
{
   albumtext = "Disc Type:";
   songtext = theDiscDrive.discType;

   if( theDiscDrive.discType == "Video" )
   {
   c.theScreenAlbumArt.url = "A:\\album covers\\dvdvideo.xbx";
   }

   else if(theDiscDrive.discType == "Title")
   {
   c.theScreenAlbumArt.url = "A:\\album covers\\dvdtitle.xbx";
   }

   else if(theDiscDrive.discType == "none")
   {
   c.theScreenAlbumArt.url = "A:\\album covers\\dvdempty.xbx";
   }

   else if(theDiscDrive.discType == "Audio")
   {
   c.theScreenAlbumArt.url = "A:\\album covers\\dvdaudio.xbx";
   }

   else if(theDiscDrive.discType == "unknown")
   {
   c.theScreenAlbumArt.url = "A:\\album covers\\dvdunknown.xbx";
   }
}

you could modify it to change the text like so....
CODE

if( theDiscDrive.discType == "Video" )
   {
   text = "Video";
   }

   else if(theDiscDrive.discType == "Title")
   {
   text = "Title";
   }

and so on
shank-
maybe you might want to try out my infopanel..
http://forums.xbox-scene.com/index.php?showtopic=417297

user posted image
user posted image
user posted image
computer guy
Thanks man great code. cool.gif

exactly wat i wanted.
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2013 Invision Power Services, Inc.