Load Movie Q
- Started
- Last post
- 15 Responses
- Meeklo
Ok, I am not a programmer, but I manage to do the load movie command. so I have my main movie, then my movie 2 (photo.swf) loads on level 2. everything works great but the movie is off place. How do you tell that movie to fit in a specific location (x / y I imagine..)?
Thanks in advance!
- mrdobolina0
if you are loading one movie right on top of the other using levels, make both movies the same dimensions and then place your level 2 accordingly in it's FLA.
- kyl30
load into a empty movie clip at so and so coordinates
- Meeklo0
well, this time won't work like that, because I'm loading a photogallery.
(with is a blank movie with one action frame, loading photographs)So I need to be able to tell that movie clip where to load.
:(
- tkmeister0
i never load anything to level. that's a bad practice.
- kyl30
createEmptyMovieclip and so and so coordinates, load movie
- Meeklo0
i never load anything to level. that's a bad practice.
tkmeister
(Jun 9 06, 12:11)How do you do it then?
- tkmeister0
createEmptyMovieclip and so and so coordinates, load movie
kyl3
(Jun 9 06, 12:11)
- Meeklo0
createEmptyMovieclip and so and so coordinates, load movie
kyl3
(Jun 9 06, 12:11)Thanks Kyl3
It didn't work either..I created an empty clip, and inside of that one I placed the load movie script.
But it stills loads it all the way on the top left corner of my movie.
Isn't there a way to add load coordinates? it seems to me that it should work that way..
no?
- joyride0
check it in a browser window, not within the flash player. Can be different.
- mrdobolina0
you could do it either way. it is much more editable if you load it into an empty clip though.
- Meeklo0
check it in a browser window, not within the flash player. Can be different.
joyride2
(Jun 9 06, 12:22)Its the only way I do it.
- Meeklo0
you could do it either way. it is much more editable if you load it into an empty clip though.
mrdobolina
(Jun 9 06, 12:22)Followed the advice above, we are now in an empty movie clip, still same problem..
- joyride0
post your code
- Meeklo0
The code (because I'm not a programmer) I did it following the preset code actions, but here it goes.
loadMovieNum("swf/1_gallery.swf... 1);
The site if you care to see, in jpeg format for now:
http://www.accent.tv/client/belo…
The gallery needs to go where the dj guy is located.
thanks!
- tkmeister0
var mc_load = this.createEmptyMovieClip("mc_lo... 100);
mc_load._x=whatever
mc_load._y=whatever
mc_load.loadMovie("your.swf");something like that.