Ver Mensaje Individual
  #1 (permalink)  
Antiguo 12/02/2006, 21:47
Avatar de ciberpato
ciberpato
 
Fecha de Ingreso: agosto-2004
Mensajes: 142
Antigüedad: 19 años, 8 meses
Puntos: 1
Como hacer esto?

Necesito ayuda de los capos del php. Necesito exportar a excel un gráfico generado con flash. tengo el siguiente script:

<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"
WIDTH=<?php print $chart[ 'canvas_bg' ]['width' ]; ?>
HEIGHT=<?php print $chart[ 'canvas_bg' ]['height' ]; ?> id="charts" ALIGN="">
<PARAM NAME=movie VALUE="<?php print $path."chart/charts.swf"; ?>?<?php print $params; ?>">
<PARAM NAME=quality VALUE=high>
<PARAM NAME=bgcolor VALUE=<?php print $chart[ 'canvas_bg' ]['color' ]; ?> >
<EMBED src="<?php print $path."chart/charts.swf"; ?>?<?php print $params; ?>" quality=high NAME="charts" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"
bgcolor=<?php print $chart[ 'canvas_bg' ]['color' ]; ?>
WIDTH=<?php print $chart[ 'canvas_bg' ]['width' ]; ?>
HEIGHT=<?php print $chart[ 'canvas_bg' ]['height' ]; ?>

></EMBED>

</OBJECT>

Lo anterior funciona perfecto y me lo muestra en la página, pero debo tener la opción de exportarlo a excel mediante in boton. SOS
A todos gracias por su atención.