Hi!
I am developing small application for training purposes. There after click on the button is done, the new panel is added to application, to the button of the application. Once I come across strange problem. The vertical scroll bar never appears.
Here is how I embedded swf:
<script type="text/javascript" src="/site_media/js/swfobject.js"></script>
<script type="text/javascript">
var flashvars = {};
flashvars.siteurl = "http://";
var params = {};
var attributes = {};
attributes.id = "plist";
swfobject.embedSWF("/site_media/apps/submitproblemme.swf", "myAlternativeContent", "710", "700", "9.0.0","/site_media/apps/expressInstall.swf", flashvars, params, attributes);
</script>
Here is how I defined application:
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" xmlns:ns1="ui.*" creationComplete="main(event)" width="730">
So after the click is done small panel is added to the bottom so my application must dynamically expand to the button (or at least create scroll bar).
Here is a screenshot: http://img.skitch.com/20100208-xhh1mi93acyn5y19r8r8spn974.png
Please help!