[flexcoders] submenu can't show completely

2007-04-23 Thread kkinaru
Hello all. This time, I have a Button in the bottom of my flex application. This button shows a Menu (like the start button in windows). First menu is OK, but the last submenu is clipped, because it exceeds the bottom edge of my flex app. Does exist a way for controlling that stuff in my

Re: [flexcoders] submenu can't show completely

2007-04-23 Thread Roman Protsiuk
How do you show your menus? Using PopUpButton? Whatever the mechanism there is a way to specify x, y for the menu. R. On 4/23/07, kkinaru [EMAIL PROTECTED] wrote: Hello all. This time, I have a Button in the bottom of my flex application. This button shows a Menu (like the start button in

Re: [flexcoders] submenu can't show completely

2007-04-23 Thread Manish Jethani
You can listen for the menuShow event on the root menu object. The event object's menu property actually points to the submenu that's being popped up, through which you can check its position and size and make sure it's within the screen area (move it). On 4/23/07, kkinaru [EMAIL PROTECTED]