I'm making my own gallery which a a collection of SWFs.
So far, I've manage to load my swf files in my movieclip, but the problem is that it doesn't look like they are showing in the 'screen' I made.
Is there any way to use my 'screen' movieclip as a mask?
Code used:
button1.onRelease=function(){
loadMovie("house.swf","screen");
}
button2.onRelease=function(){
screen.loadMovie("ninja.swf");
}
button3.onRelease=function(){
screen.loadMovie("ball.swf");
}
button4.onRelease=function(){
screen.loadMovie("car.swf");
}