Actionscript 3 :: Get Composed MovieClip's Containing (parent) Class After Event?
Aug 13, 2011
I have a MovieClip that is composed in a parent (non-display object) class. We register an event listener against that movieclip - a CLICK handler for example.
With event.target I can get a reference to the MovieClip from within the event handler. But how can I pull a reference to its composing class?
I could simply add a "parentClass" property on the dynamic MovieClip class, but I'm wondering if there's a more elegant/idiomatic way of doing it that I should consider?
View 2 Replies
Similar Posts:
Aug 13, 2009
I made a ship in flash, composed of different movieclips exported for actionscipt, then I converted the whole ship in a movieclip. I wanna access a wing to make it rotate but I don't know how. I tried this:
Code:
package{
import flash.display.MovieClip;
public class Prueba extends MovieClip{
[Code].....
View 8 Replies
Oct 24, 2010
I have movieclip which contains child movieclip. when child movie clip finish to play i want to run a function in a parent movieclip. so I made a custom event dispatcher in the first frame of the child movieclip:
[Code]...
View 4 Replies
Mar 22, 2012
I have a class called "download" and an URLStream object inside it called "urlStream".
From outside the class, I am adding a progress listener like this[code]...
Everything works fine inside the onFileProgress function and bytesLoaded, bytesTotal are read correctly.
What I need is a way to point to the download class from inside the onFileProgress function so that I can retrieve some other public variables defined in the "download" class.[code]...
View 1 Replies
Dec 21, 2011
I am trying to write a custom class for image loading.
public function imageLoader(url:String, mc:MovieClip):void {
loader = new Loader();
loader.load(new URLRequest(url));
[Code]....
I ll get the events in these listeners in the loadImage class. But i want to trigger a function in the calling class or root or stage, when these loader events are fired.
View 2 Replies
Apr 9, 2011
I cannot bubble the event because I want to send to another class that is not even a movieclip but a simple class. So I transform previous source code here Is it impossible with Flash to get the Instance Creator ? for
[Code]...
View 2 Replies
Feb 16, 2009
I just recently been using a lot of prototype javascript stuff, and was wondering there was anything like the "bind" method, for use in AS3. It's proved quite useful to be able to look both at the event.target as well as the class object the handler function might be associated with.
View 5 Replies
Mar 19, 2011
I have an AS3 movieclip with a button. Both the movieclip and button needs a click event but when I click the button it also fires the parent movieclip's event handler.
View 1 Replies
Mar 13, 2011
I have created event listeners for a particular movieclip.Insidet this movieclip there is so many objects.When ever I click on the parent movieclip the event listener calls the function for the child object. I had tried removeEventLIstener()
import flash.display.MovieClip;
import flash.events.Event;
import flash.events.MouseEvent;
var info:MovieClip=new MovieClip();
info.graphics.beginFill(0x000000,0.35);
[Code] .....
I want to delete mc's parent
View 2 Replies
Oct 27, 2009
What I describe here is not correct. My full code had some other things in it that was the reason I couln't see mc2. The code described under is actually working!
I have custom class (MyContainer) that extends Sprite. Then:
Code:
var mycon:MyContainer = new MyContainer();
var mc1:Sprite = new Ball(); // Ball is a sprite in my library
var mc2:Sprite = new Ball();
[Code]....
it works, but I dont want that, as MyContainer has custom variables and functions I use. A simple: if (mycon is DisplayObjectContainer) evaluates to true.
View 0 Replies
Oct 20, 2009
Is it possible to dispatch event from class that isnt extended class of MovieClip? I created my own class and put import flash.events.Event; import flash.events.*; but when i call dispatchEvent compiler throws error:"1180: Call to a possibly undefined method dispatchEvent."
View 3 Replies
Apr 20, 2009
I have a child class that is loaded into the parent class when the swf begins, like so: var myvar = 'hello'; public function Parent() { this.child = new Child(); }; How can I retrieve the variable 'myvar' from within child?
View 1 Replies
Mar 15, 2011
I am trying to access a function that is on my document class for my AS3 project, from a nested class. That is, the Document Class calls Class A which then calls Class B. So I am trying to access a function from Class B, I am trying to use MovieClip(parent).function(); but I am getting error 1120. The MovieClip(parent) (fixed to reflect my document class, etc) works when I try it from other classes but not from this nested class.
View 9 Replies
Dec 10, 2009
I've struggled with this for a long time and have thrown in the towel. How the heck do you climb the ladder, then go back down again into another clip?
View 2 Replies
Jul 30, 2009
I have these buttons in a movie clip and I would like to have only one event listener for the parent, using event.target to point to the children. I have also tried event.currentTarget, and it didn't work.here is the code that works:
test01.abtn.addEventListener(MouseEvent.ROLL_OVER, mouseHandler);
test01.bbtn.addEventListener(MouseEvent.ROLL_OVER, mouseHandler);
test01.cbtn.addEventListener(MouseEvent.ROLL_OVER, mouseHandler);[code]....
It is only targeting the movie clip, not the buttons inside the movie clip.
View 4 Replies
Jan 21, 2012
There is a button inside MovieClip1 and once it is clicked movieclip2 apeares inside movieclip3.
View 3 Replies
Jan 14, 2012
I have an array in which the elements have like ID value "imm1", "imm2", "imm3"..."imm10"
the problem is that the sortOn method consider "imm10" lower than "imm2" because it consider 1 and 0 separatly. Then I tryed to write[url]...
but it don't apply the order correctly and I don't know why... maybe because my ID propriety have an alphanumeric value?[code]...
View 1 Replies
Oct 3, 2010
So far I only find the way to publish camera video as stream: attachCamera()
Is it possible to publish self-composed bytes array as video ?
View 10 Replies
Apr 30, 2010
I think this is a pretty simply problem but I do not seem to be able to pull it off. Basically I have a parent class A, and a child class B.Class A instantiates class B with addChild.There is a shared object which is being updated from a java server (red5) that has an event listener attached to it in class A.I have a function in class A which will pass certain, specific updates from this shared object to class B.The problem occurs is that when class B is instantiated, the event listener from class A doesn't work anymore. I have not removed the event listener from A.?
View 1 Replies
Jul 15, 2011
I have the following parent class that I'm working with:
Code:
package {
import com.poptent.SubClassOne;
import com.poptent.SubClassTwo;
[Code].....
I am trying to set it up so that a parent method called by subClassOneInstance can affect subClassTwoInstance.
View 4 Replies
Nov 25, 2010
Lets say I have a Main Document Class called Main. I also have a child class called childClass that call a function from the Main class and is also imported in the Main class. How should I call the function? I tried this , but when calling the function, it's getting me error.
Main class :
Code:
package {
import flash.display.Sprite;
import com.childClass;
[Code].....
View 6 Replies
Mar 15, 2009
When I use MouseEvent.MOUSE_OUT the target is [object MovieClip], but when I use MouseEvent.ROLL_OUT I get [object Bildspel] - and Bildspel is my class. The thing is that when I use ROLL_OUT I'm not able to delete the targets ENTER_FRAME event.
[Code]...
View 2 Replies
Jun 1, 2010
i am using a movieclip who has two nested movieclips, the problem i am dealing is that when i try to get the width or height of the parent movieclip it always showing the values of the small nested movieclip, when i draw the movieclip it draw perfect but when i read this values shows that error, what can i do?
View 2 Replies
Mar 15, 2012
I have load child swf in parent swf, from child swf i am trying to run my parent swffunction I am trying this code
MovieClip(parent).testfun()
but this code is giving error.
TypeError: Error #1034: Type Coercion failed: cannot convert flash.display::Loader@2b1aa061
[code].....
View 1 Replies
Mar 12, 2011
below shows how to add child in a movieclip. ebd.target.addChild(info_grd); there is button named my_btn inside the movieclip info_grd.I would like to remove movieclip info_grd.parent
View 2 Replies
Jan 28, 2011
I need to grab a parent node in flex without an event listener.
View 1 Replies
Sep 14, 2011
getting hold of a reference to the object that loader might be created in So in the below example I am creating a new loader in a movieclip called "item" When the "complete" event fires, is there away for me to reference "item" through the event.I thought this might be e.currenTarget.parent or somthing...But that doesnt work.
Code:
item.imageLoader.load(new URLRequest("C:/KATY.jpg"));
item.imageLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, IMGaddeditemLoadDone);
item.imageLoader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, IMGaddedimgerror);
[code]....
View 3 Replies
May 17, 2011
I'm trying to access a parent movieClip from the child movieClip
Here's what I want to do,
I've got a movieClip named wrong_mc, which plays for a couple of frames and on the last frame, its got a close button "close_btn" inside of it, now I wanna write the code such that when close_btn is played the movieClip "wrong_mc" should go and stop at frame1, I'm just not able to access this movieClip from the button.
View 5 Replies
Mar 30, 2009
I'm trying to place an event on a child and not the parent but it doesn't seem to trigger the event. Example.
Code:
parent.child.buttonMode = true;
parent.child.addEventListener(MouseEvent.ROLL_OVER, onMouseOver );
private function onMouseOver(evt : MouseEvent) : void{
trace("child = "+evt.target.name);
}
The above event is not getting fired.
View 1 Replies
Mar 3, 2010
Can a parent .swf listen for an event in a child .swf?
View 3 Replies