Re: [flexcoders] Re: Populate ComboBox from database - NOT using Flex Data Services

2007-03-03 Thread Steve Gustafson
First you need to change your mx:RemoteObject to mx:RemoteObject id=jobSvc destination=ColdFusion source=path.to.cfc showBusyCursor=true mx:method name=GetJob result=getJobResult(event)/ /mx:RemoteObject Then add a result handler: private function getJobResult(event:Object):void {

[flexcoders] Struggling with itemRenderer in DataGrid

2007-02-28 Thread Steve Gustafson
Help. I'm trying to use an itemRenderer to create a comboBox in a DataGrid that is being created with AS. I can create the comboBox, but I am struggling with being able to change the dataProvider for the rendered comboBox, and setting the selected index on the comboBox. The relevant code I am

[flexcoders] Help modifying Cache-Control setting

2006-12-03 Thread Steve Gustafson
I've run into an issue were fields are acting strangely in IE after being populated via remoting. I can't click anywhere on a text field to get a cursor into the text field, there is just a very small 'hit area' in the middle of the text fields. This only happens in IE and only after populating

[flexcoders] Rotatation works with Label but not Button

2006-08-22 Thread Steve Gustafson
=mystyle1 text=This Rotates Fine rotation=90 x=100 y=100/ mx:Button id=btnHistory x=381 y=74 label=History styleName=mystyle1 rotation=90//mx:ApplicationThanks,Steve Gustafson __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search

[flexcoders] Vertical TabNavigator or TabBar - Take 2

2006-08-18 Thread Steve Gustafson
I posted this a few days ago but got no response, so I'm trying again:It seems like this should be easy, but so far I am not making much progress.I am looking to create a tabNavigator or tabBar with a 90 degree rotation. I've tried using embedded fonts but when I do the rotation the text does

[flexcoders] Vertical TabNavigator or TabBar

2006-08-16 Thread Steve Gustafson
It seems like this should be easy, but so far I am not making much progress.I am looking to create a tabNavigator or tabBar with a 90 degree rotation.I've tried using embedded fonts but when I do the rotation the text does not show. Any help is appreciated.Steve __._,_.___ -- Flexcoders

Re: [flexcoders] Changing orientation of labels on chart

2006-08-11 Thread Steve Gustafson
have to use an embedded font as the example above shows... if not, no dice... BrendanOn 8/11/06, Steve Gustafson [EMAIL PROTECTED] wrote: Hi,I am looking to change the orientation of labels on a Column chart. Basically I want to be able to render the label

[flexcoders] Re: Search Flex2 LiveDocs Bookmarklet

2006-08-10 Thread Steve Gustafson
/flexbookmarklet.htmlGusOn 8/10/06, Steve Gustafson [EMAIL PROTECTED] wrote: Greetings,I've created a bookmarklet that uses Google to search the Flex 2 Live Docs. I find this to be the fastest way to deal with Live Docs.Firefox users:Right click this link, and save as a bookmark. I keep mine on my bookmarks toolbar

[flexcoders] Search Flex2 LiveDocs Bookmarklet

2006-08-10 Thread Steve Gustafson
Greetings,I've created a bookmarklet that uses Google to search the Flex 2 Live Docs. I find this to be the fastest way to deal with Live Docs.Firefox users:Right click this link, and save as a bookmark. I keep mine on my bookmarks toolbar for quick access. IE Users:Right click this link, click

Re: [flexcoders] Re: Search Flex2 LiveDocs Bookmarklet

2006-08-10 Thread Steve Gustafson
flexcoders at the same time... http://www.eyefodder.com/blog/2006/08/finding_flex_facts_faster.shtml now if I could only get livedocs pages to load quicker...On 8/10/06, Steve Gustafson [EMAIL PROTECTED] wrote: Oops.It occurred to me that saving the bookmarklet from

Re: [flexcoders] Excel Export

2006-06-14 Thread Steve Gustafson
Jim,What I mean by true Excel files is a binary file that is native to Excel. Not a delimited text file, or HTML file that Excel can open.The difference is that by generating a true Excel file with POI-HSSF, you have the ability to: create multiple worksheetssplit and freeze panesdraw

Re: [flexcoders] Excel Export

2006-06-13 Thread Steve Gustafson
The Time Tracker application is not really exporting to excel. it is just saving HTML with a .xls extension.ColdFusion does not have a native way of generating true Excel files either.As far as I know, the two ways to create native excel files on the server side is using COM, or POI-HSSF.

Re: [flexcoders] Sleep function in ActionScript?

2006-05-31 Thread Steve Gustafson
Sho has a 3 part post on how to handle async events. Here is the link to part 1http://kuwamoto.org/2006/05/16/dealing-with-asynchronous-events-part-1/ Gus -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] Release Dates?

2006-05-16 Thread Steve Gustafson
Has Adobe given any indications on when FlexBuilder and Flash 9 will be released?I'm starting a project for a client and Flex is the right tool... but it has to be out of beta to give to the client.Any insights would be helpful. Thanks. -- Flexcoders Mailing List FAQ:

[flexcoders] FB2B3 programmatically select an item in a ComboBox

2006-05-15 Thread Steve Gustafson
Greetings and thanks in advance for your help!I have a ComboBox that displays a countries. The label is a country Name The data is a country codeI then retrieve a users record via AMF. Standard stuff with First Name, Last Name etc. I am populating various fields with the retrieved data, which

Re: [flexcoders] FB2B3 programmatically select an item in a ComboBox

2006-05-15 Thread Steve Gustafson
the children are all created before you try to set properties on them. Hope that helps.simeonOn 5/15/06, Steve Gustafson [EMAIL PROTECTED] wrote: Greetings and thanks in advance for your help!I have a ComboBox that displays a countries. The label is a country Name The data is a country codeI then retrieve