Hi all!
Im trying to change the swf object size during runtime.
What im doing is im calling a function in flash getURL(“javascript:Resize(‘growbar’,3000);”);
And in the html page is this function:
<script type=“text/javascript”>
function Resize(ID,number) {
document.getElementById(ID).height=number;
}
</script>
But i dont get it to work, especially because im using the adobes IE “click here to activate” fixscript (AC_FL_RunContent). So i cant get to the swf objects id. Any suggestions?