Hi I am using PDF2SWf converter to convert a pdf file to swf file by
Command prompt in my ASP.Net Project...
Its converted properly but i want navigation bar also for next and previous
page while converting from pdf2swf_gui.exe its coming with navigation bar
also, but when i converted by pdf2swf.exe navigation bar with next and
previous page button is not coming in flash file.
my code is:
string fileName = "PDFFiles/Test.pdf";
System.Diagnostics.Process p = new
System.Diagnostics.Process();
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.CreateNoWindow = true;
p.StartInfo.RedirectStandardError = true;
p.StartInfo.WorkingDirectory =
HttpContext.Current.Server.MapPath("~");
p.StartInfo.FileName =
HttpContext.Current.Server.MapPath("~/PDFFiles/pdf2swf.exe");
//p.StartInfo.Arguments = " -b " +
"PDFFiles/swf/default_viewer.swf " + " -o " + "PDFFiles/Test" + ".swf";
p.StartInfo.Arguments = " -b " + fileName + " -o
PDFFiles/Test.swf";
//Start the process
p.Start();
p.WaitForExit();
p.Close();
Please help me regarding this .
Thanks,
Avinash Singh
---------------
SWFTools-common is a self-managed list. To subscribe/unsubscribe, or amend an
existing subscription, please kindly point your favourite web browser
at:<http://lists.nongnu.org/mailman/listinfo/swftools-common>