Tagged Questions

0
votes
2answers
224 views

Accessing an instance in a dynamically added MC

I've added a movie clip dynamically using the following code: var apie=new cPie() apie.x=100 apie.y=100 stage.addChild(apie) I now have a pie on my stage. Yum. Assuming this works like a movie clip ...
0
votes
1answer
588 views

Flash AS3 Mysterious Blinking MovieClip

This is the strangest problem I've faced in flash so far. I have no idea what's causing it. I can provide a .swf if someone wants to actually see it, but I'll describe it as best I can. I'm ...
0
votes
1answer
3k views

The supplied DisplayObject must be a child of the caller

I am a newbie, and I have seached and tried for weeks on this, and I cannot get the grip on this. The simple code below gives the "The supplied DisplayObject must be a child of the caller" error. var ...
0
votes
1answer
53 views

External resources in Flash

Hey all. I'm working on an application that was originally intended for HTML, but I've recently concluded that the best thing to do for my purposes is to do it in Flash instead. One of the big things ...
0
votes
5answers
20k views

Actionscript 3, addChild from library then access it's children by instance names

So I successfully added a movie clip from the library using addChild(), but now I want to access some movieclips that were in that dynamically added movieclip. I've used standard dot notation and ...
0
votes
1answer
504 views

Problem displaying image on the movieclip

Have little bit of problem for my flash apps I have a loader which load the image from the server. I also have a large movieclip that hold a list of small movieclips that are used to preview an image ...