[flexcoders] Re: HTTPService, POST, and QueryString

2008-01-10 Thread Nathan Arizona
You can use this I think. var dataset:URLVariables = new URLVariables(); var request:URLRequest = newURLRequest(somepage); request.data = dataset; request.method = URLRequestMethod.POST --- In flexcoders@yahoogroups.com, markgoldin_2000 [EMAIL PROTECTED] wrote: My server side of application

[flexcoders] Interface help

2008-01-09 Thread Nathan Arizona
I have an interface like the following. package myCom.controller { import flash.events.Event; public interface ICommand { function execute(event:Event):void } } I have a pseudo abstract class that implements ICommand package

[flexcoders] Polymorphism help

2008-01-09 Thread Nathan Arizona
I am passing in a custom event that extends Event into a class that implements an interface. I get an incorrect signature and I am wondering why? Why do I not get the benefit of polymorphism? I have an interface as follows: package myCom.controller { import flash.events.Event;

[flexcoders] Re: Polymorphism help

2008-01-09 Thread Nathan Arizona
event. Maybe this will help someone else. Cheers! --- In flexcoders@yahoogroups.com, Nathan Arizona [EMAIL PROTECTED] wrote: I am passing in a custom event that extends Event into a class that implements an interface. I get an incorrect signature and I am wondering why? Why do I not get

[flexcoders] Re: Polymorphism help

2008-01-09 Thread Nathan Arizona
; // do some stuff here } } From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Nathan Arizona Sent: Wednesday, January 09, 2008 3:01 PM To: flexcoders

[flexcoders] Re: Logging

2008-01-09 Thread Nathan Arizona
In flex2 perhaps you can use describeType found in flash.utils. --- In flexcoders@yahoogroups.com, learner [EMAIL PROTECTED] wrote: Hi all, Is there any way in which I get the caller function name. As in : class Aclass{ instanceB:Bclass; function a(){ instanceB.b(this)

[flexcoders] HorizontalList shows image place holder instead of image

2007-06-04 Thread Nathan Arizona
The code below shows that there are two image tags and one horizontal list. The image tags show the images but the the horizontalList does not. Can anyone see what I am doing wrong. Just an FYI. I am using an example from the flex documenatation. Prior to this the HorizontalList was using the