[flexcoders] Re: implementing IFocusManager

2007-12-18 Thread rueter007
I do not know what SimpleScheduleEntry extends but it is most likely that it does not extend UIComponent. The example says that 'implements IFocusManagerComponent' should be added to a UIComponent-derived component to set focus. Otherwise, you will have to implement drawFocus() and setFocus()

[flexcoders] Re: implementing IFocusManager

2007-12-18 Thread Corey Smaller
ah so what you are saying is because its not a UI component I have to declare the get and set methods myself? Do I have to override the IFocusManagerComponent class altogether?? thanks for the help --- In flexcoders@yahoogroups.com, rueter007 [EMAIL PROTECTED] wrote: I do not know what

[flexcoders] Re: implementing IFocusManager

2007-12-18 Thread rueter007
I looked at the source code. SimpleScheduleEntry is not a ui component and hence cannot have focus. It is just an object that holds some data about a schedule entry. any ui classes that are using this object will have focus implementation already implemented in the base class as they extend

[flexcoders] Re: implementing IFocusManager

2007-12-18 Thread Corey Smaller
i just hit the proverbial brick wall then. I did notice that the Schedule itself can be tab enabled and i figured tabChildren=true would do the trick in the component call, which it did not of course because, as you say, all these objects are not UI components. I guess the next step would be

RE: [flexcoders] Re: implementing IFocusManager

2007-12-18 Thread Alex Harui
, 2007 12:02 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: implementing IFocusManager i just hit the proverbial brick wall then. I did notice that the Schedule itself can be tab enabled and i figured tabChildren=true would do the trick in the component call, which it did not of course

[flexcoders] Re: implementing IFocusManager

2007-12-18 Thread Corey Smaller
. The errors indicate you have not implemented the required methods. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Corey Smaller Sent: Tuesday, December 18, 2007 12:02 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re

RE: [flexcoders] Re: implementing IFocusManager

2007-12-18 Thread Alex Harui
: [flexcoders] Re: implementing IFocusManager yeah that is what I thought too but to properly implement the IfocusManagerComponent dont i just add it to the class declaration? like so: import mx.managers.IFocusManagerComponent; public class ColoredScheduleEntry extends SimpleScheduleEntry

[flexcoders] Re: implementing IFocusManager

2007-12-18 Thread Corey Smaller
] On Behalf Of Corey Smaller Sent: Tuesday, December 18, 2007 12:02 PM To: flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com Subject: [flexcoders] Re: implementing IFocusManager i just hit the proverbial brick wall then. I did notice that the Schedule itself can