Recent content by zedola

  1. zedola

    SetGlobalVariable/GetGlobalVariable don't work on JS: SOLVED

    I’m running the following code within the chromium environment exeoutput.SetGlobalVariable( 'alertskey', 'abc123', true ); var alerts_key = exeoutput.GetGlobalVariable( 'alertskey', null ); alert( alerts_key ); The alert reads...
  2. zedola

    How to programmatically "restore" the main window from tray?

    What about the list of some common ones?
  3. zedola

    How to programmatically "restore" the main window from tray?

    Can you please confirm what the correct way to show/hide/minimize/maximize the main window is? I sometimes get an error doing it with the “Visible” property. The error reads “Cannot change Visible property inside OnHide or OnShow”
  4. zedola

    How to programmatically "restore" the main window from tray?

    I figured out the “Visible” property does it. E.g. procedure showMainWindow; begin SetUIProp("fview","Visible","TRUE"); end; procedure hideMainWindow; begin SetUIProp("fview","Visible","TRUE"); end; Is there a list of all the properties that SetUIProp has access...
  5. zedola

    How to programmatically "restore" the main window from tray?

    Is there a way to programmatically restore the main window when it’s minimized to the system tray? I assume it could be a SetUIProp, but there is no list of UIProps that I can find anywhere… thanks!
Back
Top