[flexcoders] Re: Centering an Application

2007-12-28 Thread javaguru_uk
--- In flexcoders@yahoogroups.com, Frederico Garcia [EMAIL PROTECTED] wrote: Have a VBox as the top level container (top=0;bottom=0;left=0;right=0). Insert one empty Canvas, then an HBox, then another empty Canvas. The two Canvas' having width and height of 100% and the HBox the same

[flexcoders] Re: Alternatives to LCDS

2007-12-28 Thread den.orlov
Blaze is restricted but free and open source version of LCDS (some components was cut off), check this: http://res.sys-con.com/story/dec07/474563/BlazeDS.JPG After some struggling with LCDS’s we decided migrate to Granite DS. My short comments about differences of GDS ad LCDS here:

Re: [flexcoders] Re: Alternatives to LCDS

2007-12-28 Thread Johannes Nel
red5 as well On Dec 28, 2007 5:19 AM, den.orlov [EMAIL PROTECTED] wrote: Blaze is restricted but free and open source version of LCDS (some components was cut off), check this: http://res.sys-con.com/story/dec07/474563/BlazeDS.JPG After some struggling with LCDS’s we decided migrate to

[flexcoders] Styling itemrenderer

2007-12-28 Thread candysmate
I have a custom itemrenderer: ?xml version=1.0 encoding=utf-8? mx:Text xmlns:mx=http://www.adobe.com/2006/mxml; styleName=rendererStyle /mx:Text which I'm popping into a dataGridColumn with: mx:DataGridColumn headerText= dataField=problem editable=false width=20 textAlign=center

[flexcoders] Cairngorm Overview Question

2007-12-28 Thread Tim Ashworth
Hi All, I've just started playing with Cairngorm (and have been kicking myself for not doing it earlier) and I'm very impressed with the approach and framework. One v v quick question though. I'm using it for an app that has a number of modules that could be treated as standalone modules.

Re: [flexcoders] Re: Centering an Application

2007-12-28 Thread Frederico Garcia
: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links __ NOD32 2752 (20071228) Information __ This message was checked by NOD32 antivirus system. http://www.eset.com

[flexcoders] Re: Solutions for provide a secure access to a Web-Service using Flex

2007-12-28 Thread João
Good point. I wasn't aware that after decompiled it still would be hard to understand the code, except hardcoded strings. Frederico, since you are portuguese, are you aware of the Portuguese RIA community? - www.riapt.org :) João Saleiro

[flexcoders] XMLListCollection.copy drop namespaces - Bug or feature?

2007-12-28 Thread Tom Ortega
Say you have the following XML: sol:Root xmlns:sol=http://www.somesite.com/someurl; sol:Table sol:Row sol:ItemNumber1/sol:ItemNumber sol:ItemNameMyItem/sol:ItemName /sol:Row sol:Row sol:ItemNumber2/sol:ItemNumber

[flexcoders] Security Problem in cross-domain scripting

2007-12-28 Thread Muhammad Ahmed Ullah
Hello, When loading a SWF file within a SWF through Loader's object, I'm getting the following error message: SecurityError: Error #2047: Security sandbox violation: parent: http://192.168.0.20/wid/Widget1.swf cannot access http://192.168.0.18:81/Any/container/ContainerSWF.swf. at

[flexcoders] Type Coercion Error (Object - VO)

2007-12-28 Thread Ghost
Hi, i'm building a project with Cairngorm 2.1 and Flex 2. But i'm getting type coercion error trying to store a element of server result (array of objects using weborb) at a variable called selectedItem. I firstly, store as Array and convert it to a ICollectionView to sort it, but still can't

[flexcoders] Authorized REST GET impossible?

2007-12-28 Thread scott.royston
Is there any way to do an HTTP GET through HTTPService or URLRequest that includes Authorization information? I can't set the Authorization header. I can't set a custom header. I can't use setCredentials(...) against a non-Blaze/proxy backend. I don't want to put it in the URL because it kills

[flexcoders] Socket output progress (after flush)

2007-12-28 Thread gabrielhandford
Anyone know if Adobe is addressing the ability to determine the output progress on Socket? I found an old post here: http://tech.groups.yahoo.com/group/flexcoders/message/72018 http://tech.groups.yahoo.com/group/flexcoders/message/72018 And I blogged about it here:

[flexcoders] Andrew Price

2007-12-28 Thread Toby Tremayne
Anyone know how to get in touch with Andrew Price? His website at http://cfd83.cfdynamics.com:8100 is no longer available and I need to get ahold of him regarding something he submitted to the flex developer's derby - if anyone has his email address or whatever could you forward this

Re: [flexcoders] Re: Solutions for provide a secure access to a Web-Service using Flex

2007-12-28 Thread Frederico Garcia
: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links __ NOD32 2752 (20071228) Information __ This message was checked by NOD32 antivirus system. http://www.eset.com

RE: [flexcoders] why frontcontroller doesn't work?

2007-12-28 Thread Dimitrios Gianninas
Are u getting some kind of error message? Did u add trace statements in the command to see if it actually being called? (cause it may be and then your problem might be elsewhere) Dimitrios Gianninas RIA Developer and Team Lead Optimal Payments Inc. From:

Re: [flexcoders] function binding toString !! Additional information

2007-12-28 Thread yigit
http://127.0.0.1:49661/help/index.jsp?topic=/com.adobe.flexbuilder.help/html/databinding_4.html here; in the first example, there is a bindable function and it is not a setter or getter. so functions other then setters and getters can be binded! so my question should have an answer... by the

[flexcoders] Re: Cairngorm Overview Question

2007-12-28 Thread jer_ela
You're stuck with having a single ServiceLocator because of how it is located, but you can have seperate ModelLocators and FrontControllers for each module. The FrontControllers all use the singleton CairngormEventDispathcer so your event types have to be globally unique even though you are

RE: [flexcoders] Re: Centering an Application

2007-12-28 Thread Randy Martin
All you have to do is set the horizontalCenter=0 and verticalCenter=0 on the outermost component (except Canvas) in your application. For example, mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute mx:Canvas width=100% height=100% mx:TitleWindow width=700 height=450

Re: [flexcoders] function binding toString !! Additional information

2007-12-28 Thread Johannes Nel
override the set data function in your item renderer and bind your function getter to an event you dispatch in there. On Dec 27, 2007 2:39 AM, yigit [EMAIL PROTECTED] wrote: i think i'm misunderstood; because your solution suggestions does not fit my problem. first of all, functions can be

[flexcoders] Re: Custom HTTP Headers broken?

2007-12-28 Thread scott.royston
I believe I have read all the docs, and I've definitely sniffed the http. If there is a particular piece of documentation you belive I've missed, please point me in the right direction. I'd be very interested in understanding why I can use custom headers in a PUT, but not a GET. Thanks --- In

Re: [flexcoders] Re: Custom HTTP Headers broken?

2007-12-28 Thread Johannes Nel
PUT would be determined by the sand box per se, no put outside it. With POST and GET its currently working for me with B3, so that is a bit weird. I have had issues with PUT in general even within the Sandbox but it was B1. sorry to not me of more help, read the security white paper if you have

RE: [flexcoders] What event to catch

2007-12-28 Thread mark goldin
Is it possible that you could have pointed me to a sample or something that would explain in greater detail how to pass an event from the inside of DataGrid's cell up to the DataGrid level? Thanks much. Alex Harui [EMAIL PROTECTED] wrote: If you read the docs, you’ll see

Re: [flexcoders] Re: Alternatives to LCDS

2007-12-28 Thread Guido
Thank you all very, very much. You've been really helpful! Happy new year to you all! Guido. On Dec 28, 2007 7:33 AM, Johannes Nel [EMAIL PROTECTED] wrote: red5 as well On Dec 28, 2007 5:19 AM, den.orlov [EMAIL PROTECTED] wrote: Blaze is restricted but free and open source version of

RE: [flexcoders] why frontcontroller doesn't work?

2007-12-28 Thread Tianzhen Lin
How did you raise the LoginEvent? Make sure when you instantiate LoginEvent, you do var evt:LoginEvent = new LoginEvent( LoginEvent.PROCESSES ); evt.dispatch(); The key is to make sure the event type (LoginEvent.PROCESSES) is declared unless you have a default type for LoginEvent.

[flexcoders] Re: tileList displaying items order other than that represented by dataProvider

2007-12-28 Thread Alex
Thanks for the clarification on recycle. In my case the dataset is changed when it is sorted in dataGrid view by clicking on the column header (the data is otherwise static and no scrolling is involved as I only have 3 data items). As the 2 views (dataGrid and tileList) share a common

[flexcoders] Automatic Validation for Entire Form

2007-12-28 Thread Clinton D. Judy
Isn't there a way to make sure an entire form is validated automatically? Then if it were, it may send an event, doing something like enabling a button or allowing you to go on. If this functionality isn't present, I may have to figure out how to write my own code. I just want to make sure there

[flexcoders] Piechart toolTips not popping up

2007-12-28 Thread richmcgillicuddy
Using Flex 2.01, I have a standard piechart with 4-6 pies and the smaller pies will not pop up tooltips. We have a formatDataType function that just spits out some data but other than that, it is very generic. showDataTips=true. Is this a known issue or is there something I need to do differently.

[flexcoders] data binding question for Cairngorm?

2007-12-28 Thread markflex2007
Hi I have the carirngorm code here import ca.sb.CESF.ESF.vo.PersonVO; [Bindable] public var modelLocator:CESFESFModel = CESFESFModel.getInstance(); mx:TextInput id=eligible_total x=723.5 y=1294 width=82 text={getEligible

[flexcoders] RemoteObject in an Air app

2007-12-28 Thread Scott Mulder
I currently have a perfectly working RemoteObject on my shared hosting server (where I can't install my own server level stuff). After much messing around with the complier arguments it now connects just fine to the standard /flex2gateway/ pointer and a ColdFusion Service which returns native AMF

RE: [flexcoders] data binding question for Cairngorm?

2007-12-28 Thread Tianzhen Lin
If personalData is a class itself, its class definition should also declare [Bindable], or emptstatus should be [Bindable] at least. Bindable is not recursive, and does not propagate. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markflex2007 Sent: Friday, December

Re: SPAM-LOW: [flexcoders] RemoteObject in an Air app

2007-12-28 Thread Jeffry Houser
You probably need to create a new services-config file with a hard coded URL to the flex2gateway. I suspect (but haven't tested) that you need a cross domain file in the root of your server for Flash to access it. Scott Mulder wrote: I currently have a perfectly working RemoteObject

Re: [flexcoders] data binding question for Cairngorm?

2007-12-28 Thread Mark Shen
but I already have the following code in ModelLocator [Bindable] public class CESFESFModel implements IModelLocator { // Single Instance of Our ModelLocator private static var instance:CESFESFModel; public var personData:PersonVO; } Thanks Mark - Original Message

[flexcoders] removing component height

2007-12-28 Thread Matt Maher
I have a thing I bump into from time to time and I know there justMUST be a solution for: Sometimes I want to leave a visual component on the screen but set its height to 0 explicitly, so that it takes up no space. Then later I want to say disregard my '0' and measure yourself. How do I (in

Re: [flexcoders] removing component height

2007-12-28 Thread Daniel Freiman
component.explicitHeight = NaN; is there a reason why you're setting height to 0 instead of setting visible to false? - Dan Freiman On Dec 28, 2007 12:46 PM, Matt Maher [EMAIL PROTECTED] wrote: I have a thing I bump into from time to time and I know there justMUST be a solution for:

[flexcoders] SharedObject security

2007-12-28 Thread andrewwestberg
Is there any way to prevent the physical copying of a .sol file from one user's computer to another? Thanks, Andrew

[flexcoders] Re: ItemRenderer in TileList not redrawing?

2007-12-28 Thread Matt Maher
Anyone reading this thread because they are experiencing issues with item renderers... READ ALEX's BLOG!!! Great write-ups Alex. Thanks --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Renderers get recycled so make sure your renderer can be refreshed w/o being

[flexcoders]How to change the selectedIndex of a LinkBar

2007-12-28 Thread dorkie dork from dorktown
No matter what I try I cannot change the selected item in the linkbar. Try this example. How do I change what item is visually selected. ?xml version=1.0 encoding=utf-8? mx:WindowedApplication xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute mx:LinkBar x=10 y=19 dataProvider=['item

[flexcoders] Re: Centering an Application

2007-12-28 Thread javaguru_uk
--- In flexcoders@yahoogroups.com, Frederico Garcia [EMAIL PROTECTED] wrote: garcia Well,this is in fact a lot of work. I used this because I garcia wanted to surround my main canvas with different colors (like garcia a tile). If you just want your canvas centered you have to garcia insert ALL

Re: [flexcoders] data binding question for Cairngorm?

2007-12-28 Thread Muzak
PersonVO itself must be Bindable. - Original Message - From: Mark Shen [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, December 28, 2007 6:45 PM Subject: Re: [flexcoders] data binding question for Cairngorm? but I already have the following code in ModelLocator

[flexcoders] Sugestion for ComboBox component

2007-12-28 Thread danielvlopes
Hello everybody, i want make a sugestion for Adobe Flex Team, and i know some members of Flex team participate here, in my projects when i use combobox to recover data from database and selected item of this combo must be set to the data recorded in database i do loops in entire dataprovider to

[flexcoders] Re: Centering an Application

2007-12-28 Thread javaguru_uk
--- In flexcoders@yahoogroups.com, Randy Martin [EMAIL PROTECTED] wrote: Randy All you have to do is set the horizontalCenter=0 and Randy verticalCenter=0 on the outermost component (except Canvas) in Randy your application. For example, Randy mx:Application

RE: [flexcoders] removing component height

2007-12-28 Thread Tracy Spratt
And includeInLayout = false; Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Daniel Freiman Sent: Friday, December 28, 2007 12:49 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] removing component height

RE: [flexcoders] Sugestion for ComboBox component

2007-12-28 Thread Tracy Spratt
Extend combobox yourself, add this functionality, it is not difficult. You only need to do it once. And there are components available that do this, I have one that is part of an item renderer, here: http://www.cflex.net/showfiledetails.cfm?ChannelID=1Object=FileobjectI D=767 It is just an

[flexcoders] Re: removing component height

2007-12-28 Thread rueter007
Tracy is right. setting visible=false will still reserve the space taken by the component. You have to set both visible and includeInLayout properties to false so that the component does not take any space in the layout. - venkat http://www.venkatj.com --- In flexcoders@yahoogroups.com, Tracy

[flexcoders] Re: Sugestion for ComboBox component

2007-12-28 Thread danielvlopes
Hello Tracy, i made exactly this, extended and use this function: public function setComboItem(combo:String,item:String):void{ for(var i:Number = 0; i this[combo].dataProvider.length; i++) { if(this[combo].dataProvider[i] == item){ this[combo].selectedIndex = i; }

Re: [flexcoders] data binding question for Cairngorm?

2007-12-28 Thread Mark Shen
yes. I have the code [Bindable] public class PersonVO implements IValueObject { public var firstname:String; ... } But I still have the error. Mark - Original Message From: Muzak [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, December 28, 2007 1:19:00 PM

[flexcoders] Re: removing component height

2007-12-28 Thread Matt Maher
In something like an HBOX making it non-visible does not remove its layout footprint. So the hbox would still have a big blank spot there. -M@ --- In flexcoders@yahoogroups.com, Daniel Freiman [EMAIL PROTECTED] wrote: component.explicitHeight = NaN; is there a reason why you're setting

RE: [flexcoders] data binding question for Cairngorm?

2007-12-28 Thread Tianzhen Lin
I don't think you get an error, but warning instead. If you see no other error, try and run the app and see if the binding is working as expected. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark Shen Sent: Friday, December 28, 2007 2:39 PM To:

[flexcoders] Re: removing component height

2007-12-28 Thread Matt Maher
Damn! This seemingly simple item has really been a bane of mine. I have view stcks, and remove/add children functions in a lot of places I'd rather they were not. Thank you all very much for the help on this. I jut knew there would be a simple answer there somewhere. -M@ --- In

[flexcoders] Alert window position?

2007-12-28 Thread markflex2007
Hi, I have the Alert popup window(Alert.show) but it appear in the right side of the screen,I want to know how to make it popup at center of the screen. Thanks Mark

[flexcoders] Re: tileList displaying items order other than that represented by dataProvider

2007-12-28 Thread Alex
I posted a response which suggested where the issue was as yes, I know this can be made to work as expected. A simple change can make it work but it doesn't fulfill the requirements that I have (with regards to making a reusable component that can be customized by derivation and overriding

Re: [flexcoders] Alert window position?

2007-12-28 Thread Dominique Bessette - Halsema
i created my own popup using TitleWindow and in there you can control the placement. //in the main class call the popup private function getAtomPopUp():void{ var helpWindow:IFlexDisplayObject; helpWindow = PopUpManager.createPopUp(this, getPopUp, false); } On 12/28/07,

[flexcoders] Re: data binding question for Cairngorm?

2007-12-28 Thread markflex2007
yes. it works but I still get warning message,how to fix this to remove the warning message. Mark --- In flexcoders@yahoogroups.com, Tianzhen Lin [EMAIL PROTECTED] wrote: I don't think you get an error, but warning instead. If you see no other error, try and run the app and see if the

RE: [flexcoders] Re: Sugestion for ComboBox component

2007-12-28 Thread Tracy Spratt
Except that assumes the dataProvider for the ComboBox is an array of simple values, which is often/usually not the case. Also, break; the loop inside the if(). No point in continuing the loop once the match is found. Tracy From:

[flexcoders] Re: Sugestion for ComboBox component

2007-12-28 Thread danielvlopes
In my case when had more than one value i always use dataprovider with id and nome, in this case i use this method: public function setComboComplexItem(combo:String,item:String):void{ for(var i:Number = 0; i this[combo].dataProvider.length; i++) { if

[flexcoders] Re: Sugestion for ComboBox component

2007-12-28 Thread danielvlopes
Good idea for break; loop... :D thanks. --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: Except that assumes the dataProvider for the ComboBox is an array of simple values, which is often/usually not the case. Also, break; the loop inside the if(). No point in

RE: [flexcoders] Re: Sugestion for ComboBox component

2007-12-28 Thread Tracy Spratt
Yes, my point is that there are very many ways to use a combo box, so it is a bit difficult to make a generic solution. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of danielvlopes Sent: Friday, December 28, 2007 3:38 PM To:

RE: [flexcoders] Filter typing characters

2007-12-28 Thread mark goldin
Does restict property work for DataGrid fields? Alex Harui [EMAIL PROTECTED] wrote: Most of our text components support the .restrict property (see TextField.restrict). You can also capture the textInput event - From:

[flexcoders] compc CreateProcess error : limit on number of .as files?

2007-12-28 Thread Vijay Ganesan
I run into this error using compc on a Windows XP box: Unable to run compc: Cannot run program C:\Program Files\Ado be\Flex Builder 3 Plug-in\sdks\moxie\bin\compc.exe: CreateProcess error=87, The parameter is incorrect Seems like this happens when there are a large number of .as files. I don't

[flexcoders] Re: compc CreateProcess error : limit on number of .as files?

2007-12-28 Thread rueter007
Vijay, I ran into this problem before too. The solution was to refer all your .as files in the config file (yes, compc takes a config file argument. see flex-config.xml for an example) rather than as an argument like you did. - venkat http://www.venkatj.com --- In flexcoders@yahoogroups.com,

Re: [flexcoders] data binding question for Cairngorm?

2007-12-28 Thread Muzak
If you still get a warning (not an error), try cleaning the project. I've encountered *sticky* warnings in FB even after fixing the code in question. - Original Message - From: Mark Shen [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, December 28, 2007 8:38 PM Subject: Re:

Re: [flexcoders]How to change the selectedIndex of a LinkBar

2007-12-28 Thread Muzak
Apparently the visual selection in a LinkBar only works when its dataprovider is a collection of DisplayObjects (e.g. ViewStack). The ViewStack doesn't even have to be visually present (it has to be on the display list though), so the following will work ;-) mx:LinkBar id=_lbar

Re: [flexcoders] SharedObject security

2007-12-28 Thread Jhonny Everson
I don't know about that, but I guess you can encrypt your data before saving to SO. Maybe that's a solution... On 12/28/07, andrewwestberg [EMAIL PROTECTED] wrote: Is there any way to prevent the physical copying of a .sol file from one user's computer to another? Thanks, Andrew --

[flexcoders] ContextMenu: Detecting when Paste is selected

2007-12-28 Thread Paul Whitelock
I have a TextArea and I need to know whenever a user selects the Paste option from the ContextMenu. I tried creating and adding a ContextMenu to the TextArea, but I can only add an event listener for MENU_SELECT since I believe you need to have a reference to the menu item in order to add a

[flexcoders] Re: Monitoring Webservice data flow with TCPMon

2007-12-28 Thread javaguru_uk
--- In flexcoders@yahoogroups.com, javaguru_uk [EMAIL PROTECTED] wrote: Hello folks, Has anyone played with TCPMon to monitor data exchange between Adobe Flex and a WebService? Can someone give me a hint on how to configure tcpmon to sniff the data? Thanks in advance, Fidel. Got

[flexcoders] Re: Child object disappear after be added to another object

2007-12-28 Thread rueter007
adding a component which is a child of another component already will reparent the component(i.e change the parent of the child to the new canvas, cb in your case.). This is normal behavior. I am not sure why ca would return true but maybe cb is a child of ca? In this case, ca will return true

[flexcoders] Help with DataGrid dataField

2007-12-28 Thread javaguru_uk
Hello folks, I am trying to bind a complex model to a DataGrid. I have modified the employee.xml, just to illustrate what I am trying to do. Here is the code: - begin code employees.xml --- ?xml version=1.0 encoding=utf-8? employees employee name

[flexcoders] Re: Help with DataGrid dataField

2007-12-28 Thread rueter007
datagrid doesn't support this functionality of figuring out what name.given and name.family is. Use a label function on the column to get the data and return the given or family name yourself. - venkat http://www.venkatj.com --- In flexcoders@yahoogroups.com, javaguru_uk [EMAIL PROTECTED] wrote:

RE: [flexcoders]How to change the selectedIndex of a LinkBar

2007-12-28 Thread Tracy Spratt
I don't use LinkBar because it is too limiting. If I need the links dataDriven, I use LinkButtons in a Repeater, otherwise I just use LinkButtons declared individually. LinkButtons call a nav function, which changes the styleName of the previously selected LinkButton(ref stored in instance

[flexcoders] Re: Custom HTTP Headers broken?

2007-12-28 Thread scott.royston
Just to answer my own question, this looks like a known bug: https://bugs.adobe.com/jira/browse/SDK-11401 unfortunately its at the flash player level so I don't know the true resolution of the issue (will fix/wont fix/etc). I'm very curious how custom headers with an HTTP GET is working for you

[flexcoders] Setting default cursor position when the flex web-application loads

2007-12-28 Thread flex.fusion
Hi Guys, My previous posts never got replied, but we shall not leave the hope :) :) so here is one more :) Problem statement: When my web application is loaded, login box popsup by default. Setting focus to the username field does not set the cursor to the field. Please guide me how can we

Re: [flexcoders] Alert window position?

2007-12-28 Thread Savan Patel
Hi Mark, You can use following property : PopUpManager.centerPopUp('your alert popup'); Thanks Regards, Savan - Original Message From: Dominique Bessette - Halsema [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Saturday, 29 December, 2007 1:28:36 AM Subject: Re: [flexcoders]

Re: [flexcoders] Setting default cursor position when the flex web-application loads

2007-12-28 Thread Muzak
Known issue, check archives or google: http://www.google.com/search?hl=enq=flexcoders+focus+application+load Can only be worked around in IE, using JS. - Original Message - From: flex.fusion [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Saturday, December 29, 2007 6:29 AM