ActionScript 3.0 :: AddEventListener() With Parameters?

Jun 2, 2010

I've been browsing lots of forums lately regarding the issues involved with passing parameters into functions called by event listeners. I think I may have come up with a good solution using anonymous functions but I'm not sure yet if its "safe" to do.

Code:
this.addEventListener(Event.ENTER_FRAME, function(e:Event):void {
myFunction(e, arguments.callee, "hello")
});[code]....

The code prints "hello" once, which is what I wanted. I believe I have deleted the anonymous function, but I need some thoughts from those who may be more knowledgeable about flash garbage collection and such to be sure.

View 2 Replies


Similar Posts:


IDE :: Passing Parameters With AddEventListener?

Mar 3, 2009

So I have an MC that has 6 labels and 6 buttons all with different names. When you click on a button, it needs to direct you to it's appropriate frame label in the MC. Now, since AS 3.0 has done away with inline functions, how the heck do I code it so I don't have a function with a bunch of if statements inside of it in addition to all of my eventListeners that I have to add to each of my buttons? In AS 2.0, I would have done it like so:

Code:
function movePlayhead(whichOne:String):Void{
this.gotoAndStop(whichOne);
} button1_mc.onRelease = function():Void{
movePlayhead("label1");
};
button2_mc.onRelease = function():Void{
movePlayhead("label2");
};
Etc...

With AS 3.0, you have to add eventListeners to each of your buttons where each eventListener calls a function, but how can I write it so I don't have to write a bunch of if statements inside the function the eventListeners are calling in order to test for which button is being clicked? Like so:

Code:
button1_mc.addEventListener(MouseEvent.CLICK, movePlayHead);
button2_mc.addEventListener(MouseEvent.CLICK, movePlayHead);
button3_mc.addEventListener(MouseEvent.CLICK, movePlayHead);
function movePlayHead(event:MouseEvent):void {
[Code] .....

View 1 Replies

ActionScript 2.0 :: Send Parameters To Another Function Through AddEventListener?

Nov 21, 2006

Here I've got this bit of code that works alright, but I would prefer to have the parameters that are being sent through myTween.tweenMe(_text, 40, 300, 150, 100, 4000) originate instead with the call to tweenerIt. The problem seems to be that the tweenerIt function needs to receive the e:Event parameter, which is some sort of 'behind the scenes' type of thing that I don't fully understand. If I try putting ... _text.addEventListener(MouseEvent.MOUSE_DOWN, tweenerIt(_text, 40, 300, 150, 100, 4000) and then something like.. private function tweenerIt(param1, param2, param3, etc..., e:Event):void, it doesn't work.

Code:
_text.addEventListener(MouseEvent.MOUSE_DOWN, tweenerIt);
}
private function tweenerIt(e:Event):void {

[Code].....

View 5 Replies

ActionScript 3.0 :: FLVPlayback.addEventListener - What Parameters To Pass To The Eventlistener And The Acting Function

Dec 12, 2010

i have couple of videos that i want to play in succession.  my theory on how to do this was to add an event listener that would call function to change the source of the FLVPlayback component and play once the initial video finished playing. The problem is that i don't know what parameters to pass to the eventlistener and the acting function. I just need someone to fill in the blanks to the following code

[Code]....

View 1 Replies

AddEventListener Order Of Use?

Aug 24, 2009

I am trying to make an interactive flash application that works by detecting mouse overs and clicks on various buttons/movie clips and then moves to the appropriate part of the time line. But I am having an issue when I use more than one addEventListener in any one frame. I have attached the code for one such frame below. When I comment out the addEventListner and the other code relating to the followBall function this works fine and directs the user to frame Inlet_Valve_Open_Frame but now only the followBall function is working and when i try to click on the Inlet_Valve_Button movie clip nothing happens.

Can someone please help. I have never read all the help files on the adobe flash CS3 as i don't have time and i have built this code up based on examples i have found online. I wanted to include my fla file but it's to big 6Mb. But i have attached the swf so you have an idea what i am doing.

[Code]...

View 1 Replies

IDE :: AddEventListener To Var When Value Change?

Dec 30, 2008

Is there any way to add an eventListener to a variable that listenes for if it change value?

View 2 Replies

IDE :: AddEventListener Assigned More Than Once?

Feb 4, 2010

If in a situation, the addEventListener is being assigned more than once for same actionwhat will happen then? Suppose on frame 5 there is ample_btn.addEventListener(MouseEvent.CLICK...... ... and when user navigates the application/site it comes on frame 5 again and again. Will the addEventListener be applied more than once on that button? If yes then what will happen on clicking on that button? will the associated function be called more than once now?

View 5 Replies

IDE :: AddEventListener RemoveEventListener?

Feb 7, 2010

I have made the flash file into CS3 and simplified the idea a bit. Basically I want to click the box on the right to start playing the song and the spectrum and then if I click it again it will stop playing the song and the spectrum then if I click it again it will start playing again ect ect. I could not upload the song.mp3 cause the file size was too big you will have to replace it with another mp3 in the root of the folder and name the mp3 song.mp3.

View 3 Replies

ActionScript 3.0 :: AddEventListener To Call A SWF?

Nov 2, 2009

I want to do something quite simple, but am new to AS3 and the changes since AS2.I want to click a button (play_btn)Then when this happens it opens a SWF (movie.swf) into a placeholder (placeholder_mc) onto the stage. That's it!

play_btn.addEventListener(MouseEvent.CLICK, placeholder_mc);
function placeholder_mc(event:MouseEvent):void{
trace("pressed");
loader.load(new URLRequest("movie.swf"));
}

View 4 Replies

ActionScript 3.0 :: Why AddEventListener Is Not Working

Nov 27, 2008

I have created a scrolling bar menu. All the buttons in the menu work except for the last two. When I place a trace statement within the function it definitely is listening to all the buttons except for the last two. All instances are named correctly. Can the size of the scroller be contributing to why the addEventListener is not working?

View 5 Replies

ActionScript 3.0 :: How To Array To Be AddEventListener

Aug 13, 2011

I want to put each button to be addEventListener. But the compiler throw the error message that $alph is a undefined method.What can I do

"D_btn","E_btn","F_btn","G_btn","H_btn" ,"I_btn","J_btn","K_btn","L_btn","M_btn","N_btn","O_btn","P_btn","Q_bt n","R_btn","S_btn","T_btn","U_btn","V_btn","W_btn","X_btn","Y_btn","Z_ btn");

[code].....

View 5 Replies

Use For Loop With An Array And AddEventListener?

Nov 11, 2009

I have this map I'm creating in Flash. You click on a state, then you can click on an icon to view a tooltip/popup of some information. What I was trying to do was instead of creating new functions and event listeners for every different icon is to use a for loop...but it's not going so well.[code]...

View 2 Replies

Actionscript 3 :: Use A AddEventListener Dynamically?

Jan 8, 2010

I have created a navbar in flash with 5 different movieclips I use as buttons. Each movieclip(button) has a different instance name. Is there a way to use addeventlistener so that I dont have to do soemthing like this[code]...

View 1 Replies

Actionscript 3 :: AddEventListener In SWF Nesting

Apr 29, 2011

I currently have a .swf file that is nested into another .swf file. In the parent SWF file I use a UILoader to load the other .swf file. uiLoader.source = "data/child.swf";- In the child SWF file I have stage.addEventListener(KeyboardEvent.KEY_DOWN,keyPressedDown); and when I run it on it's own, it works perfectly; but when I run child.swf through parent.swf stage.addEvent... give me a null reference exception. Is the stage part of what is causing the issue?, and if so, is there a way to fix this?

View 2 Replies

ActionScript 3.0 :: Using AddEventListener Via Loop?

Sep 10, 2009

I want to add a series of event listeners. they work fine in individual lines of code:

ActionScript Code:
home.addEventListener(MouseEvent.CLICK, route);
resume.addEventListener(MouseEvent.CLICK, route);
portfolio.addEventListener(MouseEvent.CLICK, route);
contact.addEventListener(MouseEvent.CLICK, route);

but when i use this loop, i get a 1006 error, "value is not a function":

ActionScript Code:
var buttonNumber:Number;
var buttonName:Array=new Array("home","resume","portfolio","contact");
for (buttonNumber=0;buttonNumber<4;buttonNumber++) {
buttonName[buttonNumber].addEventListener(MouseEvent.CLICK,route); }

is there something obvious that's wrong with my last line in that loop? i've narrowed it down to the part where I call the array value. but after that - I'm at a loss!

View 2 Replies

ActionScript 3.0 :: Use AddEventListener With A SimpleButton?

Dec 18, 2009

I'm trying to use addEventListener with a SimpleButton object. In an earlier version of my movie, I had identical addEventListener code on a button from the library, and it worked great. But I had to switch to creating the button in AS3 instead, and now the code won't execute. [cpode]...

View 3 Replies

ActionScript 3.0 :: If Statement With AddEventListener ?

May 8, 2010

how i can put an EventListener into a if statement... more specfic:


Quote:

mc_pil_info.buttonMode = true;
mc_pil_info.addEventListener(MouseEvent.CLICK, infob);
function infob(e:MouseEvent):void {[code]..........

for instance i have a mc as my primarily mc as i make to a buttonMode = true.Inside this mc i would like to have a animation, when i rollover and out...:

Quote:

mc.mc.addEventListener(MouseEvent.ROLL_OVER, name);
mc.mc.addEventListener(MouseEvent.ROLL_OUT, name2);[code]....

View 5 Replies

ActionScript 2.0 :: How Exactly Does AddEventListener Work

Jul 13, 2010

I have a for loop that loads a variety of movie clips that I want to have function as buttons. From what I've read adding an event listener is the way to go but I'm not sure how in this case. I've searched online and found a few articles that come close to what I need but not quite. Can't I just tack on an event listener for a mouse click on these objects and have it run a function I have defined elsewhere?Also in said function what code would I need to use to reference the button that was just clicked, would this. work?

View 9 Replies

ActionScript 3.0 :: AddEventListener In A Different Timeline

Jul 20, 2010

I need to add an event listener to a music player script, but the button it is listening to is in a completely different timeline, and layer. (see the attached file for a crude diagram).

How to I reference this in the actionscript in the music player? Each time I try, it disables all other listners in the music player, and outputs a message; Error #1010: A term is undefined and has no properties.

View 4 Replies

ActionScript 3.0 :: AddEventListener With Variable To Be Sent?

Oct 17, 2010

Is it possible to create an EventListener about some event, and also sending some variable to the function that's called when the EventListener = true?

View 1 Replies

ActionScript 3.0 :: Addeventlistener Using A Loop?

Dec 5, 2010

I am trying to add event listeners to a series of buttons using a for loop but can't get the event listeners to trace the name of which button was rolled over. Here's a simplified version of the code.

ActionScript Code:
var bgArray:Array = new Array();//array to hold my sprites
for (var i:Number = 0; i<8; i++)
{

[Code].....

View 5 Replies

ActionScript 3.0 :: EventDispatcher And AddEventListener?

Dec 17, 2010

I just don't get it. I've studied a lot, looked, researched but I don't understand why this isn't working.

Code:
package
{
import flash.display.Sprite;
import flash.events.*;

[Code]...

View 4 Replies

ActionScript 2.0 :: AddEventListener To A Variable?

Nov 6, 2007

add an event listener to a button so you can see when it's been clicked but can you add one to a variable to perform an action when the variable changes or do i just have to use an onEnterFrame function to check the value and act on it if it's changed?

View 2 Replies

ActionScript 3.0 :: Using Variables With AddEventListener?

Feb 7, 2009

[varible].addEventListener(MouseEvent.CLICK, [varible]);If so How? I have tried 50 different ways, with no success. The names of all of my buttons are creating in a for loop and numbered from XML. I need to call each one with a single line. I cant have an event listener for 600 buttons.

View 5 Replies

ActionScript 3.0 :: AddEventListener In Loop?

Mar 4, 2009

I am creating an app with Papervision, and I'm trying to create an interactive grid.I have created a for loop to lay out each tile of the grid, but I want each tile to be individually interactive. I have tried a few things but no luck so far. This is basically how far I am:

Code:
for (var i:uint = 0; i < 10; i++) {
for (var j:uint = 0; j < 10; j++) {

[code].....

View 9 Replies

ActionScript 3.0 :: AddEventListener To A Variable?

Apr 24, 2009

I have a variable

var pageState:uint = 0;

The only values of that variable will be 0 (ZERO) and 1 (ONE).

I need to set a kind of Event Listener. Each time the variable changes:

if (pageState == 0){
x = 10;
}else{
x = 0;
}

How can I set an addEventListener to this?

View 3 Replies

ActionScript 3.0 :: How To Override AddEventListener

Dec 22, 2009

I can't seem to override flash native addEventListener with a custom addEventListener. My code:

Code:
package {
import flash.events.*;
public class myClass extends EventDispatcher {

[code]....

View 2 Replies

IDE :: Assign AddEventListener To 52 Buttons?

Apr 30, 2010

But anyway, my problem is that, I have 52 Button instances on Scene 1 as bellow:

B1 , B2 , B3 , ... , B52

and I want to assign seperated actions for each of them.

The way I currently CAN do that is this:

B1.addEventListener(MouseEvent.MOUSE_DOWN, B1F);
B2.addEventListener(MouseEvent.MOUSE_DOWN, B2F);
B3.addEventListener(MouseEvent.MOUSE_DOWN, B3F);

[Code].....

But "test.addEventListener(..." does not work, and Flash searches for a function named "test" instead of working with the VALUE of "test".

View 1 Replies

ActionScript 3.0 :: AddEventListener Error?

Jan 28, 2011

Im making a cooking game and basically I have my buttons and background export to the stage, which is good, but now I want to make it so when you click on the mustard it exports the mustard movieclip to the stage.For some reason I am getting an error that does not make any sence to me. Error 1061: Call to a possibly undefined method addEventListener through a reference with static type Class.Here is my code:

Code:
package
{

[code].....

View 1 Replies

ActionScript 3.0 :: Can't Seem To Get The AddEventListener To Work

Nov 15, 2011

I am trying to build a simple mock-up of a product my team is designing and I can't seem to get the addEventListener to work. At the moment, my mock-up contains code that Alex Lexcuk has written that deals with the page flipping animation. I suspect that it might be interfering with the addEventListener code I have written. I have placed my addEventListener code inside the Content symbol. I have uploaded my project to the following URL:[URL]

View 6 Replies







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