Recent content by fpedeboscq

  1. F

    Javascript : addEventListener

    I use version 4.0.2 of HtmlExe. Finally I had the flv movie as follow in the html code: What I would like to do is to stop the flv movie by clicking on a html button? Your help would be very appreciated. Francois
  2. F

    Opening PDF files

    My pdf is compiled inside the executable. Here is my code, I used HTML2PDF and it works very well: > <?php if ($generate) { $content = ob_get_clean(); require_once(dirname(__FILE__).'/scripts/html2pdf/html2pdf.class.php'); try { $html2pdf = new HTML2PDF('P','A3','fr', false, 'ISO-8859-15'...
  3. F

    Javascript : addEventListener

    Hello, I am implementing an html video player which needs to be controlled by html button. I proceed as follow: in the html code: Play in the javascript code: var play = document.getElementById(‘play’); play.addEventListener(‘click’,playControl,false); function playControl() { do stuff… }...
  4. F

    Opening PDF files

    Hello, Is there a place where I could find some scripts for eseoutput? I am currently looking for a srcript to open a PDF file. OpenFile just open the browser at the folder place of the specified file? Thanks for your help. Francois
  5. F

    Adding External Files (SOLVED)

    Thanks a lot it’s working perfectly. I will proceed to the order of your product.
  6. F

    Adding External Files (SOLVED)

    Hello, First of all congratulation for this excellent product. I would like to access to pdf files that are placed into subfolder of my exe file. I would like to use and keep the pdf file external from the exe because I will have to update it later one without having to recompile the exe and...
Back
Top