0
votes
4answers
33 views

How to remove a event listener with an unknown function in as3?

My idea in a small upload software is to use always the same object for all tasks (defined before), I just add and remove the events and make the requests, since the parameters are always the same ...
0
votes
0answers
29 views

Actionscript 3 Where do Events pass through and how is target obtained?

I am currently trying to understand the Event Flow of Actionscript 3, for that I am trying to implement the AS3 Event Flow in Java. I already read ...
0
votes
1answer
26 views

how to remove a gallery call when i click in any other button in AS3.0?

so i have this photo gallery with 2 external classes, this code is the timeline code that calls the classes in to import the gallery and make it work. So far so good, the problem starts when i want to ...
1
vote
1answer
98 views

TimerEvent vs. ENTER_FRAME in AS3/Flex games?

I'm trying to write a simple game in AS3 / Flex 4, and I'm trying to find the best way from the get-go to handle timed execution of code. The most natural approach would be to use a bunch of Timer ...
0
votes
3answers
38 views

AS3: How to catch the event sent from subchild class?

I thought it's a straight forward work but it isn't :(. You can see now how I designed my code. Help please
0
votes
2answers
53 views

AS3: Can I dispatch Event from one Child to another?

Hi guys, I cannot sort out this enigma :). How to send dispatchEvent from Child1 and catch this event in Child2? or How to send dispatchEvent from Child1 and catch this event in Child3? or How ...
0
votes
1answer
20 views

Dispatch custom event onto a dynamicaly loaded SWF

in my Main class I dispatch an event that should be recived by a .swf file, I did load earlier (via loaderMax). Unfortunately the eventListener doesnt recive the dispatched event and therefore doesnt ...
0
votes
2answers
34 views

How to update as3 code faster?

Is it any way possible to update my code (as3) more than 1 time per frame? it doesnt have to do anything visual. I used before event.ENTER_FRAME. If there's a way to do so, could someone explain or ...
1
vote
1answer
33 views

dispatchEvent or checking variable every frame? What's better in a simple parent-child-relationship?

Say I have a parent- and a child-object. At some point a variable (boolean) in the child changes and the parent needs to notice. Now, is it performance-wise cheaper to let the child dispatch an event ...
0
votes
1answer
72 views

How to signal DataGroup about data change in IList Dataprovider?

I Implement IList interface like [Bindable] public class MemList implements IList { public function MemList() { } public function get length():int { var ...
0
votes
0answers
114 views

Flex Combobox Restrict KeyBoard Navigation and change cursor position

I am facing 2 challenges with flex combobox. When i press End key to reach the end of the text, the last item of the list is getting selected. How can I prevent this?n I don't want to override the ...
1
vote
0answers
74 views

Custom Event Listener Callback fails

I have a Flex 4.6 mobile project and I have created a custom event, I can see from various traces that the event is being dispatched as expected, but no matter what I do I cannot get a listener to ...
0
votes
1answer
107 views

Can't dispatch custom event from one class to another in Flash AS3

This is my custom event class: package{ import flash.events.Event; public class PetEvent extends Event{ public static const ON_CRASH:String = "onCrash"; public function ...
0
votes
2answers
102 views

Calling functions vs dispatching events

What is the use of creating own events like this when you can just call the function directly. For example var customEvent:Event = new Event("ev"); _myObject.addEventListener("ev", handler); ...
0
votes
2answers
64 views

as3 draw circle class error

I am trying to create an event listener in a custom class. I have seen this in books but I get error "Access of undefined property on MouseDown". I have tried to abstract the issue as much as ...
0
votes
1answer
92 views

TimerEvent function ignoring Timer delay

I'm working in AS3, Flash AIR 3.2 for iOS SDK. I'm trying to run part of the program only after myLoader finishes loading an image. I have a myTimer.start(); which runs inside ...
1
vote
1answer
107 views

Global Event Dispatcher

What would be the dissadvantages to using a Global Event Dispatcher, as described here: http://www.riaspace.com/2010/11/unframework-so-how-to-getaway-without-any-framework/ Bearing in mind, I am ...
2
votes
2answers
49 views

When to subclass and when to make do with exsiting class?

I want to dispatch events to announce the progress of an asynchronous process. The event should contain 2 properties: work done and work total. As the name suggests ;) i could use ProgressEvent; it ...
0
votes
1answer
67 views

In AS3, is it more efficient to consolidate different event types into just one event type with multiple values?

Is one of these particularly more effiicient than the other? 1: Within Class A: var b:B = new B(); b.addEventListener(B.TYPE1, onType1); b.addEventListener(B.TYPE2, onType2); ...
0
votes
2answers
82 views

Returning values from events in ActionScript 3

I have been working in an ActionScript 3 card game project lately and I ran into aproblem with Event Handlers which I found kinda complicated. I'll try to explain it: There is an indeterminate amount ...
3
votes
1answer
50 views

What is the relationship between the complete and init events when using the Loader?

The documentation for Loader in the Actionscript 3.0 reference appears to contradict itself. The complete event is dispatched when a file completes downloading, but before the loaded movie ...
0
votes
1answer
59 views

Get which entry of the list user clicked

I'm making simple program in Air/Flex where layers of the image are listed in "list" Flex component. Idea is that the user can edit layers by dragging, clicking, double clicking etc. entries in the ...
0
votes
3answers
52 views

A function that deletes an instance by removing it from stage and nulling it does not remove it from memory

I have an issue with a function I use to delete an instance and replace it with another. Basically, it keeps the item in memory no matter what. Inside the object I have weak listeners and I null ...
0
votes
1answer
179 views

Application Design Patterns AS3

just thought I would share something I have found to help delivering data across an application I am wondering what others think about this I wanted to have a way to capture event bubbling up back ...
0
votes
0answers
55 views

Minimize status box not working properly

StatusBox listens for a double-click event listener and minimizes it to 20x20. Double click once to minimize it and double click again to restore it's original dimensions. But when i double click ...
1
vote
1answer
57 views

Event-Driven Actionscript

I'm having problems with an actionscript project. I have to ask the user a question 5 times, the user has to answer and when the user clicks a button, the answer has to be validated. Is there a way ...
0
votes
2answers
79 views

How to access an event handler from one class to another class as3

Is it possible to access an event handler from one class to another and if so how? I want to remove an event handler from an object. I have two objects say objectA and objectB. Inside objectA how can ...
0
votes
3answers
155 views

Flash's AS3 Main Document Class as a dispatchEvent relay

I need an event redispatcher at the top of the DisplayObject hierarchy. Simple situation built from other questions of mine: public class Main extends MovieClip { // Document Class at Flash ...
0
votes
3answers
440 views

Can dispatchEvent() carry arguments in AS3?

Behold this example: addEventListener("myEventType", myFunction("argument")); function myFunction(args:String):Function { return function(evt:Event):void { trace(evt.currentTarget, ...
-2
votes
4answers
60 views

What is the name of this Actionscript 3.0 Library? [closed]

I remember recently coming across an Actionscript 3.0 library specifically made for events. You were able to write less code and easily define event listeners for your projects. I forgot the name and ...
1
vote
2answers
57 views

How much information should one pass through events?

Say, I have a datagrid with checkboxes, and each time a checkbox is marked I store the object in the data property of flex ResultEvent public class MyItemRenderer extends ItemRenderer{ public ...
-1
votes
1answer
91 views

actionscript 3 event manager

I have class EventManager with method: public function addEvent(obj:IEventDispatcher, event:String, listener:Function, useCapture:Boolean = false, priority:int = 0, ...
1
vote
1answer
71 views

ROLL_OVER event on all flash content

I'm trying to send a hover event from flash to js (in some browsers, the mousemove / mouseover events won't trigger over flash content). I've tried to do this: ...
0
votes
2answers
188 views

AS3 Signals: Is there a way to know when a signal has already dispatched?

I'm using Signals by Robert Penner in my latest project. It works great. https://github.com/robertpenner/as3-signals Now I need a way to know when a signal hal already been dispatched somewhere in ...
0
votes
2answers
144 views

AS3: int used where a boolean value was expected

I have three different buttons. When you click one of the buttons, it is supposed to activate the stageSelect function, which should then output the button's number. But when I do that, I get the ...
4
votes
2answers
184 views

Flash events execution order

Check out the next code, tell me what do you expect to be printed. Then run it and check what is really happen. package { import flash.display.Sprite; import flash.events.Event; public ...
5
votes
4answers
113 views

Why use custom events instead of direct method calling?

I'm new to programming and I've been checking a lot of game coding tutorials. I've noticed that on most of them they use custom events to trigger methods instead of calling a method directly. What's ...
0
votes
1answer
114 views

Trigger mouse click on overlapping movieclips

I have two MovieClips (same parent) that overlap, both have a listener for mouse click. But only the top most MC detects the click. Is it possible to get both MCs detect the click using listeners ? ...
3
votes
1answer
52 views

Why am I getting “undefined method” for an implemented IEventDispatcher Interface?

I have a strange situation where I can't see why the IEventDispatcher interface that I have implemented is not compiling and I'm getting Error: Call to a possibly undefined method addEventListener and ...
5
votes
4answers
3k views

To pass a parameter to event listener in AS3 the simple way… does it exist?

Expected / pseudo example: stage.addEventListener(MouseEvent.CLICK, onClick.someWayToPassParameters(true, 123, 4.56, "string")); function onClick(e:MouseEvent):void { trace("Received " + ...
0
votes
1answer
248 views

AS3 - removeEventListener(ADDED_TO_STAGE)

I'm having some problems with trying to remove Event.ADD_TO_STAGE basically in this game ive developed once the lives is less than or equal to zero the game will end and switch to the game over screen ...
1
vote
3answers
362 views

AS3 stage = null?

I've just tried to implement a menu system I saw a tutorial onto a game that I'm working on and it was all smooth sailing until I've now encountered a problem with the stage being set to null and I ...
1
vote
2answers
68 views

Click and Drag in ActionScript

I'm trying to 2D "camera" movement (really just adjusting the x,y of the background image) when a user holds down the mouse button and moves the mouse. I know the MouseEvent.MOUSE_MOVE exists, and ...
0
votes
1answer
87 views

Flash - using multiple event handlers?

so I'm working on a game which uses multiple .as files - and I'm trying to program the game however it keeps kicking back the following error when it reaches line 21 in theGame.as - the error is... ...
0
votes
1answer
64 views

Animation optimization for many identical vector shapes in AS3/AIR

I have many small, identical vector circles that move around the screen, but only appear for a defined period in defined areas. Currently, these circles are children of whatever parent object produces ...
0
votes
2answers
194 views

Do AS3 socket event listeners require function scope where they are defined to end?

Say we have a function and a socket declared in it. We called connect on it. Now we called addEventListener on to connect. In theory we could set function provided to eventDispatcher to change a ...
0
votes
2answers
81 views

AS3. EventListener.Click depends on position

I'm doing a button on AS3 made out of a sprite wich (just a simple square). When I add the event listener so that it acts as a button it works but depending on button.x, so when I put the button where ...
0
votes
2answers
101 views

Flash SOUND_COMPLETE event glitch?

I have an intro.AIF file and a loop.aif file embedded in Flash, I need to play the intro then play the loop. So this is what I did var intro:introSound = new introSound(); var ...
0
votes
2answers
341 views

How to dispatch an event with added data - AS3

Can any one give me a simple example on how to dispatch an event in actionscript3 with an object attached to it, like dispatchEvent( new Event(GOT_RESULT,result)); Here result is an object that I ...
0
votes
2answers
39 views

Updating one of several views with event

I don't undertand mechanism of events in actionscript completely, so please forgive if a question is dump. Supose that we have a Controller (extends EventDispatcher) and several views, note that views ...

1 2 3 4 5 8