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...
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]’ +...
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!
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.
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?
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...
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
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.
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...
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...
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...
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.
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() {...
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...
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.
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?
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.