[flexcoders] Implement Multiple Interfaces in a MXML component

2009-09-08 Thread Michael Ridland
Hi I want to be able to implement multiple interfaces in a MXML Component. But I get this error, 'Attribute implements was already specified for element mx:Canvas.'. Thanks in Advance. Michael

Re: [flexcoders] Implement Multiple Interfaces in a MXML component

2009-09-08 Thread Johannes Nel
only one attribute, but comma deliminated interface paths in that attributes text On Tue, Sep 8, 2009 at 11:48 AM, Michael Ridland rid...@gmail.com wrote: Hi I want to be able to implement multiple interfaces in a MXML Component. But I get this error, 'Attribute implements was already

Re: [flexcoders] Implement Multiple Interfaces in a MXML component

2009-09-08 Thread Fidel Viegas
Hi Michael, On Tue, Sep 8, 2009 at 10:48 AM, Michael Ridlandrid...@gmail.com wrote: Hi I want to be able to implement multiple interfaces in a MXML Component. But I get this error, 'Attribute implements was already specified for element mx:Canvas.'. Without the sample code, it is really

Re: [flexcoders] Implement Multiple Interfaces in a MXML component

2009-09-08 Thread Michael Ridland
Thanks.. I didnt think this question needed sample code. Here is a sample... mx:Canvas xmlns=* xmlns:mx=http://www.adobe.com/2006/mxml; implements=lib.ISurfaceObject implements=lib.ISurfaceObject2 verticalScrollPolicy=off /mx:Canvas On Tue, Sep 8, 2009 at 8:04 PM, Fidel Viegas

Re: [flexcoders] Implement Multiple Interfaces in a MXML component

2009-09-08 Thread claudiu ursica
do implements implements=lib.ISurfaceObject, lib.ISurfaceObject2 TH, C From: Michael Ridland rid...@gmail.com To: flexcoders@yahoogroups.com Sent: Tuesday, September 8, 2009 1:08:50 PM Subject: Re: [flexcoders] Implement Multiple Interfaces in a MXML component

Re: [flexcoders] Implement Multiple Interfaces in a MXML component

2009-09-08 Thread Michael Ridland
Thanks, I should of thought about that. On Tue, Sep 8, 2009 at 7:54 PM, Johannes Nel johannes@gmail.com wrote: only one attribute, but comma deliminated interface paths in that attributes text On Tue, Sep 8, 2009 at 11:48 AM, Michael Ridland rid...@gmail.com wrote: Hi I want