Search results

  1. webguy22

    Is there a step by step process to install a code signing certificate?

    I received my user.crt file from Comodo. In ExeOutput, under Security -> Code Signing, there’s a drop down with three choices: PFX File, Certificate Subject Name, and Certificate Thumbprint. Which one do I use? I don’t have a PFX File. Here’s what I did and the compiler result… Opened...
  2. webguy22

    Function GetClipboardText losing formatting

    No problem. There’s no way around the truncating of body text using mailto:. Every mail client and browser is different. var selection = window.getSelection().toString(); var selectionEncode = encodeURIComponent(selection); window.location.href = ‘heexternal://mailto:[email protected]’ +...
  3. webguy22

    Function GetClipboardText losing formatting

    Found a solution for the mailto: issue. Saw this: Mailto: doesn't work in Chromium (SOLVED) and implemented this in my JavaScript: window.location.href = ‘heexternal://mailto:[email protected]’; and it worked!
  4. webguy22

    Multiple processes running for one compiled exe

    Thank you. Good to know,
  5. webguy22

    Multiple processes running for one compiled exe

    Curious, but why is that? Have one compiled ExeOutput exe yet I see four processes running in Windows Task Manager when I execute the compiled program. All four do go away when I quit the exe.
  6. webguy22

    Function GetClipboardText losing formatting

    window.location.href = ‘http://www.google.com’; // works window.location.href = ‘mailto:[email protected]’; // fails Is there something going on that prevents mailto from working under ExeOutput?
  7. webguy22

    Function GetClipboardText losing formatting

    After further review, not sure what the function ReplaceString will do if the variable already gets truncated, when it hits a /, after it’s sent to the procedure. If I can get window.location.href to work in the JavaScript code, within the PHP program, that would solve and simplify all of...
  8. webguy22

    Function GetClipboardText losing formatting

    Well, maybe there is now? Hopefully someone else can try and let the community know. It will not work for me under ExeOutput. Just a simple test of window.location.href = ‘mailto:[email protected]’; or any address. Thanks
  9. webguy22

    Function GetClipboardText losing formatting

    Thank you. I will try that. Please confirm 1) Is it true I will not be able to do a “window.location.href” from a compiled ExeOutput? Like I posted earlier, it works on localhost but not after the program is compiled.
  10. webguy22

    Function GetClipboardText losing formatting

    Not sure how I would do that. In my example, var M is fine (or looks fine in the messagebox) but after the OpenFile the text is placed in the body without CRLF’s. May I clarify a couple of things before proceeding… Is it true I will not be able to do a “window.location.href” from a compiled...
  11. webguy22

    Function GetClipboardText losing formatting

    Have an update. I have determined that: var selection = window.getSelection().toString(); when compiled and executed under ExeOutput does collect the entire clipboard. But the call to the procedure was only accepting x amount of chars. Why? It stopped when it encountered a / (forward slash) in...
  12. webguy22

    Function GetClipboardText losing formatting

    I’ve tried many ways to avoid using GetClipboardText(). But cannot find a solution. I did a ExeOutput procedure to select the data, then called a JavaScript function to get the data from the clipboard via var selection = window.getSelection().toString(); On localhost, all works fine and the...
  13. webguy22

    Function GetClipboardText losing formatting

    The link on your documentation PHP SAMPLES page fails: https://www.exeoutput.com/help/php-samples Please refer to the General Demonstration for demonstrations and PHP samples.
  14. webguy22

    Function GetClipboardText losing formatting

    I was trying to find an alternative by calling a javascript function to get the clipboard instead of GetClipboardText(). But the ExecuteHTMLScript does not work. Why is that? Not sure what to use as the second parameter. The HTML javascript (added alerts for testing): function getClipboard() {...
  15. webguy22

    How To Implement a Progress Bar

    I actually did a simple workaround where program A does the get folder and displays progress (via text and an animated gif) then calls the program B to do the work (when it completes, the progress stuff goes away). But if you know of an AJAX solution to share, I’m sure others would appreciate...
  16. webguy22

    How To Implement a Progress Bar

    Hopefully last question. Where are the demos? I looked at my installation and online documentation and cannot find. On the doc PHP SAMPLES, the following link does not work: Please refer to the General Demonstration for demonstrations and PHP samples.
  17. webguy22

    Function GetClipboardText losing formatting

    Is there an alternative to GetClipboardText() to store clipboard data to a variable which will keep CRLF?
  18. webguy22

    Function GetClipboardText losing formatting

    Yes, they look to be removed or ignored.
  19. webguy22

    How To Implement a Progress Bar

    Ok, thanks. I have searched and tried at least a dozen JavaScript or AJAX examples and could not get any to work. Know any ones that work under ExeOutput?
  20. webguy22

    How To Implement a Progress Bar

    Like this: exo_runhescriptcom(“Main.SetProgress|50”); $dirx = exo_return_hescriptcom(“UserMain.AskFolder”, “Error”); If so, not seeing a progress bar. I did enter the procedure SetProgress in UserMain.
Back
Top