Tagged Questions

3
votes
2answers
40 views

mouseChildren = false not working very well for me

Happy new year btw ! I want to separate event handling from a container and it child. So as you can see, my source code is very simple : package { import flash.display.Sprite; import ...
2
votes
2answers
360 views

Flash AS3 dynamically added children . Problem with naming them and calling each separated

I need to access each children after i dynamically added them to the stage , but i`m having problems figuring out how . On click it adds the image to the stage , and I need to make them glow one at a ...
2
votes
5answers
833 views

Getting error when using the removeChild method

Happy Pre-Halloween everyone :) My issue today is a DisplayObject error I'm getting when remove a child object. I have code that will launch(addChild) a video container and video controls as well as ...
2
votes
2answers
452 views

Access of undefined property for timeline addChild code :(

I'm trying to do a simple test to figure out another bug, but I'm getting Access of undefined property tsLogo for addChild(tsLogo); I don't get it because this is simple timeline code on the first ...
1
vote
1answer
83 views

Actionscript3.0 addChild removeChild XML

I dont know if for my problem addChild and removeChild method is what i exactly need but as i read around the web that's the technique i need to work with. This is my Xml file: <projects> ...
1
vote
0answers
278 views

Flash 9 full-screen addChild error

I am having issues with Flash 9 player while in full-screen mode. In my case addChild method of DisplayObject behavior is wired while "Press Esc to exit full screen mode" is shown. There are no ...
0
votes
1answer
34 views

Need help understanding AddChild Method

Question: I want to know why I have to add an addChild to both my document class and the External Class in order for my scoreBoard movie clip that I have properly linked from my library to appear on ...
0
votes
2answers
55 views

AS3 addChild with TextFields only showing the last one added

I'm building a Facebook client in actionscript, and I'm running into a problem. I have this block of code: var loader:URLLoader = URLLoader(event.target); var feedResponse:String = ...
0
votes
2answers
55 views

addChild is overlaying a MovieClip on the Stage

How do I make sure that a movie clip that starts on the stage has a higher zindex then when I addChild and add a linked movieClip from the library. Really my code is pretty simple background_image ...
0
votes
0answers
73 views

addChild(mc) doesnt appear, if mc has an own class definition

this is my first question on stackoverflow! :) I'm trying to add a MovieClip from the library to the stage with an external class definition. Let me explain: I drew a green box in Flash CS5 and ...
0
votes
3answers
231 views

Overriding addChild() at root?

I've seen methods for overriding addChild inside of movieclips, but can you do it at the upper-most root level? As in, overriding it on the main timeline.
0
votes
1answer
470 views

ActionScript 3.0 loading an external image into a container movieclip?

I am new to AS3 and I need some help with the Senocular Transform Tool (AS3 version) I'm having trouble with loading in an external image such that I can transform with the Senocular Transform Tool ...
0
votes
1answer
516 views

TypeError: Error #2007: Parameter child must be non-null. at flash.display::DisplayObjectContainer/addChild()

Created a button, now tried to add it to the screen and im getting this error. The code for the button is - private function submitButton():void { submit_button=new SimpleButton(); ...
0
votes
1answer
376 views

Actionscript 3 addChild Problem

this is a test for a xml image menu. In the code I create my containers, I have a movie clip in the stage (menu_mc). CODE: import flash.display.MovieClip; import fl.text.TLFTextField; import ...
0
votes
1answer
1k views

AS3: AddChild issue — “TypeError: Error #2007: Parameter child must be non-null.”

   My following code gave me TypeError: Error #2007: Parameter child must be non-null runtime error. not sure why...I would appreciate any help... mySb = new ScrollBar(); mySb.x = ...
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
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
502 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 ...