I have a question regarding the params in the object tag.

first, are the default params (height, bgcolor etc) the only ones permitted?

second how can i pass in a var at runtime...so far i'm doing it like this

<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="
http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0";
width="550" height="400" id="DocProxy" align="middle">
<param name="allowScriptAccess" value="always" />
<param name="movie" value="DocProxy.swf?ZipCode=" />
<param name="quality" value="high" />
<param name="bgcolor" value="#ffffff" />
<embed src="DocProxy.swf" quality="high" bgcolor="#ffffff" width="550"
height="400" name="DocProxy" align="middle" allowScriptAccess="always"
type="application/x-shockwave-flash" pluginspage="
http://www.macromedia.com/go/getflashplayer"; />
</object>

the problem is that if i pass in ZipCode this way i need to use the request
object  ("DocProxy.swf?ZipCode=<% request.getParameter("zipCode"); %>  "/>)
to pass the value, but how can i do it within the quotes

thanks in advance
_______________________________________________
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Reply via email to