[Flashcoders] Can ComboBox open upwards?

2006-07-21 Thread Robert Chyko
Anyone know if there is any easy way to make a ComboBox drop upwards (other than modifying the ComboBox class itself)? Thanks, Bob ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

Re: [Flashcoders] Can ComboBox open upwards?

2006-07-21 Thread eric dolecki
I seem to remember being able to adjust the tween for the opening and also the direction somewhere - you might want to look in the class for the comboBox and take a look. Or check the archives here. I know that it WILL open upwards if there is not enough Stage area below the control. So it is

Re: [Flashcoders] Can ComboBox open upwards?

2006-07-21 Thread Hans Wichman
Hi, one dirty hack I know of it to: - extend the combobox class - override the displalyDropdown with an altered copy, in which //if (point.y+ dd.height Stage.height) is replaced with if(true) - reassign a new instance of the class to a combobox instance at runtime Very evil things might