PDA

View Full Version : Floating buttons?


rattleheadmegafan
07-02-2008, 06:25 PM
Hi,

For my web app, i'm trying to include floating buttons since it's a big page with a lot of content and the users could just enter the first 2 fields and press the submit button without having to scroll down till the end. Any ideas about how to do this in Flex?

TIA!

matlevy
07-03-2008, 12:34 AM
Place your form in a vbox but your button outside the vbox in the application / or a canvas... eg

<mx:Canvas>
<mx:Button right="638" bottom="348"/>
<mx:VBox>
....form...
</mx:VBox>
</mx:Canvas>