Re: [flexcoders] Moving Panel's titleIcon programmatically

2006-10-08 Thread Harish Sivaramakrishnan
If you need to access an mx_internal variable in your subclass , add the following likes to your code:import mx.core.mx_internal;use namespace mx_internal;After doing this, you can access all variables marked mx_internal in your subclass Hope this helpsHarishOn 10/6/06, Ralph Hauwert [EMAIL

[flexcoders] Moving Panel's titleIcon programmatically

2006-10-06 Thread Ralph Hauwert
Hi All, We're kind of looking at the best practices in moving the titleIcon outside of the boundaries of a panel, to the left. titleIconObject in the Panel class is marked mx_internal. Currently we are extending the panel object using the code behind practice, and we think we'd move it there;