|
This tip for setting the size of embedded is taken from Elizabeth Castro's great book 'HTML for the WWW'
add
< param name="scale" value="factor" />
(the /> is for xhtml to be accepted as validated code. if you're not bothering with validated code you can
get away with just >, but having read this book, validated xhtml is beneficial in the long term in terms of
having sites compatable with cross platform browser advances )
where factor is either:
In the embed section, add the parameter scale="value" (where value is whatever you chose in the tag.
As a note for validation: xhtml doesn't validate the <embed> tag, so i removed it, and the file still plays in
IE6 and NN7.
tofit (to fit it's box)
aspect (fit box but maintain original proportions)
n (n=number you wish to scale it by, ie: 2 for double size)
|
<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="363" width="633"> <param name="src" value="Library4.mov"> <param name="autoplay" value="true"> <param name="scale" value="tofit"> <param name="type" value="video/quicktime" height="363" width="633"> <embed src="Library4.mov" height="363" width="633" autoplay="true" scale="value" type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/"> </object> |
|
|
|
|
|
|