Re: FULL_SCREEN_INTERACTIVE mode: the ³Allow² button click is passed to the application

2013-09-02 Thread Alexander Farber
Hello Alex, http://stackoverflow.com/questions/18558443/full-screen-interactive-mode-the-allow-button-click-is-passed-to-the-applicat Someone on StackOverflow suggested the FullScreenEvent? Did you try that? I will try that, do you please have an advice on what component in Flex suits best to

Re: FULL_SCREEN_INTERACTIVE mode: the ³Allow² button click is passed to the application

2013-09-02 Thread Alex Harui
On 9/1/13 11:38 PM, Alexander Farber alexander.far...@gmail.com wrote: Hello Alex, http://stackoverflow.com/questions/18558443/full-screen-interactive-mode -the-allow-button-click-is-passed-to-the-applicat Someone on StackOverflow suggested the FullScreenEvent? Did you try that? I will try

JSON to XML

2013-09-02 Thread Scott Matheson
Hi We have an app based round XML, we had been giving some data in JSON. I was looking for a good tool to convert, I can see no good solution on the web Scott Disclaimer: This electronic mail and any attachments are confidential and may be privileged. If

Re: JSON to XML

2013-09-02 Thread Alexander Farber
Perl is a good tool for that :-)

RE: JSON to XML

2013-09-02 Thread Mark Line
Could you not use the json support added to fp 11 and then use describeType() on the returned object? PS I haven't tried this -Original Message- From: Scott Matheson [mailto:smathe...@intralinks.com] Sent: 02 September 2013 12:15 To: users@flex.apache.org Subject: JSON to XML Hi We

Re: JSON to XML

2013-09-02 Thread Jeffry Houser
Any programming language should be able to convert JSON to XML [and vice versa]. There are a few libraries for ColdFusion/CFML out there; but I've never researched other languages. I always prefer to use the data in its native format if possible. The Flash Player has some great JSON

Re: JSON to XML

2013-09-02 Thread Scott Matheson
Thanks Chaps Real issue is I had read form file (air), and not converted to object first dum Š. For anyone else, this seems to work public static function getObjectToXML(obj:Object):XML { var qName:QName = new QName(root); var xmlDocument:XMLDocument = new

Re: how to perform secondary sort on spark datagrid?

2013-09-02 Thread Mark Kessler
Using your own sorting handler for the dataProvider. ListCollectionView (ArrayCollection, XMLListCollection) have a sort (iSort) property [1]. Create a new Array to add new SortField's to. These have properties like descending and numeric. The last thing to do is to handle SortChanging event

Windows 8 tablet

2013-09-02 Thread Zoltan Iklodi
Hi, Does anybody have experience in developing application on windows 8 tablet on flash? Thanks, Zoltan

Re: Windows 8 tablet

2013-09-02 Thread Stephen C
Do you have a specific problem? My apps run fine in desktop mode on x86. Air does not support metro ui or arm processor like the surface. On Sep 2, 2013 10:57 AM, Zoltan Iklodi manulsz...@gmail.com wrote: Hi, Does anybody have experience in developing application on windows 8 tablet on flash?

Re: Windows 8 tablet

2013-09-02 Thread Zoltan Iklodi
So is that possible to run flex app on flash runtime on windows 8 tablet like a desktop app? 2013/9/2 Stephen C step...@stephenjc.com Do you have a specific problem? My apps run fine in desktop mode on x86. Air does not support metro ui or arm processor like the surface. On Sep 2, 2013 10:57

Re: Windows 8 tablet

2013-09-02 Thread Stephen C
Windows 8 yes, Windows 8 rt no. On Sep 2, 2013 11:18 AM, Zoltan Iklodi manulsz...@gmail.com wrote: So is that possible to run flex app on flash runtime on windows 8 tablet like a desktop app? 2013/9/2 Stephen C step...@stephenjc.com Do you have a specific problem? My apps run fine in

Re: Windows 8 tablet

2013-09-02 Thread Tom Chiverton
On 02/09/2013 16:17, Zoltan Iklodi wrote: So is that possible to run flex app on flash runtime on windows 8 tablet like a desktop app? We have a Flex-based AIR application that runs fine on Windows 8 in desktop mode. Tom

Obfuscating Flex

2013-09-02 Thread Tomislav Pokrajcic
Hi guys, do you have any recent experience with AS3/MXML code obfuscators? I'm interested if there are any performance or Apache Flex incompatibility issues to consider while picking the right one. Cheers, Tomislav

Re: Windows 8 tablet

2013-09-02 Thread Jeffry Houser
On 9/2/2013 11:10 AM, Stephen C wrote: Do you have a specific problem? My apps run fine in desktop mode on x86. Air does not support metro ui or arm processor like the surface. You mean Surface RT. Surface Pro should support AIR in desktop mode w/o any issues; right? -- Jeffry Houser

Re: Windows 8 tablet

2013-09-02 Thread Stephen C
Pro should work. It's an i5 I believe On Sep 2, 2013 12:55 PM, Jeffry Houser jef...@dot-com-it.com wrote: On 9/2/2013 11:10 AM, Stephen C wrote: Do you have a specific problem? My apps run fine in desktop mode on x86. Air does not support metro ui or arm processor like the surface. You

New Apache Flex user and development forums

2013-09-02 Thread Justin Mclean
Hi, The Apache Flex users and development forums provide an alternative to using the users and development mailing lists and can be found here: http://s.apache.org/flex-dev-forum http://s.apache.org/flex-users-forum Each forum is a mirror of the similarly named Apache Flex mailing list. All

question on modules

2013-09-02 Thread Maurice Amsellem
Hello, Does someone know how to get the module instance (ie subclass of spark Module) where a given UI component is defined, in a multi-module application. Walking up the parent tree does not work if the UI component belongs to a popup. I also tried using UIComponent.moduleFactory, and the

Re: question on modules

2013-09-02 Thread Mark Kessler
Well if it's not the parentApplication or doesn't have a parent. You could add a property to the child module and have it's parent assign a reference to it. -Mark On Mon, Sep 2, 2013 at 6:40 PM, Maurice Amsellem maurice.amsel...@systar.com wrote: Hello, Does someone know how to get the

Re: question on modules

2013-09-02 Thread Michael Astudillo
Hi, When you try to access to a popup trougth a module first you create a variable like TitleWindow and second assign the call at this, for example: public var ventana:TitleWindow = new TitleWindow(); function Sample() { ventana =

Re: question on modules

2013-09-02 Thread Mark Kessler
Would something like either of the following have any effect on the your pathing for test purposes? (parentApplication.moduleComponentId as Modulename).ventana.variableName.text = test; or (parentApplication.moduleComponentId as Object).ventana.variableName.text = test; -Mark On Mon, Sep 2,

RE: question on modules

2013-09-02 Thread Maurice Amsellem
I am new to modules, so not sure to understand what you wrote. This is how I am using the module: In main app: s:ModuleLoader id=sampleModuleLoader url=../SampleModule.swf/ The module itself is declared as follows: SampleModule.mxml s:Module ... /s:Module Then I have somewhere else a popup

RE: question on modules

2013-09-02 Thread Maurice Amsellem
Actually, from SamplePopup.mxml, parentApplication.sampleModuleLoader.child points to the module... So if I KNOW that the component is in module X , this is how to get it. The problem is that I need a generic mechanism, that would allow me to get the module instance of any ui component, even

RE: question on modules

2013-09-02 Thread Frédéric THOMAS
Not sure I understood what you want at the end but if you want to open a popup contains in a module, either you know the popup class and call it via a static show function and inside the show function, you add context.viewManager.addViewRoot(yourPopupInstance); before calling

RE: question on modules

2013-09-02 Thread Michael Astudillo
The modulecomponentid is the id of the module id when you load the swf file Enviado desde Samsung Mobile Mensaje original De: Frédéric THOMAS webdoubl...@hotmail.com Fecha: A: users@flex.apache.org Asunto: RE: question on modules Not sure I understood what you want at

another chart module issue?

2013-09-02 Thread Paul Hastings
i *think* prior to 4.10, modules that needed the charting lib loaded it from the main app dir??? now when i build i see charts_4.10.0.0.swf tossed into the app's modules dir. not having it there stalls the app loading a module w/any charts in it w/a stream error (#2032) looking for that lib.

Re: question on modules

2013-09-02 Thread Alex Harui
This is a common misconception: modules do not have a module instance. All you are doing is loading a factory from which you can make any number of instances of the classes in the module via the factory.create() method. That's why there is no mapping back to a single instance, just the factory.

Re: another chart module issue?

2013-09-02 Thread Alex Harui
Apache Flex doesn't have cross-domain RSLs so most folks have turned them off. But if you are using them, check how you are specifying the URLs. Did this work for you in 4.9? -Alex On 9/2/13 8:50 PM, Paul Hastings paul.hasti...@gmail.com wrote: i *think* prior to 4.10, modules that needed the

Re: another chart module issue?

2013-09-02 Thread Justin Mclean
Hi, now when i build i see charts_4.10.0.0.swf tossed into the app's modules dir. Not following this thread closely but how are you building? The swf (or rather swc) should be charts_4.10.0.20130820.swc for the 4.10.0 release. Justin

Re: another chart module issue?

2013-09-02 Thread Paul Hastings
On 9/3/2013 10:56 AM, Alex Harui wrote: Apache Flex doesn't have cross-domain RSLs so most folks have turned them off. But if you are using them, check how you are specifying the URLs. Did this work for you in 4.9? we have a suite of apps that run from the same location so it seemed RSLs

Re: JSON to XML

2013-09-02 Thread Alex Harui
Glad you got something working. FWIW, JSON should be much faster than XML so converting the other way might be a better idea. And it would help future-proof the app in case you ever decide to port to JS. On 9/2/13 4:51 AM, Scott Matheson smathe...@intralinks.com wrote: Thanks Chaps Real issue

Re: another chart module issue?

2013-09-02 Thread Paul Hastings
On 9/3/2013 10:56 AM, Justin Mclean wrote: Hi, now when i build i see charts_4.10.0.0.swf tossed into the app's modules dir. Not following this thread closely but how are you building? The swf (or rather swc) should be charts_4.10.0.20130820.swc for the 4.10.0 release. used the

Re: another chart module issue?

2013-09-02 Thread Alex Harui
Are you building with FB or ant? If the latter, the RSLs I think get specified in flex-config.xml and maybe other xml config files you have. -Alex On 9/2/13 9:10 PM, Paul Hastings paul.hasti...@gmail.com wrote: On 9/3/2013 10:56 AM, Alex Harui wrote: Apache Flex doesn't have cross-domain RSLs

Re: another chart module issue?

2013-09-02 Thread Paul Hastings
On 9/3/2013 11:51 AM, Alex Harui wrote: Are you building with FB or ant? If the latter, the RSLs I think get specified in flex-config.xml and maybe other xml config files you have. FB.

Re: another chart module issue?

2013-09-02 Thread Alex Harui
On 9/2/13 10:03 PM, Paul Hastings paul.hasti...@gmail.com wrote: On 9/3/2013 11:51 AM, Alex Harui wrote: Are you building with FB or ant? If the latter, the RSLs I think get specified in flex-config.xml and maybe other xml config files you have. FB. Hmm. I took a closer look. Maybe we

Re: another chart module issue?

2013-09-02 Thread Paul Hastings
On 9/3/2013 12:13 PM, Alex Harui wrote: On 9/2/13 10:03 PM, Paul Hastings paul.hasti...@gmail.com wrote: On 9/3/2013 11:51 AM, Alex Harui wrote: Are you building with FB or ant? If the latter, the RSLs I think get specified in flex-config.xml and maybe other xml config files you have.

Re: another chart module issue?

2013-09-02 Thread Paul Hastings
i forgot that i had a 4.9.1 production build sitting around. i can confirm that charts 4.9.1 RSL was output to the modules dir as was any other RSL used in the modules (rpc, framework, etc.). these behave the same way, i can delete all the RSL in the modules dir everything works except the

Re: another chart module issue?

2013-09-02 Thread Paul Hastings
On 9/3/2013 12:28 PM, Alex Harui wrote: This is the official release and not some RC? pretty sure its release. is there a way to officially tell? I mis-spoke about the SWCs. In frameworks\rsls the SWFs should have names like: rpc_4.10.0.20130723.swf. Try editing the