xboxscene.org forums

Author Topic: Info Panel Dvd =  (Read 405 times)

computer guy

  • Archived User
  • Newbie
  • *
  • Posts: 7
Info Panel Dvd =
« 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:
Logged

Odb718

  • Archived User
  • Hero Member
  • *
  • Posts: 925
Info Panel Dvd =
« Reply #1 on: August 02, 2005, 02:58:00 AM »

So is this the same freakin question as the other topic??
Logged

computer guy

  • Archived User
  • Newbie
  • *
  • Posts: 7
Info Panel Dvd =
« Reply #2 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.
Logged

shank-

  • Archived User
  • Newbie
  • *
  • Posts: 7
Info Panel Dvd =
« Reply #3 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
Logged

computer guy

  • Archived User
  • Newbie
  • *
  • Posts: 7
Info Panel Dvd =
« Reply #5 on: August 03, 2005, 12:40:00 AM »

Thanks man great code.  B)

exactly wat i wanted.
Logged