Re: [flexcoders] BrokenImageSkin

2011-08-15 Thread jitendra jain
: flexcoders@yahoogroups.com Sent: Tue, 16 August, 2011 11:28:48 AM Subject: Re: [flexcoders] BrokenImageSkin Did you try scaleContent? and also try using verticalAlign & horizontalAlign [both css properties] along with scaleContent. Srinivas On Aug 15, 2011, at 10:51 PM, jitendra jain w

Re: [flexcoders] BrokenImageSkin

2011-08-15 Thread Srinivas Sandur Madhu Murthy
Did you try scaleContent? and also try using verticalAlign & horizontalAlign [both css properties] along with scaleContent. Srinivas On Aug 15, 2011, at 10:51 PM, jitendra jain wrote: > > Hi Coders, > > Iam using some Image Halo as well as Spark Image Controls. Whenever I am > using Halo B

Re: [flexcoders] Problem with showing less then sign as axis label

2011-08-15 Thread Alex Harui
This got answered the main adobe forum. There’s a bug where the charts use TextField’s htmltext for measuring and the “<“ messes up. On 8/15/11 4:42 PM, "michael_reg...@dell.com" wrote: Try: {Month:"

Re: [flexcoders] style css problem

2011-08-15 Thread Alex Harui
he regular mx:DataGrid not the Advanced one. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Alex Harui Sent: Monday, August 15, 2011 2:08 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] style css problem Which version of DataGrid are you using? On

RE: [flexcoders] Problem with showing less then sign as axis label

2011-08-15 Thread michael_regert
Try: {Month:"

RE: [flexcoders] style css problem

2011-08-15 Thread Sells, Fred
Flex 4. And the regular mx:DataGrid not the Advanced one. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Alex Harui Sent: Monday, August 15, 2011 2:08 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] style css problem Which version of

Re: [flexcoders] style css problem

2011-08-14 Thread Alex Harui
Which version of DataGrid are you using? On 8/14/11 2:50 PM, "Sells, Fred" wrote: I’m trying to use styleName in a renderer like so .payor1{ fillAlphas: 1.0, 1.0; fillColors: #8c8c8c, #8c8c8c; color: red; roll-over-color: green; rollOverColor: green; } ! Wit

Re: [flexcoders] scale9grid question

2011-08-12 Thread Technusiast
2, 2011 8:19 AM Subject: Re: [flexcoders] scale9grid question   scale9grid only works in clips that only contain vector shapes...so you can't have sub-movieclips or sprites. i don't really know your requirements but one solution would be to create a container clip, insert both clips as

Re: [flexcoders] scale9grid question

2011-08-12 Thread kris range
scale9grid only works in clips that only contain vector shapes...so you can't have sub-movieclips or sprites. i don't really know your requirements but one solution would be to create a container clip, insert both clips as children of that one and manage both that way. On Fri, Aug 12, 2011 at 12:5

Re: [flexcoders] Flex 4.5 - smart phone app

2011-08-12 Thread Tandon, Rishi
Can I take a Flex application (currently running on the server), and easily convert it to a phone app?  It is a self contained (no data access or any external connection).   No, you can't. The mobile application is been designed and architect in a different way. It uses light weight component an

Re: [flexcoders] Flex 4.5 - Custom NativeWindow and problems

2011-08-11 Thread Alex Harui
ndow to fix the focus issues. i try to do that but no success! Le 10/08/11 22:08, Alex Harui a écrit : Re: [flexcoders] Flex 4.5 - Custom NativeWindow and problems I would use our Window classes. Otherwise you will have to replicate much of that is in them. On 8/10/11 8:2

Re: [flexcoders] Flex 4.5 - Custom NativeWindow and problems

2011-08-11 Thread Isabelle Loyer Perso

Re: [flexcoders] how to make a class can be iterated by for each/in

2011-08-11 Thread Alex Harui
You can’t directly loop over a class like you could in AS2. That’s what describeType and ObjectUtil are for. You can probably loop over the properties returned from ObjectUtil.getClassInfo. On 8/11/11 3:23 AM, "j2me_soul" wrote: Sorry I think I express not very clear. I want to iterate

Re: [flexcoders] Flex 4.5 - Custom NativeWindow and problems

2011-08-11 Thread Alex Harui
22:08, Alex Harui a écrit : Re: [flexcoders] Flex 4.5 - Custom NativeWindow and problems I would use our Window classes. Otherwise you will have to replicate much of that is in them. On 8/10/11 8:22 AM, "Isabelle Loyer Perso" wrote: With spark Window all work well Thanks

Re: [flexcoders] Filtering multilingual text within a datagrid filter column

2011-08-11 Thread The Real Napster
Solution: Use bellow function to convert Japanese text(Double byte text) to English text (Single byte text) and pass returned text to filterfunction. Its so simple :) 1. public static function changeToBj(s:String):String 2. { 3. if (s == null) 4.

RE: [flexcoders] How to communicate 2 computers using Air Application

2011-08-11 Thread Gregor Kiddie
Sockets

Re: [flexcoders] how to make a class can be iterated by for each/in

2011-08-11 Thread Rishi Tandon
for each works for collection. If you have an instance of the collections consist of your class object then u can retrieve each item as class object using for each iterator. Sent from my iPhone On Aug 11, 2011, at 2:25 PM, j2me_soul wrote: > How to custom a class can by iterate all children by

Re: [flexcoders] Flex 4.5 - Custom NativeWindow and problems

2011-08-11 Thread Isabelle Loyer Perso

Re: [flexcoders] How to communicate 2 computers using Air Application

2011-08-10 Thread Tandon, Rishi
Have u tried the FILE classes for the same. Rishi From: Wemerson Couto Guimarães To: flexcoders@yahoogroups.com Sent: Wednesday, August 10, 2011 6:57 PM Subject: [flexcoders] How to communicate 2 computers using Air Application   Hello guys, There are a way

Re: [flexcoders] Flex 4.5 - Custom NativeWindow and problems

2011-08-10 Thread Alex Harui
Why can’t you use Window? On 8/10/11 3:59 PM, "Isabelle Loyer Perso" wrote: someone suggest to implement IFocusManagerContainer in FlexNativeWindow to fix the focus issues. i try to do that but no success! Le 10/08/11 22:08, Alex Harui a écrit : Re: [flexcoders] Flex 4.

Re: [flexcoders] Flex 4.5 - Custom NativeWindow and problems

2011-08-10 Thread Isabelle Loyer Perso
Title: Re: [flexcoders] Flex 4.5 - Custom NativeWindow  and problems

Re: [flexcoders] Flex 4.5 - Custom NativeWindow and problems

2011-08-10 Thread Alex Harui
I would use our Window classes. Otherwise you will have to replicate much of that is in them. On 8/10/11 8:22 AM, "Isabelle Loyer Perso" wrote: With spark Window all work well Thanks Le 10/08/11 17:13, Alex Harui a écrit : If you use our Window classes does it work better? On 8/

Re: [flexcoders] Flex 4.5 - Custom NativeWindow and problems

2011-08-10 Thread Isabelle Loyer Perso

Re: [flexcoders] Move on DropDownList with up or dow key (FB 4.5)

2011-08-10 Thread Isabelle Loyer Perso

Re: [flexcoders] Move on DropDownList with up or dow key (FB 4.5)

2011-08-10 Thread Alex Harui
I assume you’ve set focus to the DDL? Try it outside of a Form and see if arrow keys work then. On 8/10/11 1:10 AM, "isa_loyer" wrote: Dear Flexer, I have a form in custom titleWindow. I this form, I place DropDownList. In this list, I'd like to select item with up or down key, but it d

Re: [flexcoders] Flex 4.5 - Custom NativeWindow and problems

2011-08-10 Thread Alex Harui
If you use our Window classes does it work better? On 8/10/11 6:25 AM, "isa_loyer" wrote: I have a class FlexNativeWindow who extends to NativeWindow. I use this method to create new window on my AIR app. All works well but some keyboard interraction is not availaible. For exemple focus a

Re: [flexcoders] PopUpAnchor in the Hierarchy

2011-08-10 Thread jitendra jain
oders@yahoogroups.com" Cc: "flexcoders@yahoogroups.com" Sent: Wednesday, 10 August 2011 3:45 PM Subject: Re: [flexcoders] PopUpAnchor in the Hierarchy   Jitendra can you share the solution too. Sent from my iPhone On Aug 10, 2011, at 11:24 AM, jitendra jain wrote:   >Alex..

Re: [flexcoders] PopUpAnchor in the Hierarchy

2011-08-10 Thread Rishi Tandon
r control..? > > Thanks, > > with Regards, > Jitendra Jain > Software Engineer > 91-9979960798 > From: Alex Harui > To: "flexcoders@yahoogroups.com" > Sent: Tuesday, 9 August 2011 12:15 PM > Subject: Re: [flexcoders] PopUpAnchor in the Hierarchy >

Re: [flexcoders] PopUpAnchor in the Hierarchy

2011-08-09 Thread Alex Harui
, Jitendra Jain Software Engineer 91-9979960798 From: Alex Harui To: "flexcoders@yahoogroups.com" Sent: Tuesday, 9 August 2011 12:15 PM Subject: Re: [flexcoders] PopUpAnchor in the Hierarchy PopUpAnchor is a child of the skin or container. On 8/8/11 10:5

Re: [flexcoders] PopUpAnchor in the Hierarchy

2011-08-09 Thread jitendra jain
To: "flexcoders@yahoogroups.com" Sent: Tuesday, 9 August 2011 12:15 PM Subject: Re: [flexcoders] PopUpAnchor in the Hierarchy   PopUpAnchor is a child of the skin or container. On 8/8/11 10:58 PM, "jitendra jain" wrote: >  >  >    > >Alex, I want

Re: [flexcoders] Re: AdvancedDataGrid Performance Issue

2011-08-09 Thread Rishi Tandon
You mean that using a adg with > 20 columns degrade the performance? My question How many adg are u using? What's the no of rows for each adg? Have u used paging? Sent from my iPhone On Aug 9, 2011, at 10:33 PM, Alex Harui wrote: > Use the profiler to see what is going on. > > > On 8/9/11 6:

Re: [flexcoders] Inject dependency into Flex application preloader

2011-08-09 Thread Alex Harui
g 2011 11:11:12 -0700 Subject: Re: [flexcoders] Inject dependency into Flex application preloader You can write your code like that, but what code would set those values? None of the MVC frameworks I know of are running when the preloader is running. That’s the point of the preloader.

Re: [flexcoders] Re: How to debug PHP side in AIR applications?

2011-08-09 Thread Pete
Hi there, I use Nusphere PHPEd and when set up properly it works well, every time. This is using amfphp to make remote procedure calls btw. It can be on a remote server, with the dbg extension installed, or on localhost (I use xampp). I have found that the only safe way to break into the c

RE: [flexcoders] Inject dependency into Flex application preloader

2011-08-09 Thread Philip Smith
-0700 Subject: Re: [flexcoders] Inject dependency into Flex application preloader You can write your code like that, but what code would set those values? None of the MVC frameworks I know of are running when the preloader is running. That’s the

Re: [flexcoders] Inject dependency into Flex application preloader

2011-08-09 Thread Alex Harui
_ To: flexcoders@yahoogroups.com From: aha...@adobe.com Date: Tue, 9 Aug 2011 10:39:41 -0700 Subject: Re: [flexcoders] Inject dependency into Flex application preloader The preloader is instantiated long before the application. The app’s preloader property isn’t used at r

RE: [flexcoders] Inject dependency into Flex application preloader

2011-08-09 Thread Philip Smith
structure that uses dependency injection. To: flexcoders@yahoogroups.com From: aha...@adobe.com Date: Tue, 9 Aug 2011 10:39:41 -0700 Subject: Re: [flexcoders] Inject dependency into Flex application preloader The preloader is instantiated long

Re: [flexcoders] Inject dependency into Flex application preloader

2011-08-09 Thread Alex Harui
similar to how it's done with item renderers and 'ClassFactory' properties? To: flexcoders@yahoogroups.com From: aha...@adobe.com Date: Tue, 9 Aug 2011 10:05:04 -0700 Subject: Re: [flexcoders] Inject dependency into Flex application

Re: [flexcoders] Advanced Item Editor in Simple List

2011-08-09 Thread Alex Harui
Is this an mx:List? It will attempt to write the dataField to the labelField. You may need a custom ITEM_EDIT_END handler. On 8/9/11 8:04 AM, "Martin Moschitz" wrote: Hey there, I can't figure out the problem, maybe you can help me out. My List has an ArrayCollection as a DataProvider

RE: [flexcoders] Inject dependency into Flex application preloader

2011-08-09 Thread Philip Smith
derers and 'ClassFactory' properties? To: flexcoders@yahoogroups.com From: aha...@adobe.com Date: Tue, 9 Aug 2011 10:05:04 -0700 Subject: Re: [flexcoders] Inject dependency into Flex application preloader Public class MyDownloa

Re: [flexcoders] Inject dependency into Flex application preloader

2011-08-09 Thread Alex Harui
example of this, Alex? To: flexcoders@yahoogroups.com From: aha...@adobe.com Date: Mon, 8 Aug 2011 22:13:34 -0700 Subject: Re: [flexcoders] Inject dependency into Flex application preloader You can inject certain kinds of dependencies as long as they don’t drag

Re: [flexcoders] Re: AdvancedDataGrid Performance Issue

2011-08-09 Thread Alex Harui
Use the profiler to see what is going on. On 8/9/11 6:57 AM, "steveroger_flex" wrote: now, I have remove all renderer code of ADG. ADG is displaying data without any formating. But Still its too too slow. Application struck at that point. any idea about this? Steve --- In flexcoders@ya

RE: [flexcoders] Inject dependency into Flex application preloader

2011-08-09 Thread Philip Smith
> You can inject certain kinds of dependencies as long as they don’t drag in > UIComponent. Can you provide an example of this, Alex? To: flexcoders@yahoogroups.com From: aha...@adobe.com Date: Mon, 8 Aug 2011 22:13:34 -0700 Subject: Re: [flexcoders] Inject dependency into Flex appli

Re: [flexcoders] Re: How to debug PHP side in AIR applications?

2011-08-09 Thread Johannes Nel
I have a different setup from you, but I debug my java backends without a problem wether I make my request in air, ajax or flex. A php project is a request response model, so no matter what initiates the request you should be able to put a breakpoint in your code. Your url request in air can have

Re: [flexcoders]

2011-08-09 Thread Isabelle Loyer Perso

Re: [flexcoders]

2011-08-09 Thread Isabelle Loyer Perso

Re: [flexcoders] PopUpAnchor in the Hierarchy

2011-08-09 Thread Alex Harui
endra Jain Software Engineer 91-9979960798 From: jitendra jain To: "flexcoders@yahoogroups.com" Sent: Tuesday, 9 August 2011 11:28 AM Subject: Re: [flexcoders] PopUpAnchor in the Hierarchy Alex, I want the PopUpAnchors and not the popups.. Thanks, with Re

Re: [flexcoders] PopUpAnchor in the Hierarchy

2011-08-08 Thread Alex Harui
quot;flexcoders@yahoogroups.com" Sent: Monday, 8 August 2011 10:42 PM Subject: Re: [flexcoders] PopUpAnchor in the Hierarchy PopUpAnchor or the thing it pops up? The popups are in systemManager.popupChildren. On 8/8/11 3:17 AM, "jitendra jain" wrote: Hi Group, From

Re: [flexcoders] PopUpAnchor in the Hierarchy

2011-08-08 Thread jitendra jain
, 9 August 2011 11:28 AM Subject: Re: [flexcoders] PopUpAnchor in the Hierarchy   Alex, I want the PopUpAnchors and not the popups..   Thanks, with Regards, Jitendra Jain Software Engineer 91-9979960798 From: Alex Harui To: "flexcoders@yahoogroups.com&qu

Re: [flexcoders] PopUpAnchor in the Hierarchy

2011-08-08 Thread jitendra jain
Alex, I want the PopUpAnchors and not the popups..   Thanks, with Regards, Jitendra Jain Software Engineer 91-9979960798 From: Alex Harui To: "flexcoders@yahoogroups.com" Sent: Monday, 8 August 2011 10:42 PM Subject: Re: [flexcoders] PopUpAnc

Re: [flexcoders] Inject dependency into Flex application preloader

2011-08-08 Thread Alex Harui
You can inject certain kinds of dependencies as long as they don’t drag in UIComponent. On 8/8/11 4:29 PM, "method_air" wrote: Is it possible? http://ns.adobe.com/mxml/2009"; xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" preloader="com.sto

Re: [flexcoders]

2011-08-08 Thread Alex Harui
Is objectUser.usrQualParent a reference to an item in the DP_PAT_CIVIL? If it is a copy or one of the fields in the item then it won’t match. On 8/8/11 3:43 PM, "isa_loyer" wrote: Dear Flexer, I'd to use my database field value to select a value on my . But no selection appear, nothing

Re: [flexcoders] Flex e4X escape quote in flex text input

2011-08-08 Thread Rishi Tandon
Before assigning the text use the replace method of the string class and replace the square to quote back Sent from my iPhone On Aug 9, 2011, at 4:09 AM, "isa_loyer" wrote: > Dear Flexer, > > I use httpservice to query my database. > when xml data is loaded on text input quote is replace by a

Re: [flexcoders] How to debug PHP side in AIR applications?

2011-08-08 Thread Johannes Nel
split your projects, put a break point in the php code. On Mon, Aug 8, 2011 at 8:08 PM, enridp wrote: > ** > > > Hi ! I think I can't explain it better than my subject :) > > Flash Builder 4.5 for PHP it's wonderful for debugging both, Flex and PHP > side at the same time, but it doesn't work wi

Re: [flexcoders] PopUpAnchor in the Hierarchy

2011-08-08 Thread Alex Harui
PopUpAnchor or the thing it pops up? The popups are in systemManager.popupChildren. On 8/8/11 3:17 AM, "jitendra jain" wrote: Hi Group, From where do i find the number of PopUpAnchors in the systemManager hierarchy..? Thanks, with Regards, Jitendra Jain Software Engineer 91-9979960

RE: [flexcoders] Re: Error TooTips in Spark Forms

2011-08-08 Thread Battershall, Jeff
Amy, Tac, thanks for your input. This situation feels like a step backward for me - yes I know how the current SDK likes to have things decoupled, but when I'm working through this and having to re-skin and code around the Spark FormItem container, it just feels like a lot of work for what shou

Re: [flexcoders] Interface design

2011-08-08 Thread Paul Andrews
flexcoders@yahoogroups.com] *On Behalf Of *Paul Andrews *Sent:* Sunday, August 07, 2011 7:57 AM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] Interface design On 07/08/2011 06:12, cjacquel73 wrote: > Hello, > > I have to select 4 values of percentages. The sum of this 4 values sho

RE: [flexcoders] Interface design

2011-08-08 Thread Sells, Fred
Or have 5 entry fields and the last one represents under/over allocated and should be zero before saving. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Paul Andrews Sent: Sunday, August 07, 2011 7:57 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders

Re: [flexcoders] Could AIR create an automation app?

2011-08-07 Thread Pete
In short, I don't think so, you are pretty much in a sand box as you run an Air app. I haven't checked the state of play with 4.5, things have maybe improved. I think that Adobe are terrified that someone will write a virus in Air! So they keep you away from all that system level stuff... Al

Re: [flexcoders] Could AIR create an automation app?

2011-08-07 Thread James Ong
Not direct invocation but you can control them through NativeProcess that can pass a command of argument and received standard output from the application like Command Prompt. That right, AIR is made to be as portable as possible. For your case, you can use .Net or C# to automate those task. For e

Re: [flexcoders] Newbie Question: Library Path for Using a 3rd-party utility

2011-08-07 Thread dorkie dork from dorktown
BTW Welcome to Flex! :) On Sun, Aug 7, 2011 at 6:59 AM, tacman1123 wrote: > ** > > > I'm new to Flex, I've been reading the Adobe Training from the Source book, > but am stuck on a simple setup question. > > I want to integrate SQLite, and figured I'd use probinson's sqlite > utilities (https://

Re: [flexcoders] Newbie Question: Library Path for Using a 3rd-party utility

2011-08-07 Thread dorkie dork from dorktown
Hi Tac, First setup your library project. Then go back to your original project and go into Properties > Flex Build Path and click Add Project. A dialog will display available library projects for you to choose. Select your new library and click OK. The workspace will rebuild if it doesn't click P

Re: [flexcoders] Error TooTips in Spark Forms

2011-08-07 Thread dorkie dork from dorktown
Hi Jeff, Since I've been working on mobile I don't have much room either. I use a label for error messages with includeInLayout and visible set to false and place it inside the FormItem container. If it's a vertical form item then the error label shows up beneath the form item. If it's horizontal

Re: [flexcoders] Preventing Spark List from scrolling to top when adding / removing items.

2011-08-07 Thread dorkie dork from dorktown
See if this will work, // your code var index:int = list.selectedIndex; list.dataProvider.addItem(item); list.validateNow(); moveToIndex(index); protected function moveToIndex(index:int):void { var point:Point = list.layout.getScrollPositionDeltaToElement(index);

Re: [flexcoders] Interface design

2011-08-07 Thread Paul Andrews
On 07/08/2011 06:12, cjacquel73 wrote: > Hello, > > I have to select 4 values of percentages. The sum of this 4 values should be > equal to 100%. > > How to design an interface (with sliders or other), to select this 4 > percentages ? Have a bar with three dividers. The bar represents 100%. The

Re: [flexcoders] Re: tree multiple select problem

2011-08-06 Thread Alex Harui
Yes, if selectedIDs is a big array, it could take a while to do run the loop. You could try building up a hash table of ids Var hashIDs:Object = new Object; For (var i:int = 0; I < N; i++) hashIDs[selectedIds[i].toString()) = 1; Then query once: var nodes:XMLList = xml.descendants().(hashID

Re: [flexcoders] Re: tree multiple select problem

2011-08-05 Thread Alex Harui
SelectedItems must be an array. If you have: Var xml:XML = Var selectedIds:Array = [2, 4, 5]; Then you need something like: Var selItems:Array = new Array(); For (var i:int = 0; I < n; i+++ { var id:String = selectedIds[i].toString(); var node:XML = xml..node(@id == id)[0];

Re: [flexcoders] loading socket policy files from port 80.

2011-08-05 Thread Peeyush Tuli
AFAIK, socket policy files are requested from the port 843 and or from the port where traffic is intended to. So you can only do via 843 or 61613. On Fri, Aug 5, 2011 at 12:41 AM, grimmwerks wrote: > ** > > > Ok - slight modification to original question. > > Can I load a socket policy file (us

Re: [flexcoders] Launch a .bat

2011-08-05 Thread Pete
Actually, there was something nagging at me all day yesterday and I remembered what it was today. There is a windows specific way maybe... Might only work in Air... Check out http://www.fluorinefx.com/ I use it to do AutoDial on voip phones using the appropriate command line options. I gues

Re: [flexcoders] Several HTTP request in the same component

2011-08-05 Thread Isabelle Loyer Perso

Re: [Bulk] Re: [flexcoders] Form Item Multiline

2011-08-05 Thread Isabelle Loyer Perso

Re: [flexcoders] Fw: Two way binding and stric mode compiler options

2011-08-05 Thread Alex Harui
quot;flexcoders@yahoogroups.com" Sent: Wednesday, 3 August 2011 11:54 PM Subject: Re: [flexcoders] Fw: Two way binding and stric mode compiler options A test case and full text of the error are helpful things to post. On 8/3/11 12:58 AM, "jitendra jain" wrote: This is working for

Re: [flexcoders] Bindable query

2011-08-05 Thread Alex Harui
If you use [Bindable] it generates some code. Otherwise, it just trusts that you’ll dispatch the event. On 8/4/11 10:55 PM, "jitendra jain" wrote: Hi Guys, Please let me know Difference between [Bindable] [Bindable(event="modelUpdated")] public function get model():Rul

Re: [flexcoders] Re: urgent: socket communications at port 443?

2011-08-05 Thread Alex Harui
I don’ t know much about this stuff, but I’d be suspicious about the warning you are getting. On 8/4/11 3:30 PM, "grimmwerks" wrote: Yes set it to be false: OK: Root-level SWF loaded: http://mix.investlab.com/demo/MixClient.swf OK: Searching for in policy files to authorize data loadin

Re: [flexcoders] Re: URGENT: Need an *Expert (Alex?)* in Flex 4.5.1 Mobile Text

2011-08-05 Thread Alex Harui
Might just be a bug. Please file a bug with a simple test case. On 8/4/11 5:32 PM, "nagaofthesea" wrote: Howdy Alex- I am MORE than happy to send you my FXP if you need it. I have played around with quite a few things and it appears to remain a problem with EmbeddedFontRegistry and i

Re: [flexcoders] Re: tree multiple select problem

2011-08-05 Thread Alex Harui
You will have to make a new array of the nodes you want selected. On 8/4/11 9:45 PM, "steveroger_flex" wrote: I am having list of nodes in array. My problem is how should I use seletedItems with list of node id array.? Data provider of tree component. Node id Array=(2,4,5).

Re: [flexcoders] Fw: Two way binding and stric mode compiler options

2011-08-04 Thread jitendra jain
Regards, Jitendra Jain Software Engineer 91-9979960798 From: Alex Harui To: "flexcoders@yahoogroups.com" Sent: Wednesday, 3 August 2011 11:54 PM Subject: Re: [flexcoders] Fw: Two way binding and stric mode compiler options   A test case and full text of

Re: [flexcoders] Determine the framerate of a display object, Alex

2011-08-04 Thread Robert VanCuren Jr
You can determine the frame rate of the swf as a whole but individual display objects do not have their own frame rate. One slow display object slows the whole movie down. So in the case you described below both would produce the same frame rate. If you want to find out which display objects are

Re: [flexcoders] Re: urgent: socket communications at port 443?

2011-08-04 Thread grimmwerks
Yes set it to be false: OK: Root-level SWF loaded: http://mix.investlab.com/demo/MixClient.swf OK: Searching for in policy files to authorize data loading from resource at xmlsocket://mix.investlab.com:443 by requestor from http://mix.investlab.com/demo/MixClient.swf Warning: Ignoring 'secure'

Re: [flexcoders] Re: URGENT: Need an *Expert (Alex?)* in Flex 4.5.1 Mobile Text

2011-08-04 Thread Alex Harui
If you use the default adobe skins do you have the same problem? On 8/4/11 11:35 AM, "nagaofthesea" wrote: Hi Alex- Thanks for looking at this. I chopped the dump because it looked like a call from Timer.tick(). Here is the whole dump: August 4, 2011 11:33 AMclick here to add tags T

Re: [flexcoders] tree multiple select problem

2011-08-04 Thread Alex Harui
Use selectedItems On 8/4/11 5:08 AM, "steveroger_flex" wrote: Hello Friends, I am facing a problem and can't getting any idea to solve this. Problem is, I wanna select one or more tree nodes using actionscript. I have set allowMultipleSelection="true" property of tree component. I succee

Re: [flexcoders] Form Item Multiline

2011-08-04 Thread Tandon, Rishi
Isabeelle, here you go: Use [ ] for new line and [L ] for tab. Regards, Rishi From: Isabelle Loyer Perso To: flexcoders@yahoogroups.com Cc: yang chen Sent: Thursday, August 4, 2011 11:33 AM Subject: Re: [flexcoders] Form Item Multiline   By label, I

Re: [flexcoders] Several HTTP request in the same component

2011-08-04 Thread Tandon, Rishi
You can set the result format of the HTTP to "Object". When you receive the request from the HTTP, you can store in the individual data collections. And then you can bind those variables to the data providers of your comboboxes. Usually we do use some MVC framework to handle data, events and view

Re: [flexcoders] URGENT: Need an *Expert (Alex?)* in Flex 4.5.1 Mobile Text

2011-08-04 Thread Alex Harui
CreateChildren is the end of the stack trace? That doesn’t make sense. When does it really get called? On 8/3/11 9:26 PM, "nagaofthesea" wrote: Howdy Alex (or anyone else)- SCENARIO: Flex 4.5.1 mobile application targeting Android and iOS (no pad) only. Works flawlessly on desktop em

Re: [flexcoders] Form Item Multiline

2011-08-03 Thread Isabelle Loyer Perso

RE: [flexcoders] Form Item Multiline

2011-08-03 Thread yang chen
Subject: Re: [flexcoders] Form Item Multiline Thanks for this answer. I try to use StackedFormItem akin but I don't where I should done modification. Best regards Le 03/08/11 12:36, Rishi Tandon a

Re: [flexcoders] Launch a .bat

2011-08-03 Thread Pete
I think you'd need to install a protocol handler in a web browser and use gotourl to "go to" that protocol. I've used the same technique to start scripts on a mac at the client... It's a pain, you need to do it even in Adobe Air. Regards, Pete cjacquel73 wrote: >Hello, > >Is it possible to

RE: [flexcoders] Flex View States

2011-08-03 Thread Sells, Fred
Could you just put your form in a modal popup window? From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of nikunj_n123 Sent: Tuesday, August 02, 2011 7:31 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex View States Hello All, My Application has

RE: [flexcoders] mx:Datagrid nowto detect drop column

2011-08-03 Thread Sells, Fred
Would you have a snippet of that code handy? If not, I’ll figure it out. Thanks. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of j2me_soul Sent: Tuesday, August 02, 2011 11:46 PM To: flexcoders@yahoogroups.com Subject: Re:[flexcoders] mx:Datagrid nowto

Re: [flexcoders] Form Item Multiline

2011-08-03 Thread Isabelle Loyer Perso

Re: [flexcoders] Fw: Two way binding and stric mode compiler options

2011-08-03 Thread Alex Harui
A test case and full text of the error are helpful things to post. On 8/3/11 12:58 AM, "jitendra jain" wrote: This is working for other components like list but only creating problem with datagrid of spark library. Thanks, with Regards, Jitendra Jain Software Engineer 91-9979960798 --

Re: [flexcoders] Licence component

2011-08-03 Thread Jeffry Houser
I believe Sharify is the other "Player" in the space. With Flextras; we wrote our own. This isn't usually the type of thing you look for a free component for. On 8/3/2011 10:12 AM, Nick Collins wrote: I don't know of any free component, but you may want to investigate either Zarqon ( fr

Re: [flexcoders] Licence component

2011-08-03 Thread Nick Collins
I don't know of any free component, but you may want to investigate either Zarqon ( from Cliff Hall, the creator of PureMVC ), or NitroLM. On Wed, Aug 3, 2011 at 5:14 AM, isa_loyer wrote: > ** > > > Dear Flexer, > > I'm developping an AIR application. > I'd like include licence system to protect

Re: [flexcoders] Form Item Multiline

2011-08-03 Thread Rishi Tandon
Have you tried using the StackedFormItem akin You might have to do some skin modifications Sent from my iPhone On Aug 3, 2011, at 3:46 PM, "isa_loyer" wrote: > I try to do a beautiful form on my AIR app. > But with s:FormItem, I don't find how to place label in two lines. > > Can you help me

Re: [flexcoders] Hide and show buttons

2011-08-03 Thread Lars Östling
Hi, remove the quotes from your true and false values. The visible property is a boolean property. Your non empty strings ("true"/"false") will type coerce to true. Lars http://www.flexceptional.com On Mon, Jul 18, 2011 at 11:41 AM, chinwesley wrote: > ** > > > Hi everyone, > > I have created

Re: [flexcoders] White button label color - disabled state problem

2011-08-02 Thread Alex Harui
Are you using embedded fonts? I don’t remember if Spark controls need embedded fonts for alpha to work correctly. On 8/2/11 12:44 PM, "lanekelly5" wrote: For some reason if I make the text of a button white, the alpha.disabled property in the SparkSkin container of my custom button skin

Re: [flexcoders] HTTPService timeout?

2011-08-02 Thread Rishi Tandon
Have you check the network monitor in flash builder 4? Sent from my iPhone On Aug 2, 2011, at 5:16 PM, "georgemeng2011" wrote: > Hello, > > I have very simple code to call a simple PHP page. PHP page will insret 2000 > records to mysql table, takes about 2 minutes. > > On PHP side, it is fin

Re:[flexcoders] mx:Datagrid nowto detect drop column

2011-08-02 Thread j2me_soul
I finish my job like yours to calculate the mouse point belongs to which cell using RowHeigh CellWidth then operate the dataPrivoder to do anything At 2011-08-02 23:02:08,bu4fred wrote: I would like to move cell contents around in a datagrid (or AdvancedDatagrid if necessar) but so far all

Re: [flexcoders] Halo and Spark Scroll bar problem

2011-08-01 Thread Rishi Tandon
w some more light as iam not > getting.. ? > > Thanks, > > with Regards, > Jitendra Jain > Software Engineer > 91-9979960798 > From: Alex Harui > To: "flexcoders@yahoogroups.com" > Sent: Monday, 1 August 2011 9:23 PM > Subject: Re: [flexcoder

Re: [flexcoders] Halo and Spark Scroll bar problem

2011-08-01 Thread jitendra jain
: "flexcoders@yahoogroups.com" Sent: Monday, 1 August 2011 9:23 PM Subject: Re: [flexcoders] Halo and Spark Scroll bar problem   Is the component the child of the scroller?  It has to report contentSize properly.  Otherwise, it probably has to report measuredWidth/Height properly. On 7/31/1

Re: [flexcoders] Flex 3.5 to 4.1

2010-10-12 Thread Richard Rodseth
So far I have compatibility mode turned on and the Halo theme added. Working through the errors. The latest is that I get a null pointer exception in HaloBorder Main Thread (Suspended: TypeError: Error #1009: Cannot access a property or method of a null object reference.) mx.skins.halo::HaloB

<    7   8   9   10   11   12   13   14   15   16   >