Hiding flash component scrollbars using object/param syntax

Posted by Kieran Benton on Stack Overflow See other posts from Stack Overflow or by Kieran Benton
Published on 2009-07-06T13:41:15Z Indexed on 2010/04/05 5:03 UTC
Read the original article Hit count: 405

Filed under:
|
|
|

Hi all, I'm not sure if this is possible (complete non-flash developer speaking), but we have a 3rd party component that we want to only show a certain topleft hand portion of.

I've tried limiting the size of the HTML object container as:

<object type="application/x-shockwave-flash" width="600" height="415" data="<url>">
    <param name="movie" value="<url>" />
    <param name="wmode" value="transparent" />
    <param name="allowscriptaccess" value="always" />
    <param name="quality" value="high" />
    <param name="flashvars" value="<vars>" />
</object>

So limiting it to 600x415, but this causes horizontal and vertical scrollbars as part of the flash component to appear. Is there any standard way to override this behaviour?

Thanks.

© Stack Overflow or respective owner

Related posts about flash

Related posts about flashplayer