Recent content by Banana

  1. B

    jikes compiler in CLI

    Not "set the classpath to jikes", "set the classpath" in "the arguments to jikes".
  2. B

    intercepting events in OS X (replacing toolbox fnct)

    Application Enhancer, or your own clone thereof, is currently the only way to patch arbitrary code in running applications. In OS X, the old Macintosh Toolbox does not exist in the way it used to, and no application is allowed to touch another's process space. At the very minimum, you would need...
  3. B

    no dynamic memory allocation in obj-c?

    new is C++, not C - your code would work if the extension of the file was .mm, as you'd then be using Objective-C++.
  4. B

    Key input from NSTextField

    Override the keydown: method of NSResponder, which NSTextField inherits from. Or, in Interface Builder, set it to send action "Only on Enter" rather than "On end editing" - this is likely to be simpler for what you want.
  5. B

    jikes compiler in CLI

    Try using javac instead of jikes, or setting your classpath in the arguments to jikes.
Back
Top