Tagged Questions

2
votes
3answers
6k views

How to call a function in a Class from another Class?

Update: Modified title to better reflect my question Hi everybody :) My question today revolves around a CustomEvent I'm trying to send from one sub Class to another. I've used my CustomEvent class ...
1
vote
2answers
302 views

Flash dispatchEvent fired twice

I have two frames with as3 code: // frame1: gotoAndPlay("show controls"); // frame2 - have movieclip with name slide0 // create menu items click listeners for (var i:int = 0; i < ...
0
votes
1answer
63 views

Adobe Air - Dispatch event with parameter

How to pass the addChild(event.target.loader) through a dispatch event from the class to the main timeline? package scraps { ... public class FileScrap extends Scrap { ... ...
0
votes
4answers
63 views

Flex Event Handling

Folks, I had a doubt in Flex's event handling and dispatching mechanism. Consider the below diagram, Both Panels i.e Panel1 and Panel2 are under the same application. I want to dispatch an ...
0
votes
3answers
272 views

send dispatchEvent to child : exemple doesn't work? (flash, as3)

i'd like to send a dispatchEvent to a loaded swf, put into a movieclip. I found a good topic about it : as3 - dispatchEvent from a parent swf to a child swf but my example doesn't work, the "trace" ...
0
votes
2answers
110 views

Overriding in Flash IDE

I'm trying to override dispatchEvent(), with no success in the Flash IDE. Reviewing Adobe docs on the method, it should simply be: override function name() As demonstrated by Grant Skinner, this ...
0
votes
1answer
338 views

Dispatching event doesn't fire :(

package com.fladev.background { //import all classes import caurina.transitions.Tweener; import flash.display.Loader; import flash.display.LoaderInfo; import ...
0
votes
1answer
314 views

The dispatchEvent only gets picked up by my main class (Engine.as) and not the ships class (Weapons.as)

I am currently trying to make a game, but the problem now is that when I dispatchEvent, only my main class picks it up (the engine). I want my Weapons.as to also pick it up. My main class is Engine.as ...
0
votes
1answer
431 views

AS3 Custom Event not firing on Document Class ( using DispatchEvent actionscript)

Im trying to get my head round what is needed to catch event "Beep2", using dispatchEvent. The function "DoNext" is not firing, even though Im able to produce a trace result of the dispatchEvent ...
0
votes
1answer
38 views

How far can one event go and how do I listen for it?

I have code in a flex component that I want to listen for an event, the source of the event is a custom class that's being run by another class that's being run by another class etc etc. I was under ...
0
votes
2answers
284 views

what to addEventListener to when listening for custom events?

I am sending an event when an sql query returns no matches so that I can continue with the addition to the database.. It seems like actionscript is requiring that I attach the listener to something, ...
0
votes
4answers
358 views

How do I dispatch an event from one class and listen for it in another class that isn't a child or parent of the first class?

I am making a game using AS3. I have three classes (Spaceship, UFO, and Scoreboard) which are all children of the class GameEngine. I want to put eventListeners in Scoreboard and then send ...
0
votes
1answer
553 views

dispatchEvent doesn't work in secondary class

I have this problem here: I have a SWF called Application.swf that loads another SWF called jeu.swf. My main class (don't know how to call it haha), is called Main.as. Another class is called ...
0
votes
2answers
2k views

AS3: Trigger artificial MouseEvent

I am converting a simple flash 'drumset' application to support TUIO multitouch using the tuio as3 reference implementation from http://www.tuio.org/?flash As a quick and dirty solution, i am trying ...
0
votes
3answers
10k views

Flash-AS3: Calling a function in a Class from another Class (Part 2) via DispatchEvent

Hey this question is in reply to Joel Hooks's comment on an older question of mine (How to call a function in a Class from another Class?) I was able to fix my own problem using a public static var ...
0
votes
1answer
2k views

AS3 Dispatch Event from Class

I have a class which makes a url request and stores data from that request. When the data is retrieved, parsed, and stored into an array, I'm sending a dispatch event which I listen for in my document ...
0
votes
1answer
498 views

Dispatch Event When Listener Is Added - ActionScript3

Is it possible to dispatch an event from an object when an event listener is added to that same object, without overriding the addEventListener method of that class? I am working on a modularized ...
0
votes
2answers
5k views

AS3 - Dispatch Event Issue

I have an Flash AS3 project that loads external SWFs and controls them in different ways. On some of the loaded SWF files, they have a "Next Selection" button that takes you to a new presentation. ...