Search results

  1. F

    Minimize window with Javascript

    I tried again, but it didn’t work. Maybe im explaining myself wrong. The app is setup without title bar and runs as kiosk mode. I create buttons to close and minimize the app. Close works without problems, and I need a way to minimize the app to the windows taskbar, as any window in windows O.S...
  2. F

    Minimize window with Javascript

    Hi, thanks for the reply. I tried what you mentioned and now I don’t get any error, however, nothing happens. I need that the main window go minimize, when I click a button. How can I achieve this?
  3. F

    Minimize window with Javascript

    Hi, I change the javascript code with double quote marks, but still getting error: “Unknown Identifier or Variable” My code is: exeoutput.RunHEScriptCode(“UserMain.hideMainWindow;”); and the script: procedure showMainWindow; begin SetUIProp(“fview”,“Visible”,“TRUE”); end; procedure...
  4. F

    Minimize window with Javascript

    I add some code into the script file UserMain, that i found on the forum: procedure showMainWindow; begin SetUIProp(“fview”,“Visible”,“TRUE”); end; procedure hideMainWindow; begin SetUIProp(“fview”,“Visible”,“FALSE”); end; and then in javascript i run it like...
  5. 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!
  6. 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’...
  7. 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