My favorites | Sign in
Project Logo
                
Details: Show all Hide all

Earlier this year

  • Aug 12, 2009
    issue 3 (Save As dialog returns "null" instead of null when user canc...) reported by erunaamo   -   What steps will reproduce the problem? var result = systools.Dialogs.saveFile( "Please click Cancel!", "", "c:/"); if ( (result != null) && (result == "null") ) { trace("bug!"); } What is the expected output? What do you see instead? saveFile should return null, not "null" (a string), when user cancels. What version of the product are you using? On what operating system? systools 0,0,17 on Mac OS 10.3.9 Please provide any additional information below. 1. Note that this is similar to a fix from 2007-03-14 in the CHANGELOG. 2. Here is a proposed fix. Change this code in systools/Dialogs.hx... return new String(_dialog_save_file(untyped title.__s, untyped msg.__s, untyped initialDir.__s ); ... to this ... var result = _dialog_save_file(untyped title.__s, untyped msg.__s, untyped initialDir.__s ); if (result == null) { return null; } else { return new String(result); } That worked for me. Thanks!
    What steps will reproduce the problem? var result = systools.Dialogs.saveFile( "Please click Cancel!", "", "c:/"); if ( (result != null) && (result == "null") ) { trace("bug!"); } What is the expected output? What do you see instead? saveFile should return null, not "null" (a string), when user cancels. What version of the product are you using? On what operating system? systools 0,0,17 on Mac OS 10.3.9 Please provide any additional information below. 1. Note that this is similar to a fix from 2007-03-14 in the CHANGELOG. 2. Here is a proposed fix. Change this code in systools/Dialogs.hx... return new String(_dialog_save_file(untyped title.__s, untyped msg.__s, untyped initialDir.__s ); ... to this ... var result = _dialog_save_file(untyped title.__s, untyped msg.__s, untyped initialDir.__s ); if (result == null) { return null; } else { return new String(result); } That worked for me. Thanks!
  • Mar 10, 2009
    r96 (Released 0.0.17 Fix to systools.win.Tools.replaceExeIcon()) committed by wildwinter   -   Released 0.0.17 Fix to systools.win.Tools.replaceExeIcon()
    Released 0.0.17 Fix to systools.win.Tools.replaceExeIcon()

Older

  • Oct 08, 2008
    r95 (Added optional iconResourceID argument to systools.win.Tools...) committed by wildwinter   -   Added optional iconResourceID argument to systools.win.Tools.replaceExeIcon
    Added optional iconResourceID argument to systools.win.Tools.replaceExeIcon
  • Oct 02, 2008
    r94 (Fixed issue with windows .ndll not loading on 98 and 95.) committed by wildwinter   -   Fixed issue with windows .ndll not loading on 98 and 95.
    Fixed issue with windows .ndll not loading on 98 and 95.
 
Hosted by Google Code