Quote:
Originally posted by OwlBoy:
That is due to the fully sprite based interface and world.
-Owl
I thought of that this morning. It's been SO long since I've p…
I have several characters on the west server non ladder. Im trying to organize an 8 player griswold wearing paladin team. Anyone interested?
http://homepage.mac.com/ark/web/home.h…
Quote:
Originally posted by Scotttheking:
yahoo!
Hey SteevAK, it's time to get back into D2 now that our characters have been deleted again
I don't have much tim…
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…
Quote:
Originally posted by Angus_D:
http://www.qeradiant.com
http://www.qeradiant.com/wikifaq/ind...ion%20on%20OSX
Thanks, I'll get to work on getting this install…
To create skins all you need is a simple image editing program. If by skins you mean models, then you can probably use this Strata 3D program your talking about to make them. Sea…
Quote:
Originally posted by Vash:
To create skins all you need is a simple image editing program. If by skins you mean models, then you can probably use this Strata 3D …
I searched google, but practically all tutorials for modelling use 3D Studio Max, which isn't available for the Mac. All I have is strata so you can see my predicament.
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…
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…
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…
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 …
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…
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…
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…
It appears that IBAction methods can access all of the windows contents (various NSTextFields etc...) fine, but methods that are just locally implemented cannot...
for example
public void doSomething() {
((NSTextField)field).setIntValue(5);
}
doesn't work, but
public void doSomethingElse(Object sender) { /*IBAction*/
((NSTextField)fi…
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…
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…
Quote:
Originally posted by Wes:
Could something be going wrong because of this?
public void toSend(Object sender) { /* IBAction */
NewController controller = …
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,…
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…