[flexcoders] 2nd transition not working

2007-05-03 Thread bill.fogarty17
Hi folks, I'm working on a transition, I'm using a Hdividedbox and when the divider is pressed, I want the panel to close with a transition to the left. When the divider is pressed a second time, I want the panel to open again with a transition to the right. When I click the divider, the

[flexcoders] Re: 2nd transition not working

2007-05-03 Thread bill.fogarty17
Thanks for your feedback, I tried my best to debug the code, but was unable to find out anything like that. I'm running the application in Debug mode, have set breakpoints and have my variables window open. But in the variables panel area, i get: This = layoutPanel, which is a big list of

[flexcoders] Re: 2nd transition not working

2007-05-10 Thread bill.fogarty17
Thanks very much for your help, I'll work on that that and keep you posted. Could be next week before i get back to you as Im not very good at AS3 yet over-riding classes. I wonder was there any other component that I could have used to get the same effect?

[flexcoders] Re: 2nd transition not working

2007-05-17 Thread bill.fogarty17
[EMAIL PROTECTED] wrote: I would simply create a new component as a subclass of DividedBox with the dragging functionality disabled. You could also maybe write your own component fairly easily by looking at the DividedBox source to get some ideas for the sizing/layout. As I'm not great at

[flexcoders] using custom components

2007-05-18 Thread bill.fogarty17
Hi folks, I'm trying to use a MVC model for buildin my application. I have built 2 custom components placed them in my components folder. My components are: - Appliction Layout component, similiar to a VDivided box - Custom panel component with minimise, maximise, close button. In my

[flexcoders] Re: using custom components

2007-05-21 Thread bill.fogarty17
I resolved the problem, here is the solution if anyone is interested: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical xmlns:fnw=assets.src.components.* creationComplete=addChildren (); mx:Style source=assets/src/styles/fnw.css/

[flexcoders] Adding a menubar to a cell in a datagrid

2007-06-04 Thread bill.fogarty17
Hi folks, I need to add a flyout menu to a cell in my datagrid. I customised a Menubar so that it has the style and menu options that I need. But I'm having problems adding it to my datagrid. mx:DataGridColumn dataField=actions headerText=Actions width=60 mx:itemRenderer mx:Component