Kyong Kwak
Guest
|
Posted:
Thu Jan 13, 2005 7:23 am Post subject:
Flash Holder |
|
|
Hey,
went to stefan's blog and wanted to use the PresentationTemplate for a
flash piece. <Subject: Unnecessary custom Placeholder controls>
I realized later that I don't know how to resize the flash width and
height! I tried using 100% and 100% but that makes it break for some
reason, I know that percentages are accepted and I took the text
straight from stefan's site first and also tried the macromedia site
here (
http://www.macromedia.com/support/flash/publishexport/scriptingwithflash/scriptingwithflash_05.html
)
basically:
<OBJECT CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
CODEBASE="http://active.macromedia.com/flash5/cabs/swflash.cab#version=5,0,0,0"
ID=navmovie WIDTH=100% HEIGHT=100%>
<PARAM NAME="movie" VALUE="<%# Container.AttachmentUrl %>">
<PARAM NAME="play" VALUE="false">
<PARAM NAME="quality" VALUE="high">
<EMBED NAME=navmovie SRC=<%# Container.AttachmentUrl %> WIDTH=100%
HEIGHT=100% PLAY=false
SWLIVECONNECT=true QUALITY=high>
</OBJECT>
doesn't work. Is it just me? The same thing works with I replace the
100% with any other number, I used 595 x 500
THANKS! |
|
Stefan [MSFT]
Guest
|
Posted:
Thu Jan 13, 2005 3:17 pm Post subject:
Re: Flash Holder |
|
|
Hi Kyong,
My assumption is that percentage does not work. Try using absolute values.
But this question is better suited in a flash related newsgroup.
My code only provided a wrapper to inject the resource URLS.
The object tag is the flash object tag.
So this is not a MCMS related question.
Cheers,
Stefan.
"Kyong Kwak" <kkwak_at_purposedriven.com@nospam.com> wrote in message
news:O16PO3Q#EHA.2196@TK2MSFTNGP14.phx.gbl...
| Quote: |
Hey,
went to stefan's blog and wanted to use the PresentationTemplate for a
flash piece. <Subject: Unnecessary custom Placeholder controls
I realized later that I don't know how to resize the flash width and
height! I tried using 100% and 100% but that makes it break for some
reason, I know that percentages are accepted and I took the text
straight from stefan's site first and also tried the macromedia site
here (
http://www.macromedia.com/support/flash/publishexport/scriptingwithflash/scriptingwithflash_05.html
)
basically:
OBJECT CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
CODEBASE="http://active.macromedia.com/flash5/cabs/swflash.cab#version=5,0,0 |
,0"
| Quote: | ID=navmovie WIDTH=100% HEIGHT=100%
PARAM NAME="movie" VALUE="<%# Container.AttachmentUrl %>"
PARAM NAME="play" VALUE="false"
PARAM NAME="quality" VALUE="high"
EMBED NAME=navmovie SRC=<%# Container.AttachmentUrl %> WIDTH=100%
HEIGHT=100% PLAY=false
SWLIVECONNECT=true QUALITY=high
/OBJECT
doesn't work. Is it just me? The same thing works with I replace the
100% with any other number, I used 595 x 500
THANKS! |
|
|