| Wally Kolcz 2005-07-26, 7:28 pm |
| My site allows for members to post flash files for clients to proof online,
but I have having issues with the sizing.
When placing dynamic photos online, if I remove the width and height of a
image placeholder, it will show as the correct size of the image that is
uploaded.
How can I make an embedded flash player respect the actual size of the file
that is uploaded? I tried to remove the width and height to let the actual
file uploaded dictate the size, but it comes up small and squared.
Listed below is the original flash code with the predetermined sizes:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.ca
b#version=6,0,29,0" width="560" height="400">
<param name="movie"
value="proofs/<%=(pi.Fields.Item("image").Value)%>" />
<param name="quality" value="high" />
<embed src="proofs/<%=(pi.Fields.Item("image").Value)%>"
width="560" height="400" quality="high"
pluginspage="http://www.macromedia.com/go/getflashplayer"
type="application/x-shockwave-flash"></embed>
</object>
Please help.
ASP/VB
|