I want to make a game in which i have two doors. if user click on either of door.. i want to pop up a second mini game...
but dunno how to pop up my second game?!!
plz help...
use the movieclip method attachMovie()
i tried the attachmovie() method.. but it is not working..
google how to use attachMovie() or use flash help documentation (use search).
and yes the function is case sensitive.
I assure you it shouldn't take too long.
copy and paste the code you used with attachMovie()
stop();
_root.attachMovie("Play","Play",200);
Play._x=200;
Play._y=250;
Play.onRelease=function(){
_root.attachMovie("Practice","clip1",0);
}
this code i have used...but still it is not working!!1
attach a screenshot of your library showing you have a movieclip with linkage id = "Play" and a movieclip with linkage id="Practice"