|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
loadMovie
this is what I am currently using,
on (release) { loadMovie("MatchingPairs.swf", 3); } I want to be able to load the movie in the middle of the page. Any help would be greatly appreciated. |
|
#2
|
|||
|
|||
|
there is no level or other argument with loadMovie - you may be thinking of loadMovieNum......most flexible way is to use loadMovie as a movieclip method, ie create with code or place an empty clip on the stage and load the movie into it:
Code:
holder_mc.loadMovie("MatchingPairs.swf");
//for a clip with it's registration point in top left corner....
holder_mc._x = Stage.width/2-holder_mc._width/2;
holder_mc._y = Stage.height/2-holder_mc._height/2;
|
|
#3
|
|||
|
|||
|
thanks for the help
|
![]() |
| Viewing: Dev Shed Forums > Web Design > Flash Help > loadMovie |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|