Re: [flexcoders] How much does FXG affect performance?

2010-06-18 Thread Alex Harui
Maybe, yes, none, n/a, no, yes (17), no, depends, bribery, no thank you. Not necessarily in that order. On 6/17/10 7:15 PM, dorkiedorkfromdorkt...@gmail.com dorkiedorkfromdorkt...@gmail.com wrote: I saw a comment recently that large FXG usage can affect performance. For example, FXG in

[flexcoders] Contact sharing list.

2010-06-18 Thread Josh Chernoff
I wanted to start a list for people who want to share their contact info for possible direct talks or just to follow them on other sites like twitter or facebook. Please feel free to reply with yours if you wish to share. I will do my best to follow everyone twitter. Josh Chernoff | AKA GFX

Re: [flexcoders] Re: How do i embed a SWF in AS3?

2010-06-18 Thread Oleg Sivokon
Can the player display the SWF otherwise? How did you get the SWF you are trying to embed? Some issues you may want to check: - SWF contains newer tags then the SDK can handle (DefineFont4 for example cannot be handled in SDK 3.2). - SWF contains shape tweens - some such tweens will cause the SDK

[flexcoders] Flex 3 : Equivalent of HTML onload()

2010-06-18 Thread Ankur Kumar
Hi, I have a page which ic called when a button is clicked. I want to call a function when this page is loaded. In HTML onLoad() was called everytime a page is loaded. Is there an equivalent function?   Also, I would want to start a timer which would call an event after a particular time which

RE: [flexcoders] How much does FXG affect performance?

2010-06-18 Thread Gregor Kiddie
Surely on a geek list like this, the only reasonable answer is 42. Your questions may vary... From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Alex Harui Sent: 18 June 2010 07:49 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] How much does FXG

Re: [flexcoders] FocusManager chillHideHandler Error 1009 workaround ?

2010-06-18 Thread Stephane Guyot
Alex, yes the ViewStack is newly destroyed. I use PopUpAnchor to show/hide Chart Legend, the bug is not clearly reproductible, somtimes it appears, sometimes no trouble. I'm still looking for a workaround. What should i do ? Replace PopUpAnchor and use

[flexcoders] Drag AIR APP

2010-06-18 Thread Shabir Gilkar
HI All, I wanna to know how to make AIR APP to drag and place any where on the screen. Any help will be highly appreciated. -- With Regards Shabir Ahmad Gilkar Srinagar Kashmir JK Voice: +91 9419942501 email: shabirgil...@gmail.com URL: http://shabirgilkar.wordpress.com Skype:

[flexcoders] (unknown)

2010-06-18 Thread Vishal Jain
http://ppszck82738.rubadubgi.com

[flexcoders] Re: flex3 upload function seems not calling the php script

2010-06-18 Thread valdhor
I got my File Upload component directly from the source (Adobe). I found out about it at http://help.adobe.com/en_US/ActionScript/3.0_ProgrammingAS3/WS5b3ccc516d4fbf351e63e3d118a9b90204-7cf6.html and downloaded the example files at http://www.adobe.com/go/as3examples This has worked great for

[flexcoders] Re: Flex 3 : Equivalent of HTML onload()

2010-06-18 Thread valdhor
On first load of a component you would monitor the creationComplete event. On subsequent loads, you would monitor the show event. For timers, look at the Timer class http://livedocs.adobe.com/flex/3/langref/flash/utils/Timer.html --- In flexcoders@yahoogroups.com, Ankur Kumar flexlear...@...

RE: [flexcoders] How much does FXG affect performance?

2010-06-18 Thread Scott
Sorry, OT, but I just had to... LMAO! From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Gregor Kiddie Sent: Friday, June 18, 2010 4:45 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] How much does FXG affect

[flexcoders] Clear a form fast

2010-06-18 Thread Wally Kolcz
Any way to clear/reset a mx:Form easily other than manually setting all the text to ?

Re: [flexcoders] Clear a form fast

2010-06-18 Thread Brendan Meutzner
I believe I've seen a component on the Flex Exchange on Adobe's website for this... On Fri, Jun 18, 2010 at 9:20 AM, Wally Kolcz wko...@isavepets.com wrote: Any way to clear/reset a mx:Form easily other than manually setting all the text to ?

[flexcoders] Panel Container Gradients...

2010-06-18 Thread jamesfin
Using Flex4, I'd like some suggestions on how to paint the Panel Container title bar area with a gradient rather than a single color choice. It would appear that there is a 'chrome-color' style but only takes a single color value.

RE: [flexcoders] Clear a form fast

2010-06-18 Thread Battershall, Jeff
If you've gone to the trouble of binding your form inputs to some bindable model object in mxml you can 'reset' the model object (myModel = new MyModelObject()) and that should return the model (and your form) to its defaults. From: flexcoders@yahoogroups.com

Re: [flexcoders] FocusManager chillHideHandler Error 1009 workaround ?

2010-06-18 Thread Alex Harui
Try adding a capture phase listener to systemManager. systemManager.addEventListener(FlexEvent.HIDE, hideEventFilter, true); private function hideEventFilter(event:FlexEvent):void { if (event.target.stage == null) event.stopImmediatePropagation(); } On

[flexcoders] Filter Function

2010-06-18 Thread AJC2357
Message-ID: hvghmp+5...@egroups.com User-Agent: eGroups-EW/0.82 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Mailer: Yahoo Groups Message Poster X-Yahoo-Post-IP: 65.220.14.229 X-Yahoo-Newman-Property: groups-compose Sender:

[flexcoders] Re: Filter Function

2010-06-18 Thread AJC2357
Not sure strange characters of code were added to previous post. This should be clean. private function filter(item:Object): Boolean { var s:String = cb1.selectedItem.valueOf(); return item.s 9; } private function startFilter(): void {

[flexcoders] Re: Filter Function

2010-06-18 Thread AJC2357
And nevermind. I got it. return item[s]! --- In flexcoders@yahoogroups.com, AJC2357 ajc2...@... wrote: Not sure strange characters of code were added to previous post. This should be clean. private function filter(item:Object): Boolean { var s:String =

[flexcoders] Help With Collapsible Component

2010-06-18 Thread Angelo Anolin
Hi FlexCoders, I saw this example of a Flex Application. http://www.radscientist.com/flexpm/demo/index.html I want to be able to create the collapsible component which was used in the application. The one wherein you click on the + sign, the panel collapses. Care to tell what components do I

Re: [flexcoders] Help With Collapsible Component

2010-06-18 Thread Brendan Meutzner
You will need to familiarize yourself with States. The components specifically used are not as important as the concept of an open and closed state. The author likely used a simple container like VBox/HBox/Canvas, and had the button change the state so that the size was increased, the children

[flexcoders] Interesting paradox with data service call

2010-06-18 Thread Scott
I modified the call for my data_paged function to allow for the userID. I then refreshed the data service call and it picked up the new user. I did the same for the count() service call. Now, if I put in the userID I get an error: Description Resource Path Location

Re: [flexcoders] Error while doing the Linked list demo using flex

2010-06-18 Thread raji nanda
Thank you for the reply. In that datalist.as file how do i import ListCell. Any help would be appreciated. Thank you, Raji Nandam

[flexcoders] (unknown)

2010-06-18 Thread Wolfgang Hamann
Hi all, I am presently working on a project that involves loadable fonts. These are created in Flash CS4 by adding just a font symbol to the library. The application uses a loader to load the font and then tries to build a character table. The problem with that approach: the font seems to cantain

RE: [flexcoders] Interesting paradox with data service call

2010-06-18 Thread Scott
I was able to fix it by deleting the data service completely and re-creating it. That was a major hassle. Anyone know how to force the dataservice to update without going through this process? From: flexcoders@yahoogroups.com

[flexcoders] Web Browser as AIR APP... Ur Comments Plz [1 Attachment]

2010-06-18 Thread Shabir Gilkar
Hi All, Hope you are fine there! Today i am releasing BETA version of Vitizon Browser (AIR APP). I hope you will check this and do suggest me what kind of changes and improvements you think should be maked to this. I hope you will like this as this is my first ever developed and designed App