Skip to main content
Search titles, bodies, and author names
Found 9,367 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

How to make a new window? — #12

This shouldn't be the case. One reason it might appear to be, though, is if the non-IBAction method is getting called before all your objects are unpacked � until awakeFromNib() is…
MacNN Software by Chuckit

How to make a new window? — #13

The non-IBAction method is called after another class calls .makeKeyAndOrderFront() on the window that is giving me trouble. Could something be going wrong because of this? pu…
MacNN Software by Wes

How to make a new window? — #14

Quote: Originally posted by Wes: Could something be going wrong because of this? public void toSend(Object sender) { /* IBAction */ NewController controller = …
MacNN Software by Chuckit

How to make a new window? — #15

Ok, I have two windows (window, and otherWindow), and two controllers (controller, and otherController) controlling their respective windows. When a button on "window" is pressed,…
MacNN Software by Wes

How to make a new window? — #16

Easy way: put both windows in the same .nib file. drag a connection from the button to the other window's icon in the instances tab. connect on "makeKeyAndOrderFront" (or someth…
MacNN Software by arcticmac
mp.ls