
26/04/2006, 10:35
|
 | | | Fecha de Ingreso: junio-2005 Ubicación: buenos aires
Mensajes: 45
Antigüedad: 19 años, 10 meses Puntos: 0 | |
si estoy usando la funcion esa y encontre despues otra funcion para hacer la carga, te la paso para que la veas tambien porque seria otra opcion pero tiene algo mal y no me doy cuenta que es
Código:
function InsertFlash(Path, FileName, Width, Height)
with response
.write("<object classid=""clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"" " _
& " codebase=""http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"" width=""" & Width & """ " _
& "height=""" & Height & """>")
.write("<param name=""movie"" value=""" & Path & FileName & """>") & vbcrlf
.write("<param name=menu value=false>") & vbcrlf
.write("<param name=""quality"" value=""high"">") & vbcrlf
.write("<embed src=""" & Path & FileName & """ quality=""high"" menu=""false"" pluginspage=""http://www.macromedia.com/go/getflashplayer"" " _
& "type=""application/x-shockwave-flash"" width=""" & Width & """ height=""" & Height & """></embed>") & vbcrlf
.write("</object>") & vbcrlf
end with
end function
y se usa asi:
Código:
call InsertFlash("ruta_del_swf", "archivo.swf", "Ancho_del_archivo", "alto_del_archivo")
|