home *** CD-ROM | disk | FTP | other *** search
- //<script>
- //****************************************************************
- // ⌐2000 Microsoft Corporation. All rights reserved.
- //****************************************************************
-
-
- function AutoLoad()
- {
- // In preview mode (the skin chooser), we want to go ahead
- // and show the preview bitmap... so the following line will
- // "fault" out the preview jscript engine, but not the runtime
- // engine...
-
- if (player)
- {
- }
-
- view.width = 0;
- view.height = 0;
- view.backgroundImage = "";
-
- var viewID = theme.loadPreference( 'LV' );
-
- if (viewID == '--')
- {
- if (player.playState == 3) // psPlaying
- {
- viewID = 'DigitalDJMid';
- }
- else
- {
- viewID = 'DigitalDJ';
- theme.savePreference( 'LV', viewID );
- }
- }
-
- theme.currentViewID = viewID;
- }
-
-