[flexcoders] Re: dynamic image gallery

2009-07-04 Thread stinasius
any help guys?

[flexcoders] How to pass Query String in Url

2009-07-04 Thread balaji
Hi all, I am a newbie to flex , I am trying to pass the querystring to URL but it is not working . The url : http://base_url/?login=loginnamepassword=password I tried to pass the arguments like this mx:HTTPService id=loginService url=base_url method=POST resultFormat=text

Re: [flexcoders] How to pass Query String in Url

2009-07-04 Thread Charles Parcell
Instead of POST perhaps you want GET for your method. CP On Sat, Jul 4, 2009 at 2:50 AM, balaji mcabal...@gmail.com wrote: Hi all, I am a newbie to flex , I am trying to pass the querystring to URL but it is not working . The url : http://base_url/?login=loginnamepassword=password I

[flexcoders] Re: Problems with Julian Dates with AIR percision?

2009-07-04 Thread jason_williams_mm
Hi Charlie, Can you post an example of the code that you are using? It would help to see an example table definition along with the AS code you are using. Thanks, jw --- In flexcoders@yahoogroups.com, Charlie Hubbard charlie.hubb...@... wrote: I'm writing some unit tests for my database, and

[flexcoders] Problem With debugging

2009-07-04 Thread vamsi_vitla999
Hi I have strucked up with an debugger issue. Please help me out in resolving in this issue. when i tried to debug an application. it gives me an Pop up window stating that Failed to connect : session timed out Ensure that 1.You compiled your flash application with debugging on 2.You are running

[flexcoders] Re: getting the xml data from a dispatched event

2009-07-04 Thread Jason B
Heres my three mxml files two of which are under the com/ folder and get imported...hope that helps ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical creationComplete=init() styleName=plain xmlns:nutrition=com.nutrition.*

Re: [flexcoders] Problem With debugging

2009-07-04 Thread John McCormack
Hi, You may have other versions of the FlashPlayer - I found lots of versions when I had trouble - Firefox an IE use different programs. The uninstaller should be used, not the control panel: http://kb2.adobe.com/cps/141/tn_14157.html This may not be the latest version. Anggie Bratadinata over

[flexcoders] Re: getting the xml data from a dispatched event

2009-07-04 Thread Tim Hoff
Wow, I've got to say; What a mess. However, you can get it to work with the following changes: [Bindable] private var customMeals:XMLListCollection = new XMLListCollection(); // addToMeal event Handler private function addToMealHandler(event:Event):void {

[flexcoders] ItemRenderer dispatch event problem

2009-07-04 Thread j2me_soul
How can let the parent of itemrenderer know something is happened ? I use dispatchevent function, but it doesn't work.

[flexcoders] How to iterate items in repeater?

2009-07-04 Thread j2me_soul
I wanna change some specific item's style which inside the repeater component. How can I iterate the items in the repeater and filtrate them ?