FULLscreen Look in Flash
- Started
- Last post
- 6 Responses
- Delvetica
By using fscommand("fullscreen", "true") action, I supposed I can get a fullscreen-look that is in the centre of the monitor screen. The 1.swf appears on the screen with fullscreen and centre look.
Once I clicked on it to link to 2.swf., 2.swf goes to top left side of the monitor screen. How come it is not fullscreen and centred?
Does anyone know how to solve this problem? Really need it for my presentation... :(
~~* puzzled Siny *~~
- ********0
don't load into _level0
especially on the Mac, use _level1 instead.....
- Delvetica0
I did not use _level to load swf. I use:
on(release){
_root.loadMovie("1.swf");
}Should I change it to level???
- plizo0
Do you have a link?
- ********0
try using
on(release){
_root.loadMovieNum("1.swf", 1);
}the 1 refers to _level1
the thing is that if it loads into _level0 it overwrites _level0 therefore chucking out your "fullscreen"
....
- Delvetica0
Thank you. Solved it :-)
Million of thanks~~*
- siny0
I have achieved a fullscreen look between two different swf files by using:
on(release){
_root.loadMovieNum("1.swf",1);
}on(release){
_root.loadMovieNum("2.swf",1);
}However, the 1.swf's sound continues playing when it is in 2.swf. I have tired both stream and even sound but they do not help to stop the music. What should I do to stop the sound of 1.swf. Million of thanks.