Re: [flexcoders] Is it possible to add Flex components to the Stage?

2011-09-23 Thread ganaraj p r
Flex is a complete framework and each and every component follows the rules of the framework. Without the framework running in the background its probably impossible to get a component working unless you do a lot of work to make it work. Perhaps much easier to write a separate AS3 component. On

[flexcoders] Form field validation - required property not working

2011-09-23 Thread lanekelly5
I have a TextInput control in my form that is required only when a RadioButtonGroup has a certain selected value. There is a RegExpValidator defined that is tied to the TextInput source property. Here's the validator: mx:RegExpValidator id=employeeEmailValidator source={formEmail}

Re: [flexcoders] Re: Is it possible to add Flex components to the Stage?

2011-09-23 Thread Haykel BEN JEMIA
if for some reason you don't want or can't use Flex, then you try some of the pure AS component libraries: * ASDPC : http://sibirjak.com/osflash/projects/as-dataprovider-controls/ * AsWing : http://www.aswing.org/ and there are more. Haykel Ben Jemia Allmas Web RIA Development

Re: [flexcoders] How to detect change of mobile orientation ? portrain

2011-09-23 Thread Csomák Gábor
on CreationComplete, add addEventListener(StageOrientationEvent.ORIENTATION_CHANGE, orientationChanged); you can debug out the rest On Fri, Sep 23, 2011 at 5:34 AM, j2me_soul j2me_s...@163.com wrote: How to detect change of mobile orientation ? portrain or landscape

[flexcoders] 3D Tree and flex 4.5

2011-09-23 Thread method_air
I'm getting this error when I click on an item from the 3D found at http://activeden.net/item/3d-tree-20/full_screen_preview/15727 ArgumentError: Error #2109: Frame label Open not found in scene Open. at flash.display::MovieClip/gotoAndStop() at

RE: [flexcoders] 3D Tree and flex 4.5

2011-09-23 Thread Philip Smith
And is there a way to workaround this error? To: flexcoders@yahoogroups.com From: loudj...@hotmail.com Date: Fri, 23 Sep 2011 18:41:18 + Subject: [flexcoders] 3D Tree and flex 4.5 I'm getting this error when I click on an item from the 3D

[flexcoders] exclude certain classes from debugging session

2011-09-23 Thread Wouter Schreuders
Hi All When debugging some code and stepping through or stepping over some code, is it possible to configure flex to not include certain classes in the debugging session or at least to entirely skip those classes from begin included in the debugging session(but they still need to execute, just

[flexcoders] Re: Trying to pass a value to the mxml/swf file from java(android).How?

2011-09-23 Thread rawat
Hi Rohini, Is the part of the code above mxml in android(in androidmanifest.xml file).PLz elaborate , i would like to know more about what you have posted. Best rgds and Thanks in advance Saurabh --- In flexcoders@yahoogroups.com, Shunmuga msrohini@... wrote: you can pass the arguments to swf

[flexcoders] LCDS Secure Server Services config issue - some channels work, other's don't

2011-09-23 Thread scottrowe
Hi, I'm trying to get all the various ways to connect to LCDS working and running into an issue with some secure ones. I have it working for secure-http but can't get it to work for secure-nio-http, secure-nio-amf, etc. If I go to https://{server.name}:2443/secureniohttp directly in the browser

[flexcoders] Re: How to detect change of mobile orientation ? portrain

2011-09-23 Thread tkraikit
This will add an event listener so that your event handler will be called when the orientation is changed: Stage.addEventListener(StageOrientationEvent.ORIENTATION_CHANGE, orientationChangeHandler); Also take a look at StageOrientationEvent.ORIENTATION_CHANGING -- Tom --- In