Giter Club home page Giter Club logo

neko-systools's People

Stargazers

 avatar  avatar

Watchers

 avatar

neko-systools's Issues

Browse for folder causes exception

What steps will reproduce the problem?
1. Call var result = systools.Dialogs.folder("Please select a folder...",
"") from App.hx
2. Leave it for 20 seconds and hit either button throws a flash exception
(script execution time)
3. Leave it for 10 minutes and it throws a different flash exception
(script execution time) and crashes neko.exe

What is the expected output? What do you see instead?
None/exception

What version of the product are you using? On what operating system?
SWHX 1,0,5,8
Systools 0,0,10
Neko 1.5.3

Please provide any additional information below.
None, really.

Original issue reported on code.google.com by [email protected] on 30 Jun 2007 at 12:22

Browse for folder causes exception

What steps will reproduce the problem?
1. Call var result = systools.Dialogs.folder("Please select a folder...",
"") from App.hx
2. Leave it for 20 seconds and hit either button throws a flash exception
(script execution time)
3. Leave it for 10 minutes and it throws a different flash exception
(script execution time) and crashes neko.exe

What is the expected output? What do you see instead?
None/exception

What version of the product are you using? On what operating system?
SWHX 1,0,5,8
Systools 0,0,10
Neko 1.5.3

Please provide any additional information below.
None, really.

Original issue reported on code.google.com by [email protected] on 30 Jun 2007 at 12:22

Save As dialog returns "null" instead of null when user cancels.

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!

Original issue reported on code.google.com by [email protected] on 12 Aug 2009 at 10:55

Duplicate class field declaration : LBUTTONUP

What steps will reproduce the problem?
1. Compile Sample 10-win-menus
2.
3.

What is the expected output? What do you see instead?

Expected is app.n; 

output is error "C:\Program Files\Motion-
Twin\haxe\lib\systools/0,0,11/systools/win/Events.hx:88:
 characters 15-43 : Duplicate class field declaration : LBUTTONUP
Press enter to exit..."

Editing Events.hx to remove duplicate LBUTTONUP results in error: 

C:\Program Files\Motion-
Twin\haxe\lib\systools/0,0,11/systools/win/Events.hx:88:
 characters 15-43 : Duplicate class field declaration : RBUTTONUP
Press enter to exit...

Editing Events.hx to remove duplicate RBUTTONUP results in multiple 
compile errors.

What version of the product are you using? On what operating system?

haXe-1.15-win; neko-1.6.0-win; systools 0.0.11 on Windows XP Pro, Athlon 
2.2 Ghz, 1 GB Ram

Please provide any additional information below.

None 

Original issue reported on code.google.com by [email protected] on 8 Oct 2007 at 2:19

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.