The galleryserverpro.config file has three HTML templates for rendering HTML for Shockwave files: 1 for IE 5-9 for Mac, 1 for IE for Windows, and 1 for all other browsers. Both the IE/Win and IE/Mac templates do not specify a scale setting, which I believe causes Flash to scale the animation to fit the dimensions. But the other template specifies a value of "noScale" for the scale property, which causes the file to be shown actual size. This can cause it to be clipped, as it is in your situation.
The fix is to update galleryserverpro.config to specify a different value for the scale property (or just delete it). Open galleryserverpro.config in a text editor (it is in the gs/config directory). Look for this text:
Code:<mediaObject mimeType="application/x-shockwave-flash">
<browsers>
<browser id="default"
htmlOutput="<object type="{MimeType}" data="{MediaObjectUrl}" style="width:{Width}px;height:{Height}px;" id="flash_plugin" standby="loading movie...">	<param name="movie" value="{MediaObjectUrl}" />	<param name="allowScriptAccess" value="sameDomain" />	<param name="quality" value="best" />	<param name="wmode" value="opaque" />	<param name="scale" value="noScale" /> <param name="bgcolor" value="#FFFFFF" />	<param name="salign" value="TL" />	<param name="FlashVars" value="playerMode=embedded" /><p><strong>Cannot play Flash content</strong> Your browser does not have the Flash plugin or it is disabled. To view the content, install the Macromedia Flash plugin or, if it is already installed, enable it.</p></object>" />
Notice this section in the middle:
Code:<param name="scale" value="noScale" />
Either delete it or change it to this:
Code:<param name="scale" value="default" />
I am not sure why I originally used the noScale value, probably because I didn't want to enlarge or shrink animations. But I should have been consistent across all browsers. I think I will change this to use the default value as I described above in future releases, as it seems to make more sense. Plus, I looked up the
properties on the Adobe site, and noScale doesn't even exist (maybe it did at one time).
Let me know if this gives you the desired results.
Roger Martin
Creator and Lead Developer of Gallery Server Pro