Ask a Question related to Macromedia Flash Actionscript, Design and Development.
-
HKSunny #1
how can LoadMovie become to button
//You can copy all to flash script editing
//by this way very simple to do loadMovie
_root.createEmptyMovieClip("test", 1);
loadMovie("1.jpg", test);
//on here i want mark button but can't, no error on windows, not any action
test.onRelease = function() {
trace("onRelease called");
};
//who can help me ? thank you very much
HKSunny Guest
-
FP8 loadmovie bug
Browser Plugin Flash Player 8 on Win IE doesn't seem to work correctly anymore. Instead of loading into a targeted movieclip, it replaces the entire... -
loadMovie()
Hi, I've written the following code, but the .swf file doesn't load: _root.createEmptyMovieClip("navi_mc", 1); navi_mc._x = 50; navi_mc._y =... -
what about GIF in mc.loadMovie() ???
Why doesn't Macromedia support GIF with movieclip.loadMovie()? I very much would like that. -
using loadmovie()
I've created a button symbol and used the loadmovie() function to load an image into the symbol. When I try loading a a photo that was edited (.jpg)... -
loadMovie with Var
hi i have an empty movie called "_root.targetMC" . i duplicate this mc, call it _root.targetMC1" and load a movie called "arial.swf" into it.... -
Stelios Jijikakis #2
Re: how can LoadMovie become to button
hi,
to make this script to work you have first to make sure you loaded your
external file.
you are trying to assign button behaviors on a movie clip which is not
loaded yet, that's why is not working.
thanks
stelios
"HKSunny" <webforumsuser@macromedia.com> wrote in message
news:c2178s$1t0$1@forums.macromedia.com...action> //You can copy all to flash script editing
>
> //by this way very simple to do loadMovie
> _root.createEmptyMovieClip("test", 1);
> loadMovie("1.jpg", test);
>
> //on here i want mark button but can't, no error on windows, not any> test.onRelease = function() {
> trace("onRelease called");
> };
> //who can help me ? thank you very much
>
Stelios Jijikakis Guest



Reply With Quote

