Quote:
Originally posted by exrae:
<STRONG>Well I've decided to write my own, replacing the '+' characters with spaces is obviously simple, but I need to convert o…
Well, I actually got the time to sit down and sift through the CF docs a little, and the solution was quite clear and simple. Here it is...
<BLOCKQUOTE><font size="1"face=…
When Jobs (or pirates, my memory's fuzzy like that) announced that X.1 would support Apple Events over IP, my first response was simply "Oh." I recently installed XFree86, and one …
AppleEvents aren't really anything related to remote control/display of programs... You'd be better off using something like OSXvnc, if I understand what you're trying to do.
I will throw in my 2 cents here but I haven't actually tried doing this yet (I only have one OS X machine). If you wrote a "client" program and set it up to communicate all the ac…
Quote:
Originally posted by Angus_D:
<STRONG>AppleEvents aren't really anything related to remote control/display of programs...</STRONG>
Remote c…
X11 does a similar thing to VNC and Timbuktu but it only exports window graphics, not whole desktops. It is how most Unix networks run and it is VERY cost-effective. Essentially,…
Hi everyone,
I've been trying to compile some X11 apps to use on MacOS X with the new beta of XTools, but I'm having some troubles. I found the GNU Darwin site and the sources or …
Check out my post in the FAQ.
Yes, I have compiled glib and gtk+
There are patches at http://fink.sourceforge.net - wihch also contains lots of other packagesyou can compile.
GN…
Thanks, I had a look at the FAQ, and also at Fink.
It mentions this:
"If you get errors related to macros, use the -traditional-cpp option."
Where would I add that option? I did…
The C Preprocessor in OS X (made by Apple I think) goes a bit squiffy on some code. So you need to pass -traditional-cpp to cc when it compiles.
This is done by adding it to the C…
Tenon has pre-compiled ports of GTK+, Gnome-libs and others you can download from their page and in the Xterm just type "make install" and your off and running!
Thanks, both of you.
I've downloaded the precompiled files from Tenon, and installed Fink, too, which seems to be very helpful!
Fink is currently compiling imlib, hopefully I'll …
I'm thrilled that the XonX project is as far as it is, but I really need for it to be rootless (so that Aqua and X can run side-by-side) before I can use it for anything interestin…
Ok... I did:
/sw/bin/fink install gnome-libs , and it says it requires orbit and esound. However, when it was compiling esound it got this:
gcc -g -O2 -L/sw/lib -o .libs/esdsampl…
I've seen these functions in the files ProjectBuilder makes, argc and argv. I've been looking around, and I can't seem to find out how they work. My C++ assumes knowlege, and my C …
These are classical C/C++ programming.
int argc is the number of parameters passed to your executable
char *argv[] is a array for all parameters passed to your exec.
ie : toto -N…
Hi!
I am looking for some beginner cocoa programmers for my upcoming website who would be willing to share some source codes and small, easy to understand tutorials with other beg…
I've been a windows user for a quite a while and have recently bought a cube. I'm interested in doing some simple C programming for a computer science class, and need a way to comp…
You can either use cc (which is basically gcc 2.95.2 with some apple modifications), or Project Builder, which is a GUI IDE that calls cc under the hood. If you use PB, you'll want…