Ask a Question related to Macromedia Flash, Design and Development.
-
enn #1
createEmptyMovieClip & functions
Hi!
Could somebody explane to me why following code does work:
---------------------------------------------------------------
click_mc = this.createEmptyMovieClip("testClip_mc", 1);
click_mc.beginFill(0x999999, 100);
click_mc.moveTo(100, 100);
click_mc.lineTo(200, 100);
click_mc.lineTo(200, 120);
click_mc.lineTo(100, 120);
click_mc.lineTo(100,100);
click_mc.endFill();
click_mc.onRollOver = function(){
this._alpha = 20;
}
click_mc.onRollOut = function (){
this._alpha = 100;
}
---------------------------------------------------------------
but why this code does not work:
---------------------------------------------------------------
click_mc2 = this.createEmptyMovieClip("testClip_mc2", 2);
click_mc2.loadMovie("./th/2.jpg");
click_mc2._y = 50;
click_mc2._x = 50;
click_mc2.onRollOver = function(){
this._alpha = 20;
}
click_mc2.onRollOut = function(){
this._alpha = 100;
}
---------------------------------------------------------------
The difference is that first code does draw MovieClip by him self. And
assigned functions do work. Second code creates empty movieclip
and then loads jpg into it. And then assigned functions do not work :(
What shoud I do to get second code to work? Flash MX 2004 in use.
thanx,
enn
enn Guest
-
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 and Layers question
Hi - I'm trying to improve my ActionScript skills and have run into difficulty. I'm trying to create a flexible and dynamic system that loads... -
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 <-> setMask
Hi, Does anyone know why I can't seem to set a mask right after i create the movieclip? Something like this ... -
Ciaran #2
Re: createEmptyMovieClip & functions
Maybe when the jpg arrives as a replacement movie clip that the rollOver/Out
actions are lost ? Try waiting for the clip to load fully, then set them.
Ciaran
"enn" <wormhole@hot.ee> wrote in message news:3fcb098c_1@news.estpak.ee...> Hi!
>
> Could somebody explane to me why following code does work:
> ---------------------------------------------------------------
> click_mc = this.createEmptyMovieClip("testClip_mc", 1);
> click_mc.beginFill(0x999999, 100);
> click_mc.moveTo(100, 100);
> click_mc.lineTo(200, 100);
> click_mc.lineTo(200, 120);
> click_mc.lineTo(100, 120);
> click_mc.lineTo(100,100);
> click_mc.endFill();
>
> click_mc.onRollOver = function(){
> this._alpha = 20;
> }
>
> click_mc.onRollOut = function (){
> this._alpha = 100;
> }
> ---------------------------------------------------------------
>
> but why this code does not work:
> ---------------------------------------------------------------
> click_mc2 = this.createEmptyMovieClip("testClip_mc2", 2);
> click_mc2.loadMovie("./th/2.jpg");
> click_mc2._y = 50;
> click_mc2._x = 50;
>
> click_mc2.onRollOver = function(){
> this._alpha = 20;
> }
>
> click_mc2.onRollOut = function(){
> this._alpha = 100;
> }
> ---------------------------------------------------------------
>
> The difference is that first code does draw MovieClip by him self. And
> assigned functions do work. Second code creates empty movieclip
> and then loads jpg into it. And then assigned functions do not work :(
>
> What shoud I do to get second code to work? Flash MX 2004 in use.
>
> thanx,
> enn
>
>
Ciaran Guest



Reply With Quote

