RE: [flexcoders] Modules Loading in same domain

2009-10-24 Thread Alex Harui
Listen to ModuleLoader for error, progress and other events. Most of the time folks simply have a path/url problem. Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On

[flexcoders] need help making a UITextInput update its numLines property

2009-10-24 Thread DustinB
hello Flexcoders! I am stumped with a problem in my DataGrids itemRenderer. I am using a regular DataGrid and my column has a renderer that extends UIComponent and not DataGridItemRenderer. In my renderer is a UITextField that has wrapping turned on. The user can expand and reduce the width of

[flexcoders] launching popup TitleWindow from a reused mxml component

2009-10-24 Thread Tim Romano
I posted a question the other day about how to prevent a popup from being dragged outside the bounds of the application window. Since I'm fairly new at Flex, some obvious things are not immediately obvious to me. I think my popup window can be dragged outside the main application window

[flexcoders] Elliniki astinomia !

2009-10-24 Thread Fotis Chatzinikos
Για δείτε... Ηδη εχουμε ξεκινήσει και το στέλνουμε παντου. Πρεπει να το δουν οσοι βγαινουν στα κανάλια και λενε οτι αισθάνονται τώρα μεγαλύτερη ασφάλεια που κυκλοφορουν η ομάδα Δ και Ζ και ολο το αλφάβητο της ΕΛΑΣ στα Εξάρχεια.Υπαρχει και με κειμενο στο TVXS *http://www.tvxs. gr/v24003

[flexcoders] EVENT metatag handler

2009-10-24 Thread hworke
Hello developers, in a custom component, I defined an event in metatag like this [Event(name=dragEnd, type=flash.events.Event)] public class ta extends TextArea { } Now inside this component how do I add the event listener for this event which was defined in

Re: [flexcoders] EVENT metatag handler

2009-10-24 Thread Guy Morton
try addEventListener(dragEnd,startPanAndZoom); addEventListener expects a string containing the event name as its first argument. On 25/10/2009, at 10:00 AM, hworke wrote: Hello developers, in a custom component, I defined an event in metatag like this [Event(name=dragEnd,

Re: [flexcoders] EVENT metatag handler

2009-10-24 Thread Vivian Richard
Thanks for the answer and also for the explanation. Regards On Sat, Oct 24, 2009 at 4:35 PM, Guy Morton g...@alchemy.com.au wrote: try addEventListener(dragEnd,startPanAndZoom); addEventListener expects a string containing the event name as its first argument. On

Re: [flexcoders] EVENT metatag handler

2009-10-24 Thread Jeffry Houser
I also want to add that the metadata only affects code hinting. You'll still need to dispatch that event from within your custom component. Vivian Richard wrote: Thanks for the answer and also for the explanation. Regards On Sat, Oct 24, 2009 at 4:35 PM, Guy Morton

Re: [flexcoders] EVENT metatag handler

2009-10-24 Thread Vivian Richard
I did that this way: this.dispatchEvent(new Event(dragEnd)); On Sat, Oct 24, 2009 at 5:53 PM, Jeffry Houser j...@dot-com-it.com wrote: I also want to add that the metadata only affects code hinting. You'll still need to dispatch that event from within your custom

[flexcoders] Can't bind XMLListCollection to Datagrid

2009-10-24 Thread jc_bad28
I changed my webservice call to return e4x but I can't get the XMLListCollection to bind to the datagrid. Here is the pertinent AS code: [Bindable] private var Employees:XMLListCollection; private