I would like that when I listen to CD the screensaver do not start
I have a solution which look like this
CODE
function OnDelay2() {
if( CurrentViewpoint == theMainMenuViewpoint ) { MainMenuPositionTwo(); }
}
function OnDelay3() {
if( CurrentViewpoint == theMainMenuViewpoint ) { MainMenuPositionThree(); }
}
if( CurrentViewpoint == theMainMenuViewpoint ) { MainMenuPositionTwo(); }
}
function OnDelay3() {
if( CurrentViewpoint == theMainMenuViewpoint ) { MainMenuPositionThree(); }
}
CODE
function StartScreenSaverView()
{
bInScreenSaverView = true;
if( CurrentViewpoint == theMainMenuViewpoint ) { DoScreenSaverView(); }
else StopScreenSaver();
}
but with this solution, the screensaver start only when I'm on the Main menu
so I tried that
CODE
function StartScreenSaverView()
{
if (CurrentViewpoint != theMusicMenuViewpoint )
{
bInScreenSaverView = true;
if( CurrentViewpoint != theMainMenuViewpoint ) {theMainMenu.GoTo();}
DoScreenSaverView();
}
}
{
if (CurrentViewpoint != theMusicMenuViewpoint )
{
bInScreenSaverView = true;
if( CurrentViewpoint != theMainMenuViewpoint ) {theMainMenu.GoTo();}
DoScreenSaverView();
}
}
but it seems doesn't work, the screensaver never start
if someone has a solution
that will be great
thanx
and sorry for my english I'm french