ActionScript 3.0 :: Access Event.target Outside Event Listener Method

May 13, 2010

how can i access event.target outside event listener method.say for example

my_mc.addEventListener(MouseEvent.CLICK, onC);
function onC(e:MouseEvent):void
{
var m:MovieClip = e.target as MovieClip;
}
trace(m.totalframes);/// not working

now what if i want to get totalframe property of m instance, in short for every movieClip clicked.

View 11 Replies


Similar Posts:


ActionScript 3.0 :: Add Event Listener On Parent For Event.target = Child?

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

Professional :: Target Event Listener When Loading External SWF

Jan 22, 2010

I'm looking for an alternative to using:
stage.addEventListener(KeyboardEvent.KEY_DOWN, keyFunction);

The problem I am encountering is that eventListener above works fine on its own(stand-alone swf), but when loading an .swf externally into another .swf, the listener fails with the following error:
TypeError: Error #1009: Cannot access a property or method of a null object reference.

How can you target the event listener when loading as an external .swf differently?

View 3 Replies

ActionScript 3.0 :: Write A Code And Put An E. Target In A Event Listener?

Jan 27, 2012

I'm trying to write a code and put an e.targaet in a event listener,here's the code,

interBut.addEventListener(MouseEvent.MOUSE_OVER, menuButOver);
function menuButOver(e:MouseEvent){
Object(root).e.target.name.gotoAndPlay(2);
}

what am I doing wrong,

View 2 Replies

ActionScript 3.0 :: Use A Value From An Event Listener Method?

Apr 25, 2009

I have the following method that creates a series of menu buttons of different width (depending on the text inside of it):

Code:
public function NavigationBar() {
for (var i:uint = 0; i < labels.length ; i++) {
menuButton = new MenuButton(labels[i], 0xFFFFFF);[code]....

However, while I can trace the "evt.menuButtonWidth", I don't know how to get/use that width in the method "NavigationBar" (where I need the value of the button width to space out the buttons before the "addChild(menuButton))..

View 4 Replies

IDE :: Bind Method So Event Point At Parent / Class Rather Than Target?

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

ActionScript :: Javascript - Event Listener To Listen "all The Time" Not Just Wait For Any Particular Instance (mouse Click - Keyboard Event) Of Event?

Jul 7, 2011

I am trying to learn JavaScript and I am wondering whether JavaScript has a event listener just like ActionScript's ENTER_FRAME. Basically, I want this event listener to listen "all the time" not just wait for any particular instance (mouse click, keyboard event) of event.

View 3 Replies

ActionScript 3.0 :: Pass Variable Defined In Event Listener Method Outside It?

May 8, 2010

I have 3-4 swf those i want to load one after another like a slideshow.What i  want to do is get the total frames of loaded swf and want to pass that value to Timer object's delay parameter.  i have converted total frames to milliseconds so i can use it in timer constructor. But i am not getting the value of that variable outside of my Event.COMPLETE listener method. Here is my code what i have done

[Code].....

View 2 Replies

ActionScript 3.0 :: Access XML Data Outside The Event Listener?

Jul 7, 2009

I'm having a real difficulty in action script 3 using my xml data from an external source. I have no difficulties importing or manipulating the xml data, the difficulty lies in accessing the information in a different function.

[Code]....

View 8 Replies

Flex :: Drag Manager - Access The Target Of Dragging Event In DragDropHandler?

Mar 29, 2011

I'm making a Matching Game where I have some images on my left and I can drag them onto images on my right and if they are matching, they should both disappear from the stage.

[Code]....

findMatch() is a function that finds in my XML file the path of the file that matches the file that is being dragged. Having that path, I send it to dragEnterHandler where it compares it with the path of the dropTarget file and if they are the same, it accepts it. Then in dragDropHandler, I'm changing the source path of my second image to "", so that it disappears from the stage. How can I access the first file (the one that was being dragged), so that I can change its path to "", to get rid of it?

View 1 Replies

ActionScript 3.0 :: Event Listener Passing Variables - Give Access To EventType?

May 12, 2009

I'm using the following addlistener to listen for a custom event the event works if i put e.Event in the functions parameter but i don't get the passed variables however if i go into the .as folder where the dispatch originates and put EventType in the parmeters field of the function then i get all the variables.........but if i put EventType instead of e.Event in the first example then I get undefined for EventType.....how do give access to EventType?

[Code]...

View 7 Replies

ActionScript 3.0 :: Detect The Finished Event Listener And Fire Out Another Sets Of Event

Nov 17, 2011

if I have an event listerner (mouse, keyboard, enterframe,....event) that is being triggered, and when it finishes its event, something that is able to detect the finished event listener and fire out another sets of event.
 
It works more like MOTION_FINISH in TweenEvent, but it is only available for TweenEvent only, what if I want to detect a mousclick, keyboard, enterframe or even touch event?

View 3 Replies

ActionScript 3.0 :: Proper Listener On Tween Event Inside Mouse Event

Feb 23, 2011

My stage has about 25 buttons on it. Each button when pressed to tweens the background to some random x/y coordinates and then loads an external swf file.This is all working, but the timing is off. How can I wait for the initial background tween to end before I make the loader call to the .swf file.Currently each button's behavior is called on the MouseEvent.CLICK event which calls a function that knows its unique filename.swf. I know you can add the MOTION_FINISH even to the tween event but then I would have to call a new function and lose track of the button that initially called it.

View 3 Replies

ActionScript 3.0 :: Click Event Model - Make A Function And Add It As An Event Listener?

Feb 27, 2007

I'm moving on to my next massive programming project and I'm trying to decide whether I should code it in as 2.0 or 3.0. I came across the new click event model in 3.0. Right now it's looking like a pain in the butt to me. So now I have to make a function and add it as an event listener? what the hell? What's the benefit? I understand stuff like this makes AS a more complete language but it's kinda annoying.

View 1 Replies

ActionScript 3.0 :: Event Listener Woes: Error 1120: Access Of Undefined Property

Apr 15, 2008

I'm having trouble with buttons. I've tried two sets of code and get the same result: an "1120: Access of undefined property enter_btn" error. Here are the two sets of code I am using:

Code:
function onEnterClick(evt:MouseEvent):void {
gotoAndPlay(71);
}

[code]....

I've set the instance name for the button but keep getting the error. Do I need to set up a variable first?

View 9 Replies

ActionScript 3.0 :: Basic Event Listener Mouse Event ROLL OVER

Aug 20, 2009

This is a very basic question but I can't seem to find an answer. I have a mouse over event and have created the buttons with the mouse overs which is working great. I created the actionscript to go to a specific web page when a user clicks the button. Now, I need to add a label to the mouse over so when someone mouse's over any area of the button, it will show them a particular name for the button.

I am sure that this can be done using actionscript in a mouse event roll over command but I can't figure out what I need to show the text. Here is where I am:

[Code]..

View 6 Replies

Actionscript 3 :: Event Listener To Keyboard Event Not Listening In A Module?

Jul 8, 2011

I am doing this inside a module containing viewstacks and their childs.Calling onInit() on creationComplete of module.When I am inside one of the childs of a viewstack of this module and press Enter, it doesnt not invoke the listener function at all (bp inside this does not get hit).

private function onInit():void{
this.addEventListener(KeyboardEvent.KEY_DOWN, keyPressed);
}[code]..........

View 2 Replies

Actionscript 3 :: Use The Same Event-listener Callback For Multiple Event Types?

Nov 18, 2011

This might be more of a subjective question, but is it generally best practice to have one dedicated method per event-types that you add an event-listener?

Such as:

myButton.addEventListener(MouseEvent.MOUSE_OVER, onMouseOver);
myButton.addEventListener(MouseEvent.MOUSE_OUT, onMouseOut);
//Somewhere else in the code...

[Code].....

And if you had a MouseEvent.MOUSE_UP, MouseEvent.MOUSE_DOWN and other relevant MouseEvents event-listeners to watch for, you could even set a switch statement to handle all the various MouseEvent types.

View 1 Replies

ActionScript 3.0 :: Difference Between Event.target & Event.currentTarget?

May 4, 2010

i'm new to AS3. Couldn't understand what some of the explanations out there are getting at, so i decided to post it here. In the code example below, what does event.target & event.currentTarget point to?

[Code]...

View 5 Replies

ActionScript 3.0 :: Add An Event Listener To An Event From A Custom Class?

Jan 7, 2010

how to add an event listener to an event from a custom class. Here are the relevent lines of code (I think) from the class:

[Code]....

View 1 Replies

ActionScript 3.0 :: Changing An Event Listener To A Frame Event?

Nov 3, 2009

I have a code in AS3 that works when you rollover it. I need to use the same code but not with an eventlistener for a mouse event but a frame event when the timeline plays the clip

var coordX:Number = shaker_mc.x;var coordY:Number = shaker_mc.y;var timer:Timer = new Timer(10); shaker_mc.buttonMode = false; shaker_mc.addEventListener(MouseEvent.MOUSE_OVER,startShake);shaker_mc.addEventListener(Mous

[code]....

View 4 Replies

Flex :: Custom Event Not Being Registered With The Following Event Listener?

Apr 20, 2010

printableInvoice.addEventListener(batchGenerated, printableInvoice_batchGeneratedHandler);Results in this error: 1120: Access of undefined property batchGenerated. I have tried it as FlexEvent.batchGenerated and FlashEvent.batchGenerated.

The MetaData and function that dispatches the even in the component printableInvoice is all right. It I instantiate printableInvoice as an mxml component instead of via action-script it well let put a tag into the mxml line: batchGenerated="someFunction()

View 2 Replies

ActionScript 2.0 :: MovieClipLoader Event - Getting OnloadComplete Event To Call A Method In The Main Body Of The Class

Apr 17, 2007

I'm newish to OOP AS... trying to build a image loader that wipes between loads. having trouble getting my onloadComplete event to call a method in the main body of the class. what am I missing?

[Code]...

View 1 Replies

ActionScript 3.0 :: Event.target Or Event.currentTarget?

Jul 11, 2011

I have a Flex 4 List component which I have tied a click event to. In my event, my assignment of the source file paths works just fine --> my larger image displays just fine when a thumbnail click happens. My problem comes when trying to attach elements of the dataProvider to text inputs on another panel. Actionscript is throwing an error. Can someone point me in the right direction??

[Code]...

View 6 Replies

ActionScript 3.0 :: Mouse Event And Event Target

Nov 26, 2009

i have these 2 functions and both are the same:

as you can see disabledAction receives e.target as a paremeter from another function (click function actually).

is there a way to somehow call disabledAction from rollOverHandler ? (so that the code doesnt repeat)

Code:
function disabledAction(target:MovieClip):void {
var txt:TextField = Finder.findTextfield( target as MovieClip ) as TextField;
if (txt) {

[Code].....

View 1 Replies

Xml :: Flex - HTTPService Event Listener So It Triggers Something When ".send" Method Gets Data From XML?

Sep 23, 2009

I've doing a bit of "training" at working with Flex and Remote Data from XML files.This is my HTTPService

<mx:HTTPService id="loginData" url="com-handler/basic.xml" showBusyCursor="true">
</mx:HTTPService>

I have a button and when its clicked its call a function, that calls loginData.send and does a little IF condition, that IF condition relies on the data returned by loginData.The condition doesn't work because its called right next to the loginData.send, and .send method still didn't returned the values from the XML file. But if you click it a second time a second after the first click the IF condition works.So to deal with i wanted to do a eventListener so that when loginData.send returned the data from the XML it fires up the IF condition. But i don't know how to do it.

View 1 Replies

Actionscript 3.0 :: Remove Button Event - Error #1009: Cannot Access A Property Or Method Of A Null Object Reference

Mar 25, 2009

I have a page that I'm working on that works great except I keep getting an "Output" message stating: TypeError: Error #1009: Cannot access a property or method of a null object reference. at StillFrameFoto_fla::MainTimeline/portfolioOut() I'm pretty sure I just need to get rid of my button instance, but I don't know how. I have my buttons on frame 1 and I want them completely gone when it moves to frame 2. Here is the code for one of my buttons on the first frame:

[Code]....

View 2 Replies

ActionScript 3.0 :: Setting Event Handler For Button - Error #1009: Cannot Access A Property Or Method Of A Null Object Reference?

Nov 24, 2009

I seem to be having a recurring problem attaching events to a button i have created within 2 other movieclips.I get the following error:

TypeError: Error #1009: Cannot access a property or method of a null object reference.

So it looks like it can't find the button, in order to attach the event listener. The question is why? I am attaching a similar event to a button on the main timeline and that works fine. So it looks like a scope issue, but I am referring to it properly.

code below:
Code:
import flash.net.navigateToURL;
import flash.net.URLRequest;
import flash.display.*;[code]................

View 6 Replies

ActionScript 3.0 :: Mind-bending Access Control - Assign A Private Method Of Class As An Event Handler To The FlashMOGService Object

Feb 15, 2011

I have written a framework that facilitates RPC calls between AS3 and PHP 5 called FlashMOG. I recently got a forum request that has introduced a pretty bizarre question regarding access control. This will be a lot easier to discuss if you have access to the FlashMOG 0.3.1 client source which is here:

[code]...

The basic idea is that I have a FlashMOGService class which has an RPCSocket member that it may share with other FlashMOGService objects. The idea is that you can create two distinct FlashMOGService objects and have them both connect to the same host/port via socket. I use my special RPCSocket class for two reasons:

1) Let developers use one port but separate functionality into two distinct services...a form of multiplexing i guess

2) RPCSocket adds functionality to the standard Socket class that works to serialize and unserialize data and get it where it needs to go. The essence of the problem here is that created a class with a FlashMOGService object as a member and has tried to assign a private method of his class as an event handler to the FlashMOGService object:

[Code]....

My initial thought is that this should be fine because it's all done within the class. However, when I consider the monkey chain that results in this function being called, it seems almost logical that it wouldn't work. The problem is that the browser freezes when a socket message arrives that tries to call the service's client method, _service.client.firstClientMethod. This client firstClientMethod is attempted when data arrives from the server on the Socket (an RPCSocket, actually). The RPCSocket class deserializes the socket data and extracts an array with a service name, a method name, and an array of arguments. It looks into its own private class variable (an array of services using the RPCSocket) and tries to invoke whatever function was assigned thusly:

[Code]....

I'm guessing there's some kind of infinite loop going on to check access control for the various intertwined classes.

View 5 Replies

ActionScript 3.0 :: Event Listener - Error #2007: Parameter Listener Must Be Non-null?

Feb 4, 2009

this is the error I am having:

TypeError: Error #2007: Parameter listener must be non-null.at flash.events::EventDispatcher/removeEventListener()
at project1_fla::MainTimeline/btnName()

here is my code:

ActionScript Code:
import caurina.transitions.Tweener;
import caurina.transitions.properties.ColorShortcuts;[code]..........

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved