swftools-common
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Swftools-common] Fwd: Help


From: Avinash Singh
Subject: [Swftools-common] Fwd: Help
Date: Tue, 17 Sep 2013 17:57:37 +0530

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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]