home *** CD-ROM | disk | FTP | other *** search
- // This is a Sample DVD Trailers file for Zoom Player.
- //
- //
- // Functions:
- //
- // SetDVDPath(Directory)
- // - Specifies the location where the VIDEO_TS.IFO file resides
- // If no path is specified, Zoom Player will try to use the
- // specified DVD Drive instead.
- //
- // Examples:
- // SetDVDPath(E:\VIDEO_TS)
- // SetDVDPath(C:\My Media Server\My Movie)
- //
- //
- // LoadRandomTrailer(Directory)
- // - Loads a Random Media file from the specified Directory.
- // If you try to load multiple random files from the same
- // directory, Zoom Player will try to load different files
- // each time.
- //
- // Examples:
- // LoadRandomTrailer(C:\My Trailers\New Releases)
- // LoadRandomTrailer(C:\My Trailers\DTS)
- //
- //
- // LoadTrailer(File)
- // - Load a specific Media file
- //
- // Examples:
- // LoadTrailer(C:\My Trailers\New Releases\AotC.AVI)
- // LoadTrailer(C:\My Trailers\New Releases\IJ4.AVI)
- //
-
-
- // First we set the DVD Path to our DVD Drive (or hard disk path where we copied it to)
- // We write the full path as Zoom Player looks for the VIDEO_TS.IFO file in the specified path.
- SetDVDPath(F:\VIDEO_TS)
-
- // We start off with a personalized logo we've made for our Home Theater:
- LoadTrailer(C:\Eye Candy\My Logo.AVI)
-
- // Next we show a random upcoming movie trailer:
- LoadRandomTrailer(C:\My Trailers\New Releases)
-
- // Finally we show a random player for our spanking new Dolby DXESVW sound system:
- LoadRandomTrailer(C:\My Trailers\Too Cool for 5.1\Dolby Digital)
-
- // After the last trailer plays, the DVD will start playing automatically.
-