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


Similar Posts:


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

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 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

Flex :: Send Parameters To Swf Not Using Any Html?

Mar 1, 2010

Is it possible to send params to swf using SWFLoader or something like it?So.. I want to create swf loader (swf) which would be able to send some Application.application.parameters to swf swf I'm triing to load (which are usualy sent to an application from html.)

View 2 Replies

ActionScript 3.0 :: How To Send Parameters - Setters And Getters?

Sep 8, 2011

1. How parameters we can send to a Setter ?
2. What are the best practices of setters and getters?

View 2 Replies

Flex :: Send Parameters In Order In HTTPService?

Mar 25, 2010

I am trying to work with a simple HTTPService. The problem is that my webservice is conscious of the order of arguments it gets. I will tell the problem with an example:

var service:HTTPService = new HTTPService();
var params:Object = new Object();
params.rows = 0;
params.facet = "true";
service.send(params);

Note that in the above code I have mentioned the parameter rows before facet, but the url I recieve is facet=true&rows=0. So I recieve the argument rows before facet and hence my webservice does not work. I figured out that the contents of array is always sent in alphabetical order, which I dont want.

Is there any way I can achieve explict ordering of parameters sent?

Note that I am not in power of changing the logic of webservice(its basically a RPC service supporting both desktop and web client).

View 1 Replies

ActionScript 3.0 :: Use Xml In Combo Boxes Via Unescape To Send Parameters?

Jun 21, 2010

I am trying to populate a component combo box using an urlloaded xml, the xml has been "escaped" and the spaces replaced with +.
 
How do I populate the combo box as when I unescape the xml and replace the +s it is now in string format.
 
When I have the combo box in need to be able to select an option, which reflects in the next urlrequest...e.g.
     
TextLoader.load(new URLRequest(" http://onedev/one/Query2.asp?Cat=THEvalueFROMmyCOMBOBOX "));

[Code].....

View 4 Replies

Flex :: Send Parameters From A Component To Main MXML Application

Aug 8, 2011

I would like to send variables or parameters from Component to Main (MXML) Application. Like my component is FileUpload.mxml and would like to forward the uploaded file details from FileUpload.mxml to Main.mxml.

I tried the following procedure :

com:FileUpload id="fp"

to get the reference for the FileUpload component, however, I am unable to get the variables from the FileUpload.mxml file.

View 1 Replies

ActionScript 3.0 :: Use The DispatchEvent Command To Send The Fire Button Event And Parameters

Mar 6, 2009

I have a game with two joysticks and I use the dispatchEvent command to send the fire button event. What would be a good way to send the number of the joystick to check who pressed the fire button. A bit dirty way would be to save just the number in root or in my main class.

View 1 Replies

ActionScript 3.0 :: Store A List Of Parameters Needed For A Function In An Array And Then Use That In A Function Call?

Jun 23, 2009

is it possible to store a list of params needed for a function in an array and then use that in a funciton call?

[Code]...

or something like that?? Prob have to iterate the array but how do i get the params into the function call? Is this even possible?

View 6 Replies

ActionScript 1/2 :: Pass Parameters Along With A Function That Is A Parameter To Another Function?

Sep 3, 2010

I'm having some trouble passing parameters with a function that is itself being passed as a parameter.In my application code I'm instancing that class five times:they are buttons in a menu.In that class, I've got an onRelease handler that does a number of things when a button is released, one of which is to invoke a function that is defined in the application level of the code.My problem is that I don't know how to send the function parameters.In my StandardButton class I have:

class StandardButton extends MovieClip
{
/* define properties */[code]..........

The function is successfully being "sent" to the StandardButton class, but without any parameters.How can I send parameters to the class instance with the way I've got this architected.

View 7 Replies

ActionScript 3.0 :: Passing A Function To AddEventListener?

Sep 4, 2011

I have 2 methods in a class and 2 properties. The first method fetchXMLData() gets data from an XML file. In the addEventListener method on the urlLoader object, I pass it a listener which tries to set the returned data to the xmlData property. However, it never sets it, and I know the data comes back because I can alert out urlLoader.data using the mx.controls.Alert component.
 
[Code]....

View 18 Replies

ActionScript 3.0 :: How To Loop Addeventlistener Function

Aug 24, 2011

I have a script that contains: an array of movieclips -> MaxBallArr
another array of movieclips -> MaxBallLrg
an array of textfields -> MaxToolTipArr
a library movie clip -> max_box

I'm trying to gather them some how in an addEventListener which worked fine in that way:

ActionScript Code:

[Code]...

View 2 Replies

ActionScript 3.0 :: AddEventListener(MouseEvent.MOUSE_DOWN, Function)?

Dec 28, 2010

i am making drag drop game.i create some movie clips dynamic.

this is the code::
recipesArray=["Steak","Chicken Panee","Bread","Fava Beans", "Jam"];
/////Create Movieclips && set their text

[code].....

View 2 Replies

ActionScript 3.0 :: Passing A Value To A Function While Calling Thru AddEventListener

May 5, 2010

How to pass a value to a function while its calling thru 'Montion_change' or 'Motion_Finish' or ....
 
here I try to pass a value to "tweenEvent function" while that function called... i m using a private variable inside 'mainfunction' (dont tell create that variable out the function ), i just assigning a string value to that variable. after this, i m starting a tween and when the tween started calling 'tweenFunction' using addEventListener,
 
Inside 'tweenFunction' function, i try to trace the 'Name' variable which is inside the mainfunction... not working

[Code]....

View 1 Replies

ActionScript 3.0 :: AddEventListener In A Function No Longer Works

Apr 23, 2011

Should that be avoided due to local scope factor? function resizeDisplay() below no longer works

[Code]...

View 4 Replies

ActionScript 3.0 :: AddEventListener On Button Inside Of Function

Sep 21, 2010

I'm working on tabs that display different carousel type galleries with previous and next buttons. So, I've got a function that is being called by these tabs and is passed an array based on which tab is selected. Inside of that function, I'm adding an eventListener to the previous and next buttons and using a callback function that works based on the number of items in the array that was passed through the function call. I was running into some strange happenings and using trace statements. Here's what I find: The first call to the function works and traces correctly. The second call traces 2 trace statements; the 3rd call traces 3 statements and so forth. So, I'm assuming that each call is adding another event listener to the buttons.

Here's a condensed version of the function in question:
Code:
Select allfunction loadgallery(picArray){
/* Image Loading code here */
var totalPics = picArray.length;
var picNum = 0;
next_button.addEventListener(MouseEvent.CLICK, nextPic);
function nextPic (e:MouseEvent):void{
picNum++;
/* Tween actions here */
trace("picNum: " + picNum); //this traces 1x first time, 2x second, 3x third, etc.
}}

Do I need to remove the event listener from the next_button? If so, what's the best way to do that? Or does someone see something else that I"m overlooking? I tried removing the event listener at the beginning of the function, but failed.

View 3 Replies

ActionScript 3.0 :: Passing A Value To A Function While Calling Through AddEventListener?

May 5, 2010

How to pass a value to a function while its calling thru 'Montion_change' or 'Motion_Finish' or ....here I try to pass a value to "tweenEvent function" while that function called... i m using a private variable inside 'mainfunction' (dont tell create that variable out the function ), i just assigning a string value to that variable. after this, i m starting a tween and when the tween started calling 'tweenFunction' using addEventListener,

Inside 'tweenFunction' function, i try to trace the 'Name' variable which is inside the mainfunction... not working.Here my code....

import fl.transitions.*;
import fl.transitions.easing.*;
function mainFunction() {[code].....

View 1 Replies

ActionScript 3.0 :: Pass Variable To Function On AddEventListener?

Jan 15, 2011

So i have 4 buttons, that represent values: 10, 50, 100, 1000

When i click one of them i what a global variable declared: pulic var stake:int = 0; to e initialized with the value of the button pressed.

So i have the following code:

stake0050_btn.addEventListener(MouseEvent.CLICK, changeStake);

i would like to have a function changeStake, witch will update a variable called stake.

How can i tell the event listened to call changeStake with an argument?

View 5 Replies

ActionScript 3.0 :: Flash - Loop Addeventlistener Function?

Aug 24, 2011

I have a script that contains:an array of movieclips -> MaxBallArranother array of movieclips -> MaxBallLrgan array of textfields -> MaxToolTipArra library movie clip -> max_boxI'm trying to gather them some how in an addEventListener which worked fine in that way:

Code:
MaxBallArr[0].addEventListener(MouseEvent.MOUSE_MOVE, MaxshowNav)
MaxBallLrg[0].addEventListener(MouseEvent.MOUSE_OUT, MaxhideNav)

[code].....

View 6 Replies

ActionScript 3.0 :: Triggering Events With Date Function (addEventListener)?

Jul 3, 2009

I am trying to figure out a way to be able to trigger an event which will display a message. The only thing is that the date function does not seem to be equipped with the ability to set events to it. I read the reference to it on the Flash support site and it seems as it is usually only used for date stuff.
 
I downloaded a digital clock, but it seems as that is based on diffrent principals as it was simply iterating throught the if stmts

[Code]...

View 7 Replies

ActionScript 3.0 :: Error#1006 AddEventListener Is Not A Function -at The Following Class

Oct 5, 2010

I'm getting this error and can't figure out why. error#1006 addEventListener is not a function -at the following class.

Here's the class where it says I'm having the problem, it's one of 4 classes I'm working with:

[Code]...

View 5 Replies

ActionScript 3.0 :: AddEventListener Command To Output To Moveout Function

Nov 26, 2009

I wrote the following function
ActionScript Code:
block_marketing.addEventListener(MouseEvent.MOUSE_OVER, moveout);
block_marketing.addEventListener(MouseEvent.MOUSE_OUT, moveout);
var blockmarketingxoriginal = block_marketing.x;
function moveout(m:MovieClip, originalpos:Number, e:MouseEvent){
var xfuture = m.x + 40;
[Code] .....
How to get the addEventListener command to output to the moveout function?

View 9 Replies

ActionScript 3.0 :: AddEventListener(Event - Function - False - 0 - True)

Feb 5, 2011

I was wondering whether anyone could explain to me the (false, 0, true) parameter of eventListeners. Its very basic I think!

View 6 Replies

ActionScript 3.0 :: Can't Override AddEventListener Function To Remove All EventListener?

Nov 16, 2011

I'm trying to override the addEventListener function to input an extra line of code to put the event listener type in an array so I can remove it all at once.But the override function doesn't seems to run.

Code:
override public function addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = true):void

[code].....

View 5 Replies

ActionScript 3.0 :: AddEventListener Function References Child In Movieclip. How Do I Stop This?

Jun 28, 2010

I built a custom designed checkBox. The movieclip is in the libary and dragged onto the timeline of my .swf. I'm using CS4 & AS3. I'm using procedural AS3 instead of OO AS3.The checkbox movieclip has a child movieclip inside of it so I can apply a drop shadow filter to some of the graphics .When I put an eventlistener on the custom checkbox it works fine but when I try to reference the checkbox movieclip inside the eventlistener function, the event.target.name is referring to the child movieclip (just a graphic with a drop shadow filter).From my reading it looks like the function propogates down to the child movieclip but I don't want it to do that.How do I reference the parent movieclip? or

B. stop the eventlistener from propogating down to the child movieclip?

I tried using stopPropagation(); but it didn't stop the function event.target.name from trickling down to the child movieclip.Here's what AS3 looks like.The trace statement displays "step3_mc.cbEmail_mc.instance25"instead of what I need "step3_mc.cbEmail_mc"

step3_mc.cbEmail_mc.addEventListener(MouseEvent.CLICK, fnc_cbClick);step3_mc.cbAgree_mc.addEventListener(MouseEvent.CLICK, fnc_cbClick);
function fnc_cbClick(event:MouseEvent):void  {[code]....

View 2 Replies

Actionscript 3 :: LoaderInfo.addEventListener Does Not Work When Called Inside Function

Mar 1, 2012

I have preloader code in my main FLA, and I load the corresponding preloader (a small file) externally. When I detect that the file is fully loaded, I need to add the listener to the content that I want to "preload".[code]If I use it this way, the loaderInfo listener does not work, but if I add the listener ouside of the handler function, it does.The problem is, I need it to work from within the complete handler, because obviously, the preloaded can show the % completed only after it's loaded...

View 1 Replies

ActionScript 3.0 :: Flash AddEventListener In A For Loop And Value Keeps Coming Back The Same For The Function

May 31, 2011

This code keeps coming back with the same value for i when the button is clicked. It is looping through but only the last value gets passed.

[Code]...

View 1 Replies

ActionScript 3.0 :: Trace() Doesnt Work Inside AddEventListener Function In Eclipse?

Jul 3, 2009

I got this weird problem, when i run this code:

Code:
package {
import flash.display.MovieClip;

[Code]....

In Flash Cs3 it acts exactly as i want, the ENTER_FRAME runs and the addObject places numerous sprites on the stage. In the window output i'll see the trace. But when i run this code in Eclipse which is set up to use the Flash Player as output i get the first trace from EDHV_ImageSlider but the traces inside addObject won't show up, the sprites however are generated perfect.

The difference between the eclipse setup and the cs3 setup is the fact that the cs3 setup has a *.fla which calls the *.as package.

View 1 Replies







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