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
285 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
4answers
58 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
221 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
101 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
4answers
76 views

Create your own Events in Actionscript3, how it really work?

I'll try to be objective :) I would like to know how and why someone will need to create you own event. I actualy know how to do it but I don't get the really idea of do such a thing. Could you give ...
0
votes
3answers
139 views

FLEX: flash-component not receiving it's own custom event

I made a movieclip in flash that dispatches a custom event: MyEvent.THE_TYPE = "the_type" in flex I have: <local:my_flash_mc the_type="do_something()" however, this is not working. in flash, my ...
0
votes
1answer
401 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
4answers
331 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
2answers
325 views

How flash dispatchEvent really works?

It is said in the docs, that EventDispatcher's dispatchEvent "...dispatches an event into the event flow". The phrase is nice-looking and doesn't really explain anything. Say, we have two listeners ...
0
votes
1answer
231 views

AS3 The ways to dispatchEvent

I was wondering the difference between these two dispatchEvent method... //1. eventObj:YouTubeSearchEvent = new YouTubeSearchEvent(YouTubeSearchEvent.CHANGE_VIDEO_READY); ...
0
votes
3answers
9k 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
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. ...