-
as seen on Stack Overflow
- Search for 'Stack Overflow'
var spw:MovieClip = contentsLayer.attachMovie("ScrollPaneWrapper", "ScrollPaneWrapper123",
contentsLayer.getNextHighestDepth());
var sp_:ScrollPane = spw.sp;
Here typeof(sp_) == "movieclip" and I can't set any content to it. I've tried exporting it for ActionScript, exporting the wrapper…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
I need to remove the child(movieClip) from the parent(movieClip) while dragging and add the same child(movieClip) to another movieclip when dropped.
this method is used for dragging
function pickUp(event:MouseEvent):void
{
event.target.startDrag();
}
when i drop it
function…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have three movieClips (Columns) and each MovieClip contains diffrent number of child movieclips. I want to drag each child clip to another Columns.
So how can I change the child to another parent in action script 3.0
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have a MovieClip with some text fields inside, there is a way to clone it or generate another in run time? i mean like having arrays of movieclips like.
MovieClip(0).textbox1.text = "some text"
MovieClip(1).textbox1.text = "some text 2"
and soo.... Thanks
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Here is my current code:
import flash.display.*;
import fl.transitions.*;
import flash.events.MouseEvent;
stop();
var container:MovieClip = new MovieClip();
container.width = 450;
container.height = 450;
container.x = 450;
container.y = 0;
var closeBtn:close_btn = new close_btn();
closeBtn.x =…
>>> More