ActionScript 3.0 :: Using For Loop With A Subobject.addEventListener

Feb 3, 2010

Code:
for (var i:int = 0; i < 3; i++)
{
teacherOptions.btnAction[i].addEventListener(MouseEvent.CLICK, onBtnAction);
}

I have 3 buttons inside the teacherOptions movie clip and they are called

btnAction0
btnAction1
btnAction2

The code I am using doesn't seem to work...I don't want to create an event listener for each of the buttons beacuse they are going to be a lot more than 3, how can I do what I want to do but without errors ??

PD: I know that if the buttons weren't a suboject the correct code would be:

Code:
for (var i:int = 0; i < 3; i++)
{
this["btnAction" + i].addEventListener(MouseEvent.CLICK, onBtnAction);
}

But when it's a subobject you are dealing...things change.

View 4 Replies


Similar Posts:


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.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 :: 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 :: 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 :: Creating AddEventListener Within Loop?

Jan 14, 2009

Everything works fine except MouseEvent.CLICK addEventListener.menuInfo variable contains part of defined instace name.cURL contains full URL to link.If I trace menuInfo variable, it outputs correctly in order as I exptected.But last event overwrites everything to last element of xList (contains XML list).How do I make this work correctly

Code:
function createMenuEventListener(xList:XMLList):void
{

[code].....

View 1 Replies

ActionScript 3.0 :: NavigateToURL In AddEventListener Loop?

Feb 4, 2010

I'm having a problem with the CLICK and navigateToURL part of my scripting. The roll states work fine. I'm getting this error message and am not sure why.

instance37 : null
TypeError: Error #2007: Parameter url must be non-null.
at global/flash.net::navigateToURL()

[code].....

View 2 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 Functions With A For Loop?

Nov 17, 2010

I have four buttons with eventListeners that call four different functions. Each function name starts with the button name. like this:

Code:
btn1.addEventListener(MouseEvent.MOUSE_OVER, btn1function);
btn2.addEventListener(MouseEvent.MOUSE_OVER, btn2function);
btn3.addEventListener(MouseEvent.MOUSE_OVER, btn3function);

[Code]....

View 2 Replies

ActionScript 3.0 :: Duplicating AddEventListener Functionality With A Loop?

Jun 19, 2009

I have 14 movie clips on the stage, each of which has it's own on and off mode and each goes to a separate URL.I would like to use loops to consolidate the code however I am having trouble with the handler.So far I am using the code below but the question is how do you give each button it's own functionality since the handler is the same?

Code:
for (var i:uint = 1; i < 3; i++) {
this["lexus"+i].addEventListener(MouseEvent.MOUSE_OVER, manageMouseOver);

[code].....

View 3 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 :: 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

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

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

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







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