Hi,on my Windows test server I have a working PHP script that calls PDF2SWF.
It looks like this: ---------------------------------------$config = $toolspath . "pdf2swf.exe" . ' -S -qq ' . $filename_pdf . " " . $filename_swf;
$swfc_meldung = system($config); --------------------------------------- $toolspath is in this case "c:\swftools\\". On Linux $toolspath will be something like "/usr/local/bin/". How must I call PDF2SWF on a Linux system? Benedkt
