[flexcoders] Re: Getting a Sprite into a Flex Container?

2006-12-31 Thread inou_tin
I got a class that extends Sprite that I want to put into a Flex DisplayObject container (Canvas or any similar custom made component). My question is: Is implementing the IUIComponent interface the only way to get this working or Are there any other ways around it? A SWFLoader is not what

[flexcoders] Re: hotspot

2006-12-31 Thread Theo
Hey Sandy, Defining rectangular hotspots in Flex is relatively easy. I use transparant Canvas instances on top of the Image to respond to mouse clicks. I choose to use an external xml file to hold my hotspot information. It looks like this; ?xml version=1.0 encoding=ISO-8859-1? hotspots

[flexcoders] Re: Canvas

2006-12-31 Thread Theo
Hi Titipouns, If I understand you question correctly, I would go with a ViewStack as a solution. Here is my completed code (I colored each of the Canvases so you can see the change): ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute

[flexcoders] Re: Canvas

2006-12-31 Thread Theo
Hi Titipouns, It's me again. Here is my second solution to the question you posted: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; xmlns:com=* layout=absolute mx:states mx:State name=addCanvas01

Re: [flexcoders] Getting a Sprite into a Flex Container?

2006-12-31 Thread Maciek Wciƛlik
Hi, I got a class that extends Sprite that I want to put into a Flex DisplayObject container (Canvas or any similar custom made component). My question is: Is implementing the IUIComponent interface the only way to get this working or Are there any other ways around it? A SWFLoader is not

[flexcoders] Happy Eid Mubarak and New Year Wish

2006-12-31 Thread Sajid Hussain
Hello In life we celebrate many events and today we have two great celebrations Eid and NEW YEAR together with such events we create our new hopes,ideas and we see success for coming days of life ,so wishing you greats event of life ,Happy New Year and Eid Mubarak with this pray May God

[flexcoders] [Off-topic] Survey on Late/Cancelled Projects

2006-12-31 Thread cluebcke
Hi all, for my skoolin' I need to conduct a survey in support of a research paper (yes, how quaint). I'm doing my paper on why software projects are so often late, so this non-scientific survey is asking for your personal experience and perspective on the subject. It's only nine questions, should

Re: [flexcoders] Happy Eid Mubarak and New Year Wish

2006-12-31 Thread Paul Andrews
Good Message Sajid. May 2007 be a good year for all. Paul - Original Message - From: Sajid Hussain To: [EMAIL PROTECTED] Sent: Sunday, December 31, 2006 10:26 PM Subject: [flexcoders] Happy Eid Mubarak and New Year Wish Hello In life we celebrate many events and

Re: [flexcoders] Getting a Sprite into a Flex Container?

2006-12-31 Thread Amol Pandhare
Hey Sascha, I hope this is what you were looking for. I have a class which extends Sprite as below: package { public class myShape extends Sprite { . . . . . } } Now I have my owns custom component class file which I have added as follows: First in the Application