Re: FileReference save

2015-12-03 Thread mark goldin
Something like this: var chartDataFile:FileReference = new FileReference(); chartDataFile.save(projectData, "data.csv"); projectData is an ArrayCollection. Data.csv looks like this: 0-15-2015 14:37:00,14,1,0.5447975,0.5447975,-0.9986115,-0.9986115,19,21.9765,325.0004, 10-15-2015 14:37:05,14,1,0.54

Re: [FlexJS] Summary of things that should be noted when starting a new project

2015-12-03 Thread Peter Ent
FlexJS components should be font-agnostic. Try to use CSS and defer styling choices, like fonts and colors, for CSS and not hard-coded. You would write your component set and have an accompanying .css file that makes the components look their best. Peter Ent Adobe Systems On 12/2/15, 6:56 PM, "Ne

Re: [FlexJS] Embedded Fonts (was: Summary of things that should be noted when starting a new project)

2015-12-03 Thread Alex Harui
On 12/2/15, 3:56 PM, "Nemi" wrote: >Alex Harui wrote >> In the UI, try to avoid low-level Flash APIs including embedded fonts. > >Avoid embedding fonts at all? How to use them if they need to be embedded >for some components? I think this topic deserves its own thread. I would definitely like

RE: [FlexJS] Embedded Fonts (was: Summary of things that should be noted when starting a new project)

2015-12-03 Thread Kessler CTR Mark J
The first reason we had used embedded fonts was for reports / text displayed using a rotation / landscaping. Later it was just to be more consistent. But as long as we could select a font (css even) it would be fine. I'm sure there are people who are very specific that want to control every d

RE: What is 'new navigation' since Apache Flex 4.10 ?

2015-12-03 Thread Nemi
Nice, thank you. -- View this message in context: http://apache-flex-users.246.n4.nabble.com/What-is-new-navigation-since-Apache-Flex-4-10-tp11559p11583.html Sent from the Apache Flex Users mailing list archive at Nabble.com.

SoundEffect, reload an IO_ERROR

2015-12-03 Thread scott matheson
Hi We have been looking at this for some time and can not find a solution, when using soundEffect, if we pick up an IO_ERROR most often due to network issue, we would like to try and re-load the the sound, but we can not seem to get this to work, maybe we are just taking the wrong approac

Re: FileReference save

2015-12-03 Thread jude
You're passing in an ArrayCollection as the data to save? I'm guessing there is a ArrayCollection.toString() conversion going on. Then it's looking at each object and splitting the property values with commas. var ant = {name:Z,class:worker}; var ant2 = {name:Weaver,class:warrior}; var output = c