[flexcoders] Events and Inheritance

2009-07-17 Thread Jake Churchill
I am still confused about how to make an event come through to an inherited class. For example, in Container.as there is a scroll event. Canvas directly extends Container. When I add canvas inside MXML I can handle the scroll event because it comes through from Container to Canvas.

RE: [flexcoders] Events and Inheritance

2009-07-17 Thread Jake Churchill
From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Jake Churchill Sent: Friday, July 17, 2009 9:09 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Events and Inheritance I am still confused about how to make an event come through to an inherited class

[flexcoders] events

2009-06-22 Thread stinasius
i have an array collection that populates a gallery. my arraycollection is in turn populated when i click an item in a tile list, so whenever i click on a new item in the tilelist, the data for the array collection is supposed to change but nothing seems to change. any help?

[flexcoders] Events and Child SWFs

2009-02-12 Thread stldvd
Hi guys, I've got a parent application with a 'delete' button. When it's clicked, I want to set a flag in a child swf, which is loaded via SWF loader. So in the parent app on the button's click event I'm dispatching an event: dispatchEvent(new Event(inDeleteMode)); In the child SWF's init

Re: [flexcoders] Events and Child SWFs

2009-02-12 Thread Steve Mathews
You are assigning the listener to the wrong object. this is your child swf, but it is the parent that dispatches the event. Depending on the rest of the app this.parent might work. So: this.parent.addEventListener(inDeleteMode, deleteModeHandler); Steve On Thu, Feb 12, 2009 at 10:44 AM, stldvd

RE: [flexcoders] Events and .dispatchEvent();

2008-03-27 Thread Gordon Smith
[mailto:[EMAIL PROTECTED] On Behalf Of Dominic Pazula Sent: Wednesday, March 26, 2008 2:23 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Events and .dispatchEvent(); This is probably a real easy one. I have a manager for my RPC processes that extends EventDispatcher. I have 2 custom events

[flexcoders] Events and .dispatchEvent();

2008-03-26 Thread Dominic Pazula
This is probably a real easy one. I have a manager for my RPC processes that extends EventDispatcher. I have 2 custom events (fault and result) that extend the RPC ResultEvent and FaultEvent. I have listeners in the manager that catch the rpc events, use them to create my events,

RE: [flexcoders] Events and .dispatchEvent();

2008-03-26 Thread Alex Harui
: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dominic Pazula Sent: Wednesday, March 26, 2008 2:23 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Events and .dispatchEvent(); This is probably a real easy one. I have a manager for my RPC processes that extends

[flexcoders] Events while loading Flex application

2008-02-21 Thread PradeepKumarD (#2986;#3007;#2992;#2980;#3008;#2986;#3021;#2965;#3009;#2990;#3006;#2992;#3021; #2980;)
Hi Friends, I want to discuss about that what are the default events occuring while the flex application loads. PradeepKumar, D. Software Developer - Flex/Flash

[flexcoders] Events and performance

2008-01-30 Thread dbronk
I was wondering if I could get some input about events and performance. The exact situation I have is I'm using the HashMap class from Copyright (c) 2006 Eric J. Feminella. I've modified the class so that on put/remove/clear/reset functions it will dispatch a dataChanged event. This way I can

RE: [flexcoders] Events and performance

2008-01-30 Thread Alex Harui
The player is optimized to know if there are listeners. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dbronk Sent: Wednesday, January 30, 2008 6:44 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Events and performance I

[flexcoders] Events in AS3 gives Compile Error 1119

2007-12-03 Thread Deven Hariyani
Hi Flexcoders, I#8217;m having trouble with some advanced features of flexthat involve events, custom datagrid components, and item renderers. Basically, I#8217;ve been following along #8220;Thanks Mister#8221; blogwhich shows how to bubble an event to a parent control. In the blog

RE: [flexcoders] Events in AS3 gives Compile Error 1119

2007-12-03 Thread Deven Hariyani
. --Deven From: Michael Ritchie[mailto:[EMAIL PROTECTED] Sent: Monday, December 03, 2007 12:44 PM To: Deven Hariyani Subject: Re: [flexcoders] Events in AS3 gives Compile Error 1119 There is not eventMenuEvent.MENU_CLICK for MenuEvent, there is aMenuEvent.ITEM_CLICK

[flexcoders] Events and Non-Display Objects

2007-11-28 Thread bithroop
General question here... I understand Event flow with objects in the display list. They flow either up (bubbling) or down (capture) between parent and child. Maybe an oversimplification but my question really is about how to handle events with objects that are not in the display list. How do you

RE: [flexcoders] Events and Non-Display Objects

2007-11-28 Thread Alex Harui
You can try extending EventDispatcher and dispatch events From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of bithroop Sent: Wednesday, November 28, 2007 10:18 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Events and Non-Display

RE: [flexcoders] Events and Non-Display Objects

2007-11-28 Thread Gordon Smith
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alex Harui Sent: Wednesday, November 28, 2007 1:26 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Events and Non-Display Objects You can try extending EventDispatcher and dispatch events From

RE: [flexcoders] Events and Non-Display Objects

2007-11-28 Thread Jehanzeb Musani
:[EMAIL PROTECTED] On Behalf Of Alex Harui Sent: Wednesday, November 28, 2007 1:26 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Events and Non-Display Objects You can try extending EventDispatcher and dispatch events From: flexcoders

RE: [flexcoders] Events and Non-Display Objects

2007-11-28 Thread Gordon Smith
Subject: RE: [flexcoders] Events and Non-Display Objects You can adopt the following two options to achieve your requirements. 1. Your MXML Object should Implement the IEventDispatcher interface and internally it creates an instance of EventDispathcer class and delegates calls to that instance. 2

RE: [flexcoders] Events and Non-Display Objects

2007-11-28 Thread Jehanzeb Musani
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jehanzeb Musani Sent: Wednesday, November 28, 2007 1:42 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Events and Non-Display Objects You can adopt the following two options to achieve your requirements. 1. Your MXML

RE: [flexcoders] Events and Non-Display Objects

2007-11-28 Thread Gordon Smith
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jehanzeb Musani Sent: Wednesday, November 28, 2007 2:16 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Events and Non-Display Objects Thanks Gordon for you prompt reply. Gordon, my experience is somewhat

RE: [flexcoders] Events and Non-Display Objects

2007-11-28 Thread Jehanzeb Musani
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jehanzeb Musani Sent: Wednesday, November 28, 2007 2:16 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Events and Non-Display Objects Thanks Gordon for you prompt reply. Gordon, my experience is somewhat different that what

[flexcoders] Events, itemRenderers, and the horizontalList control

2007-11-27 Thread burttram
I have been trying to figure out how to do something and have finally reached wits end today. I must be missing some fundamental understanding of something between events, itemRenderers, and the horizontalList control... I am very new to itemRenderers, so I suspect this is where my problem lies.

RE: [flexcoders] Events, itemRenderers, and the horizontalList control

2007-11-27 Thread Alex Harui
To: flexcoders@yahoogroups.com Subject: [flexcoders] Events, itemRenderers, and the horizontalList control I have been trying to figure out how to do something and have finally reached wits end today. I must be missing some fundamental understanding of something between events, itemRenderers

[flexcoders] Events in AS3 Classes

2007-05-30 Thread Jurgen Beck
I know that I can write my own custom event class, but I was wondering about something that seems to be undocumented and that seems to initially be promising: When adding a meta tag to an AS class such as: [Event(name=myEvent,type=flash.events.Event)] the event shows up when using the class

[flexcoders] Events not firing from swf imported with SwfLoader

2007-05-18 Thread beecee1977
Hi, I'm not a flash expert so you'll have to bear with me on this. I'm not creating the swf's myself. I've recieved animations in swf's before and used them in image controls and they work fine. (movie clips generated in Flash MX 2004) If however the swf has a button on it (just an animation

RE: [flexcoders] Events not firing from swf imported with SwfLoader

2007-05-18 Thread Ravi Kumar Gummadi
@yahoogroups.com Subject: [flexcoders] Events not firing from swf imported with SwfLoader Hi, I'm not a flash expert so you'll have to bear with me on this. I'm not creating the swf's myself. I've recieved animations in swf's before and used them in image controls and they work fine. (movie clips

[flexcoders] events not being called: HTTPService

2007-05-14 Thread barry.beattie
I'm trying to retrieve a static XML doc for processing. I can step thru all the way to trace(xmlRequest.send); but after that it won't go into either listener method: onResultReturn() onResultFault() and after xmlRequest.send(), the app returns back to the calling code then an error is thrown

RE: [flexcoders] events not being called: HTTPService

2007-05-14 Thread Tracy Spratt
, May 14, 2007 12:20 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] events not being called: HTTPService I'm trying to retrieve a static XML doc for processing. I can step thru all the way to trace(xmlRequest.send); but after that it won't go into either listener method

Re: [flexcoders] events? Should I use mx.events or flash.events?

2006-11-18 Thread Igor Costa
Depends on what are you going to apply it. mx.events it's used to Flex Events and elements packages. flash.events it's used to the new DOM of elements that could used to extend or new components that are coming throw it, wich also supports EventDispatcher base class for it Regards. On

[flexcoders] events? Should I use mx.events or flash.events?

2006-11-17 Thread dj
What's the difference between the two? Thanks, Patrick

[flexcoders] events

2006-05-15 Thread Doug Arthur
Where can I find a suitable list of events for ActionScript 2.0? I know the obvious ones such as click, enter, change, but where can I find a complete list that I can reference? Thanks! -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Re: [flexcoders] events

2006-05-15 Thread Tom Chiverton
On Mon, May 15, 2006 at 4:19 PM, in message [EMAIL PROTECTED], [EMAIL PROTECTED] wrote: I know the obvious ones such as click, enter, change, but where can I find a complete list that I can reference? It's listed per tag in the documentation, see 'events' of

Re: [flexcoders] events

2006-05-15 Thread Doug Arthur
What about keyListeners? How can I implement a KeyListener, because when I run the following code, it errors trying to access the Key variable. Lines 3 6. This statement is not permitted in a class definition. var keyListener = new Object(); keyListener. { x = Key.getAscii(); trace(You

RE: [flexcoders] Events again...

2005-12-05 Thread Dirk Eismann
, December 03, 2005 12:34 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Events again... Just wanted to let you know: Solved the issue. Deriving my AS3 class from EventDispatcher did the trick. However I wonder why Flex Builder does not offer

[flexcoders] Events again...

2005-12-02 Thread Ralf Rottmann
Again an Event question with desperate need for help: Talking about Flex 2.0 Alpha. Two custom classes: ClassA and ClassB. Both .as files, so no MXML, no Component, not derived from any other built-in class. In ClassA you find something like that: public ClassA { private

Re: [flexcoders] Events again...

2005-12-02 Thread Jeff Tapper
Ralf - dispatchEvent and addEventListener are methods of the EventDispatcher class. EventDispatcher is the superclass to most (all?) built in flex components, but is not inherently available to all AS3 classes. If you modify ClassB to instead be public ClassB extends

Re: [flexcoders] Events again...

2005-12-02 Thread Ralf Rottmann
Title: Re: [flexcoders] Events again... Thanks. I'll give it a try. How about my second question: how can I propagate the event up to ClassA (fired in ClassB)? Regards RR -- mobile: +49-(0)170-914-5495 email: [EMAIL PROTECTED] -Original Message- From: flexcoders

RE: [flexcoders] Events again...

2005-12-02 Thread Ralf Rottmann
Title: Re: [flexcoders] Events again... Just wanted to let you know: Solved the issue. Deriving my AS3 class from EventDispatcher did the trick. However I wonder why Flex Builder does not offer EventDispatcher as tooltip help when you type import flash.events. it offers everything

RE: [flexcoders] events issue

2005-10-03 Thread Husain Kitabi
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Husain KitabiSent: Saturday, October 01, 2005 8:48 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] events issue Hi I am having a problem with button click event. When I click a button, it makes a call and talks

RE: [flexcoders] events issue

2005-10-02 Thread Abdul Qabiz
Hi, Can you post the sample-but-complete code, so that we can see what is going wrong? -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Husain KitabiSent: Saturday, October 01, 2005 8:48 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] events issue

[flexcoders] events issue

2005-10-01 Thread Husain Kitabi
Hi I am having a problem with button click event. When I click a button, it makes a call and talks to the remoteObject. But it does that 5times! If I click login button, it logs me into the application but shows 5 alert windows saying I have logged in - it has to show just one.Onthe server

[flexcoders] events between siblings

2005-09-15 Thread Rajesh Jayabalan
Hi, Can anyone tell me if I can send an event from onr sibling to another i.e., I have an application, it has two custom components lets say both are canvas and contain elements in them (Sib1 and sib2) How do I let sib2 know that something has changed in sib1. For addeventlistener I beleive

Re: [flexcoders] Events and Components

2005-04-04 Thread Ashley Streb
You can bind to the result from the GetResults function directly, flex takes care of generating the binding code for you. (no need to dispatch events) E.g., mx:ComboBox dataProvider={this.parent.Webservice1.GetResults.result}/ Or, if you need to invoke a method with the results mx:ComboBox

RE: [flexcoders] Events and Components

2005-04-04 Thread Matt Chotin
framework and the iteration::two book. Matt From: Manish Jethani [mailto:[EMAIL PROTECTED] Sent: Monday, April 04, 2005 12:56 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Events and Components On Apr 4, 2005 11:40 PM, gevgelija50 [EMAIL PROTECTED] wrote

RE: [flexcoders] Events being captured by hidden components

2005-02-21 Thread Matt Chotin
Im not sure why its happening, but you could just put another vbox behind the overlay and disable that one. Matt From: Paul Frantz [mailto:[EMAIL PROTECTED] Sent: Sunday, February 20, 2005 10:22 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Eventsbeing captured by