Hello,
There is a fix, but only for version 6 of Kentico
CMS, so you would need to upgrade your Kentico to fix it (or you can use a following workaround).
The problem is, that there is a scale parameter missing for a quicktime movie in version 5. So you can add your video into an editable region, look at the source code, which is rendered on the live site, paste it instead of the source code generated by Kentico for that movie and add the
scale="tofit" attribute into it:
<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" type="video/quicktime" codebase="http://www.apple.com/qtactivex/qtplugin.cab" width="300" height="200" >
<param name="src" value="http://domain.com/MOV_video.aspx" />
<param name="autoplay" value="false" />
<param name="controller" value="true" />
<param name="loop" value="false" />
<embed type="video/quicktime" src="http://domain.com/MOV_video.aspx" width="300" height="200"
controller="true" autoplay="false" loop="false" scale="tofit">
</embed>
</object>
Best regards,
Jan Hermann