Specifies whether the generated Flash file should be compressed or not (Flash MX required).
void object->CompressSWF( boolean swf_compressed )
Default: the generated Flash animation is not compressed.
Flash 6 (MX) or higher is required for playing back the compressed movie.
The following PHP code illustrates use of the CompressSWF method in an PHP page.
$chart->SetSeparators( ";", true ); $chart->SetDataFromQuery(); $chart->LoadStyle( "C:\myStyle.scs" ); //Let's display an compressed SWF movie $chart->CompressSWF( true ); $chart->ExportAsResponse();
Applies To: Chart Object