Ask a Question related to Macromedia Flash, Design and Development.
-
CybercafeUser #1
createEmptyMovieClip <-> setMask
Hi,
Does anyone know why I can't seem to set a mask right after i create the
movieclip?
Something like this
_root.createEmptyMovieClip("clip_mc",1);
//draw some lines and such inside clip_mc
_root.createEmptyMovieClip("clipMask_mc",2);
//draw some lines ...
_root.clip_mc.setMask("clipMask_mc");
This doesn't work???
If apply the mask later on in another function, it does work!
Any thoughts??
CybercafeUser Guest
-
Variable problem in createEmptyMovieClip
Can someone please help me with this problem. What the code does is to create an empty movieclip and, through a for loop, create new empty... -
attachMovie-createEmptyMovieClip-loadMovie
Hi there, I have some troubles in Flash MX in my Movie : _root.main. I attach a MC called "InfoWin" in this I create a MovieClip called "vr"... -
createEmptyMovieClip on bottom layer?
I've got a fla with several layers containing my menu, header, content, etc. On the bottom layer I've got some code that creates an empty MC, loads a... -
createEmptyMovieClip always below other layers?
I'm using createEmptyMovieClip() to make, well, an empty MovieClip, in which I then draw a TextField using createTextField(). The trouble is, even... -
createEmptyMovieClip & functions
Hi! Could somebody explane to me why following code does work: --------------------------------------------------------------- click_mc =... -
Patrik Liljebäck #2
Re: createEmptyMovieClip <-> setMask
This might require a frameadvance to proceed applying the mask.
Could updateAfterEvent() help you?
--
Patrik
CybercafeUser wrote:> Hi,
>
> Does anyone know why I can't seem to set a mask right after i create the
> movieclip?
> Something like this
>
> _root.createEmptyMovieClip("clip_mc",1);
> //draw some lines and such inside clip_mc
> _root.createEmptyMovieClip("clipMask_mc",2);
> //draw some lines ...
> _root.clip_mc.setMask("clipMask_mc");
>
> This doesn't work???
>
> If apply the mask later on in another function, it does work!
>
> Any thoughts??
>
>
>Patrik Liljebäck Guest



Reply With Quote

