0
votes
1answer
35 views

Adding multiple movieclip from array

I got this function from internet which slice an image into part like tiles and put them in a array (linear or multidimensional). ---EXAMPLE--- var sliceClips:Array = ...
0
votes
1answer
59 views

MovieClip did not play animation when using addChild()

i am trying to make a simple flash game. And I've been searching about this problem but I can't found any questions/answers that helped me, so here it is: I am trying to use addChild() to generate ...
0
votes
2answers
148 views

How to add movieclip inside textfield

I would like to add a movieclip to a textfield. The objective is to be able to scroll the movie clip, since the uiscrollbar only works for textfield, i think my solution to scrolling the movie clip is ...
-1
votes
1answer
144 views

As3 preload/render a single movieclip before addChild to stage

I have some problems. I want to preload a single movieclip instead of preloading the whole project. Is there a way to that. Concept Game. Intro Displayed - Intro removed - Title Dislplayed - Title ...
1
vote
1answer
96 views

addchild in a movieclip in a movieclip in a movieclip

I would addchild to a movieclip who is in a movieclip who is in another movieclip. I try: this.profil.bonome0.bonome.addChild(conteneurImage); and it doesn't work but this does: ...
0
votes
2answers
524 views

AS3: Child added, but not displaying

public class ItemView extends MovieClip { private var _title:TextField; private var _extra:MovieClip; public function ItemView( ) { setup(); return; } private function setup( ...
0
votes
2answers
630 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
850 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 ...
1
vote
1answer
9k 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
73 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
24k 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
580 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 ...