Bernie X
03-02-2002, 09:41 AM
The expression 'my_scene._alpha=100;' doesn't work.
If I use 'scene_01._alpha=100;' that works. Any suggestions?
function sceneSwitch (my_scene) {
// i=0;
// while (i<4){
if ( my_scene==_root.scene_01) {
my_scene=_root.scene_01;
my_scene._alpha=100;
// doesn't wrk
}
// else{
setProperty (main01, _alpha, 0);
// this works
// }
// i++;
// }
}
If I use 'scene_01._alpha=100;' that works. Any suggestions?
function sceneSwitch (my_scene) {
// i=0;
// while (i<4){
if ( my_scene==_root.scene_01) {
my_scene=_root.scene_01;
my_scene._alpha=100;
// doesn't wrk
}
// else{
setProperty (main01, _alpha, 0);
// this works
// }
// i++;
// }
}