RE: [flexcoders] Announcing the AS3 Lightweight Remoting Framework

2006-10-20 Thread Danny Patterson
: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Announcing the AS3 Lightweight Remoting Framework Danny,First of all thank you, good job. I was wondering since I am a newbeeif you could provide an app as a sample.thank you again.On 10/19/06, Danny Patterson [EMAIL PROTECTED]com wrote: I'm

[flexcoders] Announcing the AS3 Lightweight Remoting Framework

2006-10-19 Thread Danny Patterson
e yet robust framework for handling Remoting calls. This framework could be used in AS3-only projects without the Flex framework, or it could be used in a Flex project to access Remoting resources that aren't supported by the Flex framework." http://osflash.org/as3lrf Thanks,Danny

RE: [flexcoders] Re: FileReferenceList to a servlet

2006-10-13 Thread Danny Patterson
FileReferenceList doesn't have the ability to upload. That is in the FileReference class. All FileReferenceList allows you to do is browse and select multiple files at once. When you're ready to upload you need to loop through the FileReference objects and call upload on each one. Each

[flexcoders] Extending a subclass of Proxy

2006-08-23 Thread Danny Patterson
I'm trying to extend a subclass of the Proxy class and I'm getting an error. Here is an example of my problem: // ProxyA.as package {import flash.utils.Proxy;import flash.utils.flash_proxy; public class ProxyA extends Proxy {flash_proxy override function callProperty(methodName:*,

RE: [flexcoders] what is beeing sent via HTTPSerice?

2006-07-28 Thread Danny Patterson
http://kevinlangdon.com/serviceCapture/ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of arnold_charmingSent: Friday, July 28, 2006 6:13 AMTo: flexcoders@yahoogroups.comSubject: [flexcoders] what is beeing sent via HTTPSerice? Hi!I'm using HTTPService class to

RE: [flexcoders] File Upload

2006-07-14 Thread Danny Patterson
Sorry, a little explination is probably needed. The browse methods of FileReference and FileReferenceList are not static. Therefore you must call them on an instance of one of those two classes. var fileInstance:FileReference = new FileReference(); fileInstance.browse(); If it were

RE: [flexcoders] File Upload

2006-07-14 Thread Danny Patterson
mx:Button label="Upload" click="var fileReference:FileReference = new FileReference(); fileReference.browse();" / From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ethan MillerSent: Friday, July 14, 2006 12:27 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders]

RE: [flexcoders] Re: Simple Event Listener Examples between 2 classes

2006-07-11 Thread Danny Patterson
You're not adding the TestHandler object as a listener of the TestDispatcherClass object. Your code is actually registering to itself. Also, you probably shouldn't dispatch an event from the constructor, since that runs before anything else you won't be able to add a listener before your