Search results

  1. orionmetrics

    Flush() works with windows XP, but not with Win 7

    Also tried also adding too, no change. I also have the No multithreading checbox unchecked to support flush(). Output_buffer is the same setting as the application used to be on windows xp (and worked).
  2. orionmetrics

    Flush() works with windows XP, but not with Win 7

    Alas no such luck - Tried adding <html><head>....</head><body> .... code .... </body></html> tags, but alas made no difference - tried adding this to my own application and the demo that comes with exeoutput for php - flush() still not working on windows 7 IE11 😦 Thanks for your suggestion...
  3. orionmetrics

    Flush() works with windows XP, but not with Win 7

    Cheers for reply dapower - will just try that now, and let you know.
  4. orionmetrics

    Flush() works with windows XP, but not with Win 7

    Hi got a weird issue, same application compiled with Exeoutput for php 1.7 - flush() worked as expected on my older windows xp machine, with IE8. Now after migration to windows 7 using IE11 - flush() isn’t working -same settings etc php.ini remains the same. Moved compiler over to my windows 7...
  5. orionmetrics

    Selectdirectory - set initial tree node rather than just root?

    Thanks, but I notice exeoutput for php can call windows .dll files - would it be possible to call a get directory function instead via a windows .dll ?
  6. orionmetrics

    Selectdirectory - set initial tree node rather than just root?

    Hi, I am using the hescript inbuilt selectdirectory function to pick a directory. I am storing the selected directory, so that next time the application runs, it can show the same directory previously selected as part of the listed folder tree (so users could pick another folder, or just select...
  7. orionmetrics

    Isappterminated not working?

    Ignore this - problem down to myself, there was an inner loop too - whoops 🙂 Works fine.
  8. orionmetrics

    Isappterminated not working?

    Hi I’ve got a simple loop that looks like this $istop = 0; do { // various file input and output if (exo_getglobalvariable(“isappterminated”, “0”) == “1”) { $istop=1; } } while($istop==0); exit; But when it runs, and I say exit the application by file -> close or clicking on the normal...
  9. orionmetrics

    Equivalent to muser property but for toolbar buttons -SOLVED

    Correction: SetUIProp(“buser_”+buttonid, “Enabled”, “False”); is exactly what is needed - greys out button, doesn’t make it disappear
  10. orionmetrics

    Equivalent to muser property but for toolbar buttons -SOLVED

    Think I have found the solution in your other product thread… http://www.gdgsoft.info/viewtopic.php?f=8&t=1459&view=next eg SetUIProp(“buser_btnSwap”, “Visible”, “True”); Guessing this is still valid for exeoutput for php ?
  11. orionmetrics

    Equivalent to muser property but for toolbar buttons -SOLVED

    Hi again… looking at the documentation I am guessing the function might be SetUIProp() - but I am still unaware what the submitted format is for toolbars. Would it still be muser_{id of control} like in the menus or tuser_{id of control} or something completely different ? Could an example of...
  12. orionmetrics

    Equivalent to muser property but for toolbar buttons -SOLVED

    Hi, in the previous thread (now in the howto section) it was mentioned how to enable/disable menu items in real time using hescript functions eg SetMenuProp(“muser_Mypage1”, “Enabled”, “FALSE”); where Mypage1 is a menu identity, and in this case Mypage1 enabled property is made false, so is...
  13. orionmetrics

    Setting and retrieving global variables (SOLVED)

    No worries, solved it myself… It was as simple as replacing var srun = exeoutput.GetGlobalVariable(“simrun”); with var srun = exeoutput.GetGlobalVariable(“simrun”,“0”); Missed the 2nd argument. Working now.
  14. orionmetrics

    Setting and retrieving global variables (SOLVED)

    Hi, got a problem and I just am not sure what I am doing wrong. It is to do with using hescript to set and get a global variable under Chromium web kit. Basically got two toolbar buttons - one which calls Macros.StartSimulation and the other calls Macros.StopSimulation via Execute this script...
  15. orionmetrics

    html5 canvas apps on IE8 XP - a possible solution

    For those people still using windows XP (myself included) and stuck with IE8 check out this excellent library for getting html5 canvas scripts working on IE8 - http://code.google.com/p/explorercanvas/ - experimenting with it and box2d physics library with exeoutput for php and working well so far…
  16. orionmetrics

    Future versions still support windows XP SP3?

    Excellent news - can still use the software on my laptop (windows 8 drivers not available for it) 🙂
  17. orionmetrics

    Future versions still support windows XP SP3?

    Hi, just wondering if future versions of Exeoutput will still be supporting Windows XP, or do you have plans to phase that operating system out in the near future ? Hoping not.
  18. orionmetrics

    Executable sizes

    Hi, not a whine or bug as such, but just curious why the sizes of executables have trebled in size between version 1.5 and version 1.6 - everything else configuration wise been the same ? You can make the executables a similar size as before when using version 1.5 by using the new compress with...
  19. orionmetrics

    Imagettftext not working with gd() support turned on: SOLVED

    Sorry this was user error on my part - had to set file management flags to the arial.ttf font so they were virtual, now it works like a charm.
  20. orionmetrics

    Imagettftext not working with gd() support turned on: SOLVED

    Hi, tried to think why it isn’t working but got a simple test application consisting of three files: index.php which calls via an tag the source file image.php, and one embedded font file arial.ttf - but it is not generating the expected text in the image and I don’t understand why… The code...
Back
Top