xboxscene.org forums

OG Xbox Forums => Official Team UIX Forums => Dashboard Forums => User.Interface.X (UIX) Code => Topic started by: computer guy on August 01, 2005, 09:00:00 PM

Title: Info Panel Dvd =
Post by: computer guy on August 01, 2005, 09:00:00 PM
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.  :luv:
Title: Info Panel Dvd =
Post by: Odb718 on August 02, 2005, 02:58:00 AM
So is this the same freakin question as the other topic??
Title: Info Panel Dvd =
Post by: computer guy on August 02, 2005, 03:14:00 AM
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.  :)

Plz...  Think up some code for me. i'm sure lots of other people would want it to.
Title: Info Panel Dvd =
Post by: shank- on August 02, 2005, 11:47:00 PM
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
Title: Info Panel Dvd =
Post by: shank- on August 02, 2005, 11:56:00 PM
maybe you might want to try out my infopanel..
http://forums.xbox-scene.com/index.php?showtopic=417297

(IMG:http://i22.photobucket.com/albums/b336/N3MIS15/network.jpg)
(IMG:http://i22.photobucket.com/albums/b336/N3MIS15/disctype.jpg)
(IMG:http://i22.photobucket.com/albums/b336/N3MIS15/music.jpg)
Title: Info Panel Dvd =
Post by: computer guy on August 03, 2005, 12:40:00 AM
Thanks man great code.  B)

exactly wat i wanted.