Search results

  1. K

    Will OS X 1.2 work properly on this machine?

    It's going to be a swap for my iMac (Purple). The ONLY reason to make the trade is so I can put a video card that supports OpenGL aceleration in it (don't care about the quartz stuff too much). I may buy a GeForce2 MX card for it, as that is what I have in my PC and have no complints (good...
  2. K

    Will OS X 1.2 work properly on this machine?

    I mean OS X, version 10.2, not OS X 1.2. Konan
  3. K

    Project builder - OpenGL acceleration question

    When creating an OpenGL program using Project Builder, I add the file "OpenGL.framework" to my project. My video card does not support openGL acceleration (so I am flying blind here). Do I need to add any other frameworks to the program enable openGL acceleration, or is it done automatically...
  4. K

    Will OS X 1.2 work properly on this machine?

    I am about to get system below. I have one question.... Will there be any compatibility issues with OS X 1.2? In particular, does OS X 1.2 support the Voodoo 3 16mb video card for OpenGL acceleration. It is extremely important that it does. Konan Apple macintosh G3 processor 450mhz...
  5. K

    Programming Mac Classic

    I am trying to comile a program (OpenGL based) using MPW, and When the program runs, I am getting some very strange behavior and sometimes OS 9 freezes completely. I have compiled the same program in Windows and in Mac OS X, so I am forced to conclude that there is a "Mac Classic Specific"...
  6. K

    Anybody ever program a Classic app?

    I am trying to comile a program (OpenGL based) using MPW, and When the program runs, I am getting some very strange behavior and sometimes OS 9 freezes completely. I have compiled the same program in Windows and in Mac OS X, so I am forced to conclude that there is a "Mac Classic Specific"...
  7. K

    free classic compiler?

    MPW (Macintosh Programmer's workshop). It is available at the apple web site, but you may have to dig a while to find it. It is crude and rude, but it works. Konan
  8. K

    Few questions about Mac Classic

    I have made the program so it is very, very portable. With a few low level changes, it will work on any OS. It is currently running on Win32 and Mac OS X. It is still worth me doing an OS 9 version, especially since many people with slower iMacs will be able to run the program much faster (it...
  9. K

    Few questions about Mac Classic

    I completed the OS X version of my software (written in C++) and I want to have a Mac Classic version as well (Non-carbonized for technical reasons). for my main function int main(int argc, char *argv[]) 1. The first argument is argv[0] = "MyProgramFile", and it is not the full path...
  10. K

    How do I launch a URL using Cocoa (Objective C)

    Hey Joseph, It turns out that the openFile method just "stopped working" for me. The only thing I can think of that is different is that my network has changed (perhaps openFile doesn't like my firewall???). In any case, I am using the openURL method instead. Thanks for your help:D Konan
  11. K

    How do I launch a URL using Cocoa (Objective C)

    Well, if you have one of those nifty swiss army knives with a fork, spoon, knife (and maybe a rocket launcher), then that is more handy than a mere spoon ;) Konan
  12. K

    Protecting an APP file from being hacked...

    Hey Iconara, >Obfuscate< is exactly what i am looking for. I am not too worried about the NIB, since my program's interface is done in OpenGL. Only the basic things like the menu use a NIB. Now, can you point me into the right direction for Obfuscating my code (using Project Builder 2.0)...
  13. K

    How do I launch a URL using Cocoa (Objective C)

    Why is the URL method superior to the document method? Will they not both open the default browser and go to the sight? Is there a performance penality? Please let me know what the difference is so I can make the decision. The reason why I favor the document method, is that it is more...
  14. K

    Protecting an APP file from being hacked...

    What is the best way to protect an APP file (made with Project Builder) from being hacked (by and amateur)? I notice the the APP package has the NIB files and stuff openly accessible. Is there any programs that will encryption and stuff to help protect the APP file from being tampered with...
  15. K

    Cocoa and listing folder contents...

    Thanks dude. That did the trick :D Konan
  16. K

    Cocoa Questions Thread

    Thanks kainjow, that was really helpful. In the end, I decided to use the following [[NSWorkspace sharedWorkspace] openFile:@"http://www.mylink.com"]; since it was more generic and could be used for any kind of document. Thanks a lot for your help :D, Konan
  17. K

    Cocoa and listing folder contents...

    How do I retreive the contents of a folder using Cocoa? In windows, there is the findfirst() and function retreive the first file in the folder, then the rest can be retreived via the findnext() function. I was able to do this in OS X with the following bit system("ls Folder/ >...
  18. K

    Using the NSOpenPanel class

    Is there any way to make the file extensions (e.g. *.obj) case insensitive using NSOpenPanel so the following cases are all treated the same (without giving the NSOpenPanel every possible combination) *.obj *.OBJ *.Obj etc. Currently, if I use the obj extension, any file with the...
  19. K

    How do I launch a URL using Cocoa (Objective C)

    Thanks dude, Just in case anyone else wants to do this, the code is exactly as follows... [[NSWorkspace sharedWorkspace] openFile:@"http://www.mylink.com"]; This one line will open the web site using the default web browser. Konan
  20. K

    Cocoa Questions Thread

    I am new to Cocoa and I am porting a Windows program to the Mac. I have two questions; 1) How do I launch a URL from my program, so it opens in the defaut web browser (in windows it is like ShellExecute(...,"http://www.mylink.com",..."); 2) How do I make the file extensions in the...
Back
Top