Hi everyone, is it possible to export to Excel? If I have a chart or a datagrid, is it possible to export it to Microsoft Excel? Thanks. -David....
897
Felipe Albertao
felipealbertao
Dec 2, 2008 12:22 am
Flex does not do it by itself, but you do have a few options: 1) Copy the datagrid to the clipboard, so the user can paste it into excel (it sounds...
898
Luke Bayes
foreeldo2001
Dec 2, 2008 12:40 am
You could really easily serialize your data to a CSV (Comma Separated Values) text file and send that to the client using Flash Player 10 file features.... ...
899
rpg_02
Dec 3, 2008 1:59 am
FLASH DEVELOPERS Zynga Game Networks have multiple openings for Flash Developers ( with AS2/AS3 ) in either San Francisco or Los Gatos. Please contact me: Ray:...
900
sailorsea21
Dec 3, 2008 10:07 pm
Hi everyone, I have a script that copies data from a datagrid to a clipboard and I can then paste it in Excel. How can I modify this script if I would like to...
901
laursensc
Dec 4, 2008 2:59 am
Stealth-Mode Startup Seeking UI Engineers Tired of bug fixes, unit tests, and incremental feature requests? Now is the time to get a fresh start. The economy...
902
Curt Bererton
bererton
Dec 4, 2008 7:12 pm
Hey Silvafug folks, I've met several of you, and think that a lot of you have some great skills that we could use here at ZipZapPlay/PlayCrafter. In case...
903
Tom Ortega
lord_bron
Dec 5, 2008 11:33 pm
I'll be updating the site later this weekend. However, I just wanted to give you a heads up. We'll be having the year-end Silvafug meeting come next...
904
Rick Carnal
ric_o_suave
Dec 6, 2008 1:11 am
Oh well, I guess it's always better to ask forgiveness than permission. Count me in, I'll bring some goodies in my sleigh! I actually meant to copy our...
905
sunild999999
Dec 6, 2008 12:22 pm
Hi All, I'm curious, are the meetings ever held in the South Bay? I work in Sunnyvale, and it's difficult to get to SF. I've never been to a meeting, but...
906
Tom Ortega
lord_bron
Dec 6, 2008 12:24 pm
Hi Sunil, Yes, they are. We're currently working out the details so that you have one meeting a month in both locations. Thanks, Tom...
907
Vivian Richard
hworke
Dec 6, 2008 2:23 pm
Very nice to hear that Tom. It will be great if South Bay can have their own separate meeting. If you need any help please let me know....
908
ballgame
norcaltrf
Dec 10, 2008 10:29 pm
Happy Holidays SILVAFUG - Its late in the year and amazingly, my client has needs in the areas of Sr. Flex Architect/Developer and an AS3/Flash Developer. My...
909
Michael Christoff
stoff0
Dec 10, 2008 10:29 pm
I was all psyched to get browser history working so easily in my app, but now it looks like it's causing white flashing in firefox 3 and os x. At first I...
910
Tom Ortega
lord_bron
Dec 10, 2008 10:40 pm
When: Thursday, December 11th 2008 Training - 6:30 pm to 7:30 pm Year End Party - 7:30 pm to 9:30 pm Where: Location: Kojak Room Adobe Systems Incorporated 601...
911
sunild999999
Dec 10, 2008 11:59 pm
For what it's worth, I'm not seeing this happening with Firefox 3.01 and Flash Player 10 on Mac OS X (10.5.5). Well, let me clarify, I don't seem to notice any...
912
Josh Tynjala
joshtynjala
Dec 11, 2008 12:56 am
I have FF 3.0.4 on OS X 10.5.5 and the first time I clicked the "Receiving" tab the entire background of the app turned white behind the TabNavigator. It...
913
Douglas Kadlecek
kadlecek
Dec 11, 2008 3:18 am
What¹s the company? d ... Douglas Kadlecek 415-921-8808 doug@... Re: [silvafug] Who's Looking? Whats the company? d On 12/9/08 4:26 PM, "ballgame" <...
914
lorenbryand
Dec 11, 2008 10:40 pm
Good Afternoon, This is a high priority position for us to fill and we are looking to hire someone immediately. If you send me you resume, I will send you ...
915
jpsoulsf
Dec 12, 2008 11:25 pm
I am having a similar issue, but I think it's unrelated to the browser. My issue was in regards to custom components showing the white box when disabled. I was...
916
sunild999999
Dec 12, 2008 11:40 pm
With respect to the disabled color, you might try using the disabledColor style that many Flex controls/containers have. Sunil...
917
jpsoulsf
Dec 13, 2008 1:07 am
Perfect! Thanks Sunil...that did it! ... disabledColor style that many Flex...
918
jpsoulsf
Dec 17, 2008 8:11 pm
Hello, I'm trying to create some unit tests for some custom Flex components. I'm wondering if there is a standard way to force the validation methods...
919
Dilip Shah
dilubhai99
Dec 17, 2008 9:50 pm
Hi! I'm using Cairngorm in a small AIR application I'm writing. One of the commands generates thumbnail images for images in the directory selected by the...
920
Josh Tynjala
joshtynjala
Dec 17, 2008 10:35 pm
Calling validateNow() will force validation on a Flex component. If you want more fine-grained control, there's also validateProperties(), validateSize(), and...
921
Luke Bayes
foreeldo2001
Dec 17, 2008 11:28 pm
Welcome to single-threaded, event-driven GUI programming! You'll want to look into the state machine pattern and asynchronous command queues. Essentially, you...
922
jp soul
jpsoulsf
Dec 17, 2008 11:32 pm
I tried validateNow() before and it didn't work. I just tried it again, along with the individual validate methods and they didn't work either ;-( Thanks for...
923
Luke Bayes
foreeldo2001
Dec 17, 2008 11:37 pm
While this will certainly work for simple, shallow components, validateNow will usually fail to validate an entire composite structure synchronously. The Flex...
924
Dilip Shah
dilubhai99
Dec 18, 2008 12:04 am
Hi Luke, Very much appreciate the detailed response! Dilip From: Luke Bayes Sent: Wednesday, December 17, 2008 3:22 PM To: silvafug@yahoogroups.com Subject:...
925
jp soul
jpsoulsf
Dec 18, 2008 12:12 am
I thought about waiting for the creation complete event for tests but, in addition to adding a lot of code, I was afraid of it creating slow tests. I'm not...