Search results

  1. F

    Error on running app

    I compiled my app with version 2024.2 and when i run it in windows 11, it crashes without any alert. When i check on windows event viewer i get this error: Faulting application name: FactoriApp.exe, version: 1.3.0.4, time stamp: 0x67688e63 Faulting module name: unknown, version: 0.0.0.0, time...
  2. F

    Heexternal doesn't work anymore

    I compiled my app with the new versión 2024.2 and now the heexternal doesn’t work anymore. I had this function: function OpenBrowser(website) { //EXEOUTPUT console.log(website); url = "heexternal://" + website; location.href = url; } Why? How can I open a URL with the default browser now?
  3. F

    Open external File with default application

    Im trying to set a script to open a file with the default application of windows. I have some Powerpoint files that i need to open with the microsoft app and im using this: procedure OpenAFile(FilePath: String); var res: integer; begin res := OpenFile(FilePath, “”, SW_SHOWNORMAL); if res < 32...
  4. F

    Go back to exeoutput 2021

    Hi, Im having serious issues with chromium in version 2024. I constantly get blank pages and when I check errors in PHP or Javascript everything looks OK. However, if I go to the devTools I get the message “Debugging connection was closed. Reason: Render process gone”. Which suggest chromium...
  5. F

    Disable Multithread seems not work

    Hi, i’m having problems with the load of pages. Sometimes i get a blank page. I read that could be because of multithreading, so I disabled it. However, when i see the process in the task Manager, the application still show several processes running. Can you help me please
  6. F

    Run PHP 7.4 in Exeoutput 2024

    Hi, i installed the new version of Exeoutput, and now my app made with php 7.4 doesn’t work. I installed the php 7.4 Runtime (copy into exeoutput folder) but still doesn’t work. What can I do?
  7. F

    Copy text to the windows clipboard

    How can I copy a selected text with javascript. I checked on the Documentation and i found: SetClipboardText but is not explained very clear how to use it. Can you tell me how it should be in javascript. Let’s say: myText = ‘This is my text I want to copy’; //exeoutput function...
  8. F

    How can I get the version of the app

    Hi Im trying to find a way to get the version of the compiled app. I searched about the topic in the forum, but the links provided are gone. Just found the suggestion of using: exo_get_resstring(‘SPubVersion’); How do I use that in javascript? Can you provide an example please?
  9. F

    Minimize window with Javascript

    Hi im looking for a way to minimize the main windows with javascript like: exeoutput.RunHEScriptCode(‘ExitPublication;’); How can I accomplish this? I looked for in the forum, but i couldn’t find a clear response. Thanks!
  10. F

    InnoDB: The innodb_system data file 'ibdata1' must be writable

    Hi, I receive this error on mysql and I can’t start the app 2021-10-14 17:38:10 0 [ERROR] InnoDB: The innodb_system data file ‘ibdata1’ must be writable 2021-10-14 17:38:10 0 [ERROR] InnoDB: The innodb_system data file ‘ibdata1’ must be writable 2021-10-14 17:38:10 0 [ERROR] Plugin ‘InnoDB’...
  11. F

    Debugging not working

    Hi, im debugging the app so I enabled all the tools for debugging: HTML5: developer Tools PHP: Enable PHP error logging (stored on php_errors.log) I have an error that shows an alert at runtime But when I go to look the php_errors.logs, is not there. Is not generated. Is really frustrating...
Back
Top