DateTimeFormatter milliseconds not working?

2014-02-20 Thread Marcus Fritze
Hi list, a quick question. Is milliseconds in the DateTimeFormatter not working or is there a mistake in my code? Here is the reference for the codes: http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/globalization/DateTimeFormatter.html#setDateTimePattern() But my mil

Re: DateTimeFormatter milliseconds not working?

2014-02-20 Thread Evyatar Ben Halevi-Arbib
Try QQQ for milliseconds (that worked for me with mx.formatters.DateFormatter) Good luck, Evyatar On Thu, Feb 20, 2014 at 3:38 PM, Marcus Fritze wrote: > Hi list, > > a quick question. Is milliseconds in the DateTimeFormatter not working or > is there a mistake in my code? > > > > Here is the

Re: DateTimeFormatter milliseconds not working?

2014-02-20 Thread Marcus Fritze
Thanks for the advice. I tried also QQQ but this isn't also not working. Am 20.02.2014 um 15:30 schrieb Evyatar Ben Halevi-Arbib : > Try QQQ for milliseconds (that worked for me with > mx.formatters.DateFormatter) > > Good luck, > Evyatar > > > On Thu, Feb 20, 2014 at 3:38 PM, Marcus Fritze >

Re: DateTimeFormatter milliseconds not working?

2014-02-20 Thread Evyatar Ben Halevi-Arbib
To be completely accurate the format we use for time with milliseconds is JJ:NN:SS.QQQ Evyatar On Thu, Feb 20, 2014 at 4:36 PM, Marcus Fritze wrote: > Thanks for the advice. I tried also QQQ but this isn't also not working. > > Am 20.02.2014 um 15:30 schrieb Evyatar Ben Halevi-Arbib < > evyata

Re: DateTimeFormatter milliseconds not working?

2014-02-20 Thread Marcus Fritze
Yes, I understand. But the mx DateFormatter use different patterns than the spark DateTimeFormatter. Maybe, someone could also test this. I am not sure if it's a bug. I am using here the latest FP in Firefox or Chrome on my Mac. Thanks. Am 20.02.2014 um 15:42 schrieb Evyatar Ben Halevi-Arbib :

RE: DateTimeFormatter milliseconds not working?

2014-02-20 Thread Mark Line
I get the same problem on Windows 8, Apache flex 4.11 & Flex 4.6. Chrome(pepper),FF(adobe),IE(adobe) :-( -Original Message- From: Marcus Fritze [mailto:marcus.fri...@googlemail.com] Sent: 20 February 2014 14:48 To: users@flex.apache.org Subject: Re: DateTimeFormatter milliseconds not wor

Re: DateTimeFormatter milliseconds not working?

2014-02-20 Thread Marcus Fritze
Thanks for the confirmation Mark. Ok, I file a bug at bugbase.adobe.com Am 20.02.2014 um 16:08 schrieb Mark Line : > I get the same problem on Windows 8, Apache flex 4.11 & Flex 4.6. > Chrome(pepper),FF(adobe),IE(adobe) > > :-( > > -Original Message- > From: Marcus Fritze [mailto:marcu

RE: DateTimeFormatter milliseconds not working?

2014-02-20 Thread Maurice Amsellem
There was a thread on this issue on Novemeber 2013 " Unable to format milliseconds with DateTimeFormatter" The conclusion is that it's a bug in the FlashPlayer. A ticket was raised at Adobe. Bug reported -> https://bugbase.adobe.com/index.cfm?event=bug&id=3677553 The current status at Adobe is

Re: DateTimeFormatter milliseconds not working?

2014-02-20 Thread Marcus Fritze
Thanks Maurice. I searched the bugbase, but I couldn't find this issue. So, I will vote. And I hope a lot more people will vote too. Am 20.02.2014 um 16:16 schrieb Maurice Amsellem : > There was a thread on this issue on Novemeber 2013 > " Unable to format milliseconds with DateTimeFormatter"

Flash Player Debug Mode | playscn()

2014-02-20 Thread ilikeflex
Hi I am running my application in browser which has flash debug player. I can see the logs in flashlogs.txt file. I have enabled mm.cfg. In the logfiles i see the below statements. playScn() playScn() playScn() playScn() playScn() playScn() I do not know what these statements mean. These statem

Re: Flash Player Debug Mode | playscn()

2014-02-20 Thread Gary Yang
Are you using 3rd party lib? they may trace these. On Thu, Feb 20, 2014 at 11:41 AM, ilikeflex wrote: > Hi > > I am running my application in browser which has flash debug player. I can > see the logs in flashlogs.txt file. I have enabled mm.cfg. > > In the logfiles i see the below statements.

Re: Flash Player Debug Mode | playscn()

2014-02-20 Thread Alex Harui
They also come from flash in some browser windows you may have open. Sent via the PANTECH Discover, an AT&T 4G LTE smartphone. Gary Yang wrote: Are you using 3rd party lib? they may trace these. On Thu, Feb 20, 2014 at 11:41 AM, ilikeflex wrote: > Hi > > I am running my application in b

Beginner's mistakes

2014-02-20 Thread Barry Gold
Has anybody considered a FAQ of mistakes made by beginners? Or are people's mistakes too idiosyncratic to bother? Here's my contribution: 1. The default scope for a class you create is "internal": it can be seen by other classes in the package, but not outside the package. To make it visibl

Re: Beginner's mistakes

2014-02-20 Thread Alex Harui
Hi Barry, IMO, I've seen all of these questions asked before, but I don't know if it would be "frequently". For #1, #2 and #3, most folks use an IDE which tends to prevent getting caught like this. IIRC, you were trying to not use an IDE? For #4, there are a variety of application patterns like

Flex/AS3 cross compiling

2014-02-20 Thread Sumudu Chinthaka
Hi All Just want to find out how difficult is to cross compile Flex Mobile Application to Native Android, since for IOS cross compiling is already there if we could have the same to android and for other platforms like Windows Phone then we don't have to depend on Air run time to make available in

Re: Beginner's mistakes

2014-02-20 Thread Barry Gold
On 2/20/2014 6:20 PM, Alex Harui wrote: IMO, I've seen all of these questions asked before, but I don't know if it would be "frequently". For #1, #2 and #3, most folks use an IDE which tends to prevent getting caught like this. IIRC, you were trying to not use an IDE? Right. I'm using a text

Re: Beginner's mistakes

2014-02-20 Thread Justin Mclean
Hi While there quite a few MVC architectures out there you can make Flex do MVC straight out of the box by: - Using a simple AS model. - Views made of of nested (AS or MXML) components. - Views/components bind to the model via data binding. - Components dispatch events when things change. - Takin

Re: Flex/AS3 cross compiling

2014-02-20 Thread Andrei Tchijov
This is already happening… at least if you are using IntelliJ - you can build for both iOS and Android (disclaimer: I only use Mac OS X version of IntelliJ, not sure if Windows version can build iOS apps or not) --  Andrei Tchijov www.leapingbytes.com On February 21, 2014 at 11:35:22 , Sumudu

Re: Flex/AS3 cross compiling

2014-02-20 Thread Elena Geller
It's possible. Even under Windows with FlashDevelop. Command-line tools can it, basically, that's why all IDEs can it too. Sent from my iPad On 21.02.2014, at 06:48, Andrei Tchijov wrote: > This is already happening… at least if you are using IntelliJ - you can build > for both iOS and Android