Skip to main content
Search titles, bodies, and author names
Found 12,312 posts across 1 forum.

Quake 3 - What tools for Skinning and Mapping? — #1

I'd like to create Machinima movies using Quake3Arena, but I need to be able to create my own skins, maps, etc. What tools are there for the Mac for achieving this end? I have St…
MacNN Software by itistoday

How to make a new window? — #1

Simple (I think) question, I have my main window set up with a button that I would like to spawn a new (different) window. As of now my application is not set up as a multiple doc…
MacNN Software by Wes

How to make a new window? — #2

It could be in a separate nib. It could be in the same one. It's your choice. Keeping your MainMenu.nib as small as possible is good for your launch time, but it's not like your p…
MacNN Software by Chuckit

How to make a new window? — #3

My general rule of thumb (taken from the documentation) for a Document-based application is that if the two windows are for the same document, then I define them in the same NIB fi…
MacNN Software by Brass

How to make a new window? — #4

So that is settled, but how do I display the other window once the user clicks said button? (noob here, and using Java) something like otherWindow.display()? Make it a child of …
MacNN Software by Wes

How to make a new window? — #5

Quote: Originally posted by Wes: So that is settled, but how do I display the other window once the user clicks said button? (noob here, and using Java) something like…
MacNN Software by Brass

How to make a new window? — #6

Ok, so in my nib file I have a window called "SomeWindow" that I want to open when the user clicks a button on "MainWindow" in that action to to that I have to make "SomeWindow" p…
MacNN Software by Wes

How to make a new window? — #9

New question now... Is it possible to make a new controller for that new window? I have tried making a new class "NewWindowController", but it gives me NullPointerExceptions whene…
MacNN Software by Wes

How to make a new window? — #10

It appears that IBAction methods can access all of the windows contents (various NSTextFields etc...) fine, but methods that are just locally implemented cannot...
MacNN Software by Wes

How to make a new window? — #11

for example public void doSomething() { ((NSTextField)field).setIntValue(5); } doesn't work, but public void doSomethingElse(Object sender) { /*IBAction*/ ((NSTextField)fi…
MacNN Software by Wes
mp.ls