[flexcoders] Re: ItemRenderer factories, on the fly resetting

2010-06-01 Thread flexwdw
Thanks all for the help...I think the SDK update is the right plan for my situation...an update to 3.5 and the problem goes away

Re: [flexcoders] Re: Flex Training

2010-06-01 Thread Asif Nawaz
No problem. We can manage for 2 or 3 weeks. we are developing data driven and gis applications. so any course covering these two areas really helps us. Regards,asif --- On Tue, 6/1/10, Jeffry Houser wrote: From: Jeffry Houser Subject: [flexcoders] Re: Flex Training To: flexcoders@yahoogroups.c

Re: [flexcoders] Flex Training

2010-06-01 Thread greg h
Hi aasifqau, We currently have 2 weeks (8 days) Flex 4 Instructor Led Training Confirmed. Dates: - Tuesday, June 8 to Friday, June 11 - Monday, June 14 to Thursday, June 17 Details here: http://blog.halcyonsolutions.net/2010/05/25/flex4_classes_in_las_vegas/ We can reschedule a similar bl

RE: [flexcoders] Form not responding to 'enter keyDown' event

2010-06-01 Thread Philip Smith
I found the answer in 'setFocus()'. To: flexcoders@yahoogroups.com From: loudj...@hotmail.com Date: Tue, 1 Jun 2010 23:20:47 + Subject: [flexcoders] Form not responding to 'enter keyDown' event I have a delete confirmation Form object, with a 'keyDown' listener that is not respond

[flexcoders] Form not responding to 'enter keyDown' event

2010-06-01 Thread method_air
I have a delete confirmation Form object, with a 'keyDown' listener that is not responding when the enter key is pressed. The code works in isolation, but not as part of a larger, complex project. Any ideas/tips how I can enable this functionality? Thanks, Philip http://ns.adobe.com/mxml/200

Re: [flexcoders] Flex Training

2010-06-01 Thread Mark Lapasa
Why not just google Flex 4 in a Week? It's like free-ninety-nine. I believe that covers a good breathe of the concepts out there. I don't think there is much value learning from advanced Flex 3 tactics (with the exception of those mx components that haven't made it's way into spark). On Mon, May 3

Re: [flexcoders] Re: Possible to capture the console log and act on it?

2010-06-01 Thread Oleg Sivokon
Not sure if this will work but you can try to define a top-level package function with the name trace() - I never tried it, chances are this won't work though :) Another thing, if it's an AS2 SWF you can compile with MTASC and specify your own function for trace. I haven't tried this, but maybe if

[flexcoders] Re: Possible to capture the console log and act on it?

2010-06-01 Thread luvfotography
Well, I agree, but it's the only way that I can think of eg: the 3rd party swf file won't update the code, and the only way to detect a state change is thru the console log . . --- In flexcoders@yahoogroups.com, Paul Andrews wrote: > > On 28/05/2010 22:25, luvfotography wrote: > > Hi, My flex

[flexcoders] Re: Comobox/DataGrid does not display data

2010-06-01 Thread md_ars
Thanks Ashkar for the reply, I had already tried but it didn't work --- In flexcoders@yahoogroups.com, Akshar Kaul wrote: > > try using formType.refresh() after you modify your array collection. > > Akshar Kaul > > > On Sat, May 29, 2010 at 03:49, md_ars wrote: > > > > > > > I have a Combob

[flexcoders] Re: Flex 4 Spark HSlider ThumbSkin with ellipses?

2010-06-01 Thread turdontherun
And of course no sooner that I post that I start to comprehend and find the right track. The rects have radiusX and radiusY set and so if your thumb (button) is the correct size, it will appear circular. That and looking at styles like fixedThumbSize:true;. I think I am on the right track now

Re: [flexcoders] Flex 4 Spark HSlider ThumbSkin with ellipses?

2010-06-01 Thread Tim Statler
The thumb graphic is a whose radiusX/radiusY settings make it appear circular, e.g.: The HSliderThumbSkin.mxml file contains this kind of markup in the section. -Tim On Tue, Jun 1, 2010 at 8:34 AM, turdontherun wrote: > > > Hi. I am having trouble locating the HSlider Skin classes (f

[flexcoders] Flex 4 Spark HSlider ThumbSkin with ellipses?

2010-06-01 Thread turdontherun
Hi. I am having trouble locating the HSlider Skin classes (for Flex 4 Spark component) that use an ellipse for the thumb. All the classes I find in the SDK source seem to be using rects? Am I delusional? Anyone have any ideas where the source for this is? (I am trying to create a derivative s

[flexcoders] Re: Have a Spark List with an Itemrenderer

2010-06-01 Thread Netaman
I figured it out; Add an addEventListener FlexEvent.UPDATE_COMPLETE to the List component, and in the event function; public function eventcalledfunction(event:FlexEvent):void { if (List.dataGroup.getElementAt(0) == null) return; var newVar:A

[flexcoders] Re: Ctrl+Enter to complete url

2010-06-01 Thread valdhor
Add a key up (or down) event listener to the text field (or whatever). In the function, check for CTRL+Enter and act appropriately. --- In flexcoders@yahoogroups.com, Shabir Gilkar wrote: > > Hi Thompson, > i know that prepend and addpends relation. But i wanna to know how to write > listener fo

[flexcoders] Re: Showing tooltip on the line

2010-06-01 Thread valdhor
If it were me, I would create a custom tooltip; add a mouseover event listener to your line; check the color directly under the mouse pointer and show the tooltip. --- In flexcoders@yahoogroups.com, "akshar" wrote: > > i have a line in my application. i require that a tooltip should come > only

Re: [flexcoders] Has the Flex 4 component architecture changed much from Flex 3?

2010-06-01 Thread Oleg Sivokon
It became more customizable in terms of skinning, the component rendering now is a different concept (you are suggested to have each component as a two-complements, the logic and the representation), so that representation may be changed w/o affecting the logic. It will also enable in certain situa

[flexcoders] Re: StyleName property ignored : when precisely and workarround ?

2010-06-01 Thread valdhor
If you are looking for ways to style a component I would recommend looking at the Flex 3 Style Explorer at http://examples.adobe.com/flex3/consulting/styleexplorer/Flex3StyleExplorer.html Note that colors #11 and #22 are so close to black that you probably wouldn't notice the difference

[flexcoders] Re: Problem with wizard Flex---don't know the librairy flashmatticomponents.swc

2010-06-01 Thread valdhor
Please do not hijack other people's threads. I have created a new thread for you. --- In flexcoders@yahoogroups.com, Nini7016 Nini7016 wrote: > > > Hello > > I found a site which shows how to build a wizard : > http://code.google.com/p/flashmatticomponents/wiki/Wizard > > and i added the li

[flexcoders] Re: Problem with wizard Flex---don't know the librairy flashmatticomponents.swc

2010-06-01 Thread valdhor
First off, you should download the source from SVN and compile it yourself. Once you do that you will notice immediately that the example posted in the wiki does not include the files in the correct path. You need to change the xmlns in the example from: com.flashmattic.framework.wizard.* to:

Re: [flexcoders] Has the Flex 4 component architecture changed much from Flex 3?

2010-06-01 Thread Nick Middleweek
Hi Paul, Although I'll be working with Flex 3 for a couple more years, any new projects will be Flex 4. More importantly though, in what way has the component architecture changed? Cheers, Nick On 1 June 2010 11:29, Paul Andrews wrote: > > > On 01/06/2010 11:00, Nick Middleweek wrote: > >

Re: [flexcoders] Has the Flex 4 component architecture changed much from Flex 3?

2010-06-01 Thread Paul Andrews
On 01/06/2010 11:00, Nick Middleweek wrote: Hi, Has the Flex 4 component architecture changed much from Flex 3? I was recommended to get the Flash Builder 4 Flex 4 Bible to learn about writing components but I'm still working with Flex 3 projects and realistically, I probably will be for a

[flexcoders] Has the Flex 4 component architecture changed much from Flex 3?

2010-06-01 Thread Nick Middleweek
Hi, Has the Flex 4 component architecture changed much from Flex 3? I was recommended to get the Flash Builder 4 Flex 4 Bible to learn about writing components but I'm still working with Flex 3 projects and realistically, I probably will be for a couple more years... Thanks, Nick