active questions tagged mac - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T23:27:18Zhttp://stackoverflow.com/feeds/tag/machttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1933107/how-do-you-listen-to-notifications-from-itunes-on-a-mac-using-the-nsdistributedn2How do you listen to notifications from iTunes on a Mac (Using the NSDistributedNotificationCenter)Issy2009-12-19T14:59:38Z2009-12-20T22:48:58Z
<p>Hello All,</p>
<p>Looking for help/tutorials/sample code of using python to listen to <a href="http://developer.apple.com/mac/library/DOCUMENTATION/Cocoa/Reference/Foundation/Classes/NSDistributedNotificationCenter%5FClass/Reference/Reference.html#//apple%5Fref/doc/uid/20000396-2831" rel="nofollow">distributed notifications</a> from applications on a mac. I know the <a href="http://pyobjc.sourceforge.net/" rel="nofollow">py-objc</a> lib is the bridge between python and mac/cocoa classes, and the Foundation library can be used to add observers, but looking for examples or tutorials on how to use this to monitor iTunes.</p>
http://stackoverflow.com/questions/1937232/linking-to-a-dynamic-library-on-a-mac-with-full-path0Linking to a dynamic library on a Mac with full pathDzhelil Rufat2009-12-20T22:05:07Z2009-12-20T22:33:35Z
<p>I am linking a (Python extension) library that embeds the Matlab engine with the following command (generated using cmake)</p>
<pre><code>c++ -mmacosx-version-min=10.6 -bundle -headerpad_max_install_names -o library.so library.o /Applications/MATLAB_R2009b.app/bin/maci64/libeng.dylib /Applications/MATLAB_R2009b.app/bin/maci64/libmx.dylib -framework Python
</code></pre>
<p>resulting in </p>
<pre><code>$ otool -L library.so
library.so:
@loader_path/libeng.dylib (compatibility version 0.0.0, current version 0.0.0)
@loader_path/libmx.dylib (compatibility version 0.0.0, current version 0.0.0)
/System/Library/Frameworks/Python.framework/Versions/2.6/Python (compatibility version 2.6.0, current version 2.6.1)
/opt/local/lib/gcc44/libstdc++.6.dylib (compatibility version 7.0.0, current version 7.13.0)
/opt/local/lib/gcc44/libgcc_s.1.dylib (compatibility version 1.0.0, current version 1.0.0)
/usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 125.0.0)
</code></pre>
<p>However, when I try to use the library, I get an error message:</p>
<pre><code>ImportError: dlopen(./library.so, 2): Library not loaded: @loader_path/libmex.dylib
Referenced from: ./library.so
Reason: image not found
</code></pre>
<p>I believe the problem stems from the fact that the linker includes the matlab dylib files in the form <code>@loader_path/libeng.dylib</code> rather than using the full path, even though I give the full path to <code>g++</code>. How can I force the linker to use the full path?</p>
<p>I know one solution is to use </p>
<pre><code>export DYLD_LIBRARY_PATH=/Applications/MATLAB_R2009b.app/bin/maci64:$DYLD_LIBRARY_PATH
</code></pre>
<p>which is where those library files reside, but I'd like to avoid that as it causes some other problems. </p>
http://stackoverflow.com/questions/1937282/is-there-an-free-alternative-to-mamp-pro0Is there an free alternative to MAMP PRO?openfrog2009-12-20T22:18:07Z2009-12-20T22:22:47Z
<p>NetBeans is recommending to use MAMP for Apache + MySQL + PHP on the Mac. There's a MAMP and a MAMP PRO. The MAMP is actually nothing more than a collection of open source libraries and stuff like PHP, MySQL, etc. in one big directory that goes to /Application/MAMP/. It comes with a little GUI to start/stop the server and to do some very basic settings. However, it is extremely limited. There's a MAMP PRO which does some more things but costs like $65. As I'm not making any money with my web dev I look for free solutions. </p>
<p>So is there something else that's open source / free, which does the same thing like MAMP Pro? starting / stopping PHP / Apache / MySQL on the Mac, configuring hosts, ports, etc.?</p>
http://stackoverflow.com/questions/1936792/where-can-i-download-xdebug-for-php-and-mac-os-x2Where can I download Xdebug for PHP and Mac OS X?openfrog2009-12-20T19:51:27Z2009-12-20T20:05:55Z
<p>I went to the xdebug site, but I can't find a mac download.
<a href="http://www.xdebug.org/download.php" rel="nofollow">http://www.xdebug.org/download.php</a></p>
<p>Did I miss something? NetBeans tells me to get xdebug for setting up an PHP development environment on the mac.</p>
http://stackoverflow.com/questions/1936712/do-i-really-need-the-java-development-kit-jdk-when-i-want-to-develop-php-with-n-1Do I really need the Java Development Kit (JDK) when I want to develop PHP with NetBeans on the Mac?openfrog2009-12-20T19:30:53Z2009-12-20T19:35:07Z
<p>The NetBeans people say that I need a <strong>Java Development Kit (JDK) 5 or 6</strong> when I want to develop PHP with NetBeans on the Mac...</p>
<p><a href="http://netbeans.org/kb/docs/php/configure-php-environment-mac-os.html" rel="nofollow">see: "To complete this tutorial, you need the following software and resources."</a></p>
<p>Now that sounds <em>very</em> strange to me. Must I <em>really</em> get that and spend some hours installing it? Why? What does Java have to do with PHP? Why's that a prerequisite?</p>
http://stackoverflow.com/questions/1935841/non-modal-windows-memory-management0Non-modal windows memory managementBenoit2009-12-20T13:31:36Z2009-12-20T16:27:41Z
<p>Hi,
I'm a newbie in Mac Dev. I come from iPhone dev.
My question relates to non-modal windows management. It's quite different from the iPhone and it's memory management model.</p>
<p>Say for example, i have a preference window, i can use something like that to show the window:</p>
<pre><code>-(IBAction)showPreferenceController:(id)sender {
if (!preferenceController) {
preferenceController = [[PreferenceController alloc]init];
}
[preferenceController showWindow:preferenceController];
}
</code></pre>
<p>But with this code, the window will stay in memory during app life because the window is never released.</p>
<p>To avoid that, I could also use the method described here :<br>
stackoverflow.com/questions/1391260/who-owns-an-nswindowcontroller-in-standard-practice<br>
Create in <code>PreferenceController</code> a <code>+ (id) sharedInstance</code> and release the window using <code>(void)windowWillClose:(NSNotification *)notification</code></p>
<p>I see many cocoa code samples where non-modal windows are never released.
For example here : <a href="http://www.mattballdesign.com/blog/2008/10/01/building-a-preferences-window/" rel="nofollow">http://www.mattballdesign.com/blog/2008/10/01/building-a-preferences-window/</a> : The preference panel and all the subviews are created in <code>awakeFromNib</code> and so will live in memory during all app life.</p>
<p>If you take for example Xcode app, there are a lot of non-modal windows :<br>
- Global Find window (CMD+MAJ+F)<br>
- App Info Panel<br>
- Help Window<br>
- ... </p>
<p>I suppose that these windows are released when they are closed to keep memory as low as possible.
I would like some advices to know the best way to manage non-modal windows in a cocoa app.
Keep in memory? Releasing asap?
I know a mac has a lot of memory compared to an iPhone but I also think it's not good to keep in memory objects we are not using. </p>
<p>Thanks.</p>
<p><strong>Edited with Rob post</strong> : </p>
<blockquote>
<p>I send -autorelease to the window and set my pointer to nil so I'll recreate the window later. This is similar to the technique you cite, though whether or not to use +sharedController for the Controller isn't related; you can do this whether you have a shared controller or not.</p>
</blockquote>
<p>I don't how to do that without a singleton (+sharedController).<br>
I explain what I mean with this example:<br>
In the app Controller :</p>
<pre><code>@interface AppController : NSObject <NSApplicationDelegate> {
</code></pre>
<p>Implementation :</p>
<pre><code>-(IBAction)showPreferenceController:(id)sender {
if (!preferenceController) {
preferenceController = [[PreferenceController alloc]init];
}
[preferenceController showWindow:preferenceController];
}
</code></pre>
<p>In the preferences controller :</p>
<pre><code>@interface PreferenceController : NSWindowController <NSWindowDelegate>
</code></pre>
<p>Implementation : </p>
<pre><code>- (void)windowWillClose:(NSNotification *)notification {
[self release];self=nil;
}
</code></pre>
<p>It will crash when i close and reopen after the window : preferenceController is released but not equal to nil. So I need to set preferenceController to nil when the window is closed.
There is no problem to do that with a singleton.<br>
Without singleton, I should set appController as the delegate of Preference Window to be able to set preferenceController to nil when the window is closed. But i don't like that way.</p>
http://stackoverflow.com/questions/1936250/netbeans-and-php-on-the-mac-how-to-set-it-up-1NetBeans and PHP on the Mac: How to set it up?openfrog2009-12-20T16:20:17Z2009-12-20T16:23:15Z
<p>I'm new to this and want to start coding PHP with NetBeans.</p>
<p>Is there a step-by-step instruction on how to set this up?</p>
http://stackoverflow.com/questions/1935607/snow-leopard-update-dec-09-did-anyone-else-lose-their-mysql-data0Snow Leopard update Dec 09. Did anyone else lose their MySQL data? [closed]cwjones2009-12-20T11:45:46Z2009-12-20T15:02:54Z
<p>Initially I had to re-install MySQL when I upgraded to Snow. I managed to get everything backed up to .csv file and was able to migrate to the new install. It worked fine!
Earlier this week Mac issued an update to Snow and it seems to have wiped out MySQL again. This time I was unable to run the back-up although all the folders and files are still in place, in the data bin directory.</p>
<p>I had this problem on an iMac and MacBook. </p>
<p>The iMac has all the important data on it (LAN Intranet Server) and I test everything through the MacBook 1st.</p>
<p>I had managed to get the MySQL re-installed and working again on the MacBook and was able to connect the old database so replicated the process on the iMac.</p>
<p>This was unsuccessful. The new install wiped out the old data and still doesn't work.</p>
<p>error includes:</p>
<p>ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)</p>
<p>Anyway, before I ran the new install on the iMac I managed to drag the data directory onto a USB flash drive as a precaution. I'm hoping once I get the database server running again I can reconnect this data.</p>
<p>Any help at all with any of this problem will be greatly appreciated. Typically this would have to happen the week before the Holiday season and the end of year reports are required by the 'Man with the Plan'.</p>
<p>If any more info is required, I will try to be as clear as I can.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/61747/installing-pdo-drivers-for-postgresql-on-mac-using-zend-for-eclipse4Installing PDO-drivers for PostgreSQL on Mac (using Zend for eclipse)Vargen2008-09-15T00:14:10Z2009-12-20T12:15:00Z
<p>How can I get PDO to work on my mac (os x 10.5)? I'm using the built in php and php in Zend/Eclipse. Can't seem to find useful drivers for it at all.</p>
http://stackoverflow.com/questions/1441892/oracle-sqlplus-problem-on-mac-osx-snow-leopard1Oracle Sqlplus Problem on Mac OSX Snow LeopardMike Hopper2009-09-17T23:41:05Z2009-12-20T12:13:26Z
<p>I just installed the Oracle Instant Client for Mac OSX with the SQLPlus extension and have the following problem. I can connect to a database instance and schema and I can do queries but when I try the "describe command" it just hangs. For example:</p>
<pre><code>SQL> SELECT COUNT(*) FROM APPROVABLETAB;
COUNT(*)
----------
8
SQL> desc APPROVABLETAB;
// hangs indefinitely
</code></pre>
<p>Anyone have any ideas?</p>
http://stackoverflow.com/questions/190662/whats-the-cheapest-mac-development-box-possible27What's the cheapest mac development box possible?Matthew Rathbone2008-10-10T09:48:22Z2009-12-20T00:33:57Z
<p>Simple question really, I would like to learn some cocoa, primarily for playing around with the Iphone SDK, but first i need a mac.</p>
<p>Macs are expensive, but I don't know at what point an old mac moves from a bargain to a doorstop.</p>
<ul>
<li><p>How cheap and old can I go to have an ok mac development machine?</p></li>
<li><p>Is there any other way to have a good dev machine for the platform without buying a mac and without doing illegal virtualization / dual booting of OSx86?</p></li>
<li><p>Is virtualizing a real purchased OSX legal? </p></li>
<li><p>What Virtual Machines will run it?</p></li>
</ul>
<p>Thanks in advance all.</p>
<p><strong>EDIT 2009-03-05</strong></p>
<p>Just wanted to say thanks for all who answered / commented on this, its been really useful and now there's a new Mac Mini I might have to splash out soon to get one!</p>
http://stackoverflow.com/questions/1933975/in-mono-how-do-i-get-the-path-to-the-documents-folder-on-a-mac-snow-leopard1In Mono, how do I get the path to the Documents folder on a Mac (Snow Leopard)?dommer2009-12-19T19:59:11Z2009-12-19T20:09:34Z
<p>I'm writing a Mono application and would like to find the full path of the Documents folder - e.g. /Users/johnsmith/Documents/. What's the best way to achieve this?</p>
http://stackoverflow.com/questions/1933667/accessing-main-program-global-variables-from-a-dlopened-dynamic-library-in-c-on0Accessing main program global variables from a dlopen()ed dynamic library in C on OS X Shahar Evron2009-12-19T17:58:25Z2009-12-19T19:49:25Z
<p>I am maintaining a <a href="http://code.google.com/p/glista" rel="nofollow">small application</a> that has some plugin-like functionality, which is implemented through runtime-loaded dynamic modules.</p>
<p>Specifically, since it's a Gtk+ app, I'm using gmodule, but the question applies to dlfcn.h / dlopen() based dynamic library loading just as well. </p>
<p>My main program has a single, global struct variable holding some global information. I want this information to be available to functions defined in the dynamically loaded plugins. </p>
<p>On Linux, I could just refer to this global variable directly - this works well, and I'm guessing that gcc or the linker take care of exporting the global variables from the main program to dynamic libraries. </p>
<p>Problem is, this doesn't work on Mac OS X. </p>
<p>Is there a way to do this on OS X?</p>
<p>If not, is there a more "best practice" way to expose global information to dynamically loaded libraries?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/458073/indirect-linking-trouble-on-osx0Indirect linking trouble on OSXcgTobi2009-01-19T15:55:54Z2009-12-19T17:00:03Z
<p>hi everyone. I have some trouble with indirect linking. Here is a small example that shows what's going wrong:</p>
<pre><code>$ make
g++ -fPIC -Wall -c -o main.o main.cpp
g++ -fPIC -Wall -c -o a.o a.cpp
g++ -fPIC -Wall -c -o b.o b.cpp
g++ -fPic -Wall -r -dynamiclib b.o -o libb.dylib
g++ -fPic -Wall -r -dynamiclib a.o -o liba.dylib -L. -lb
LD_LIBRARY_PATH=. g++ main.o -o runme -L. -la -O
/usr/libexec/gcc/powerpc-apple-darwin8/4.0.1/ld: Undefined symbols:
fooB()
collect2: ld returned 1 exit status
make: *** [runme] Error 1
</code></pre>
<p>Makefile </p>
<pre><code>all: runme
CXXFLAGS=-fPIC -Wall
runme: main.o liba.dylib libb.dylib
LD_LIBRARY_PATH=. g++ main.o -o runme -L. -la -O
libb.dylib: b.o
g++ -fPic -Wall -r -dynamiclib b.o -o libb.dylib
liba.dylib: a.o libb.dylib
g++ -fPic -Wall -r -dynamiclib a.o -o liba.dylib -L. -lb
clean:
rm -f *.o *.dylib runme
</code></pre>
<p>a.h</p>
<pre><code>#ifndef A_H_INCLUDED
#define A_H_INCLUDED
// liba depends on libb
#include "b.h"
// call through to fooB, implemented in the header.
inline int fooA()
{
return fooB();
}
// call through to barB, implemented in the library.
int barA();
#endif // A_H_INCLUDED
</code></pre>
<p>a.cpp</p>
<pre><code>#include "a.h"
int barA()
{
return barB();
}
</code></pre>
<p>b.h</p>
<pre><code>#ifndef B_H_INCLUDED
#define B_H_INCLUDED
int fooB();
int barB();
#endif // B_H_INCLUDED
</code></pre>
<p>b.cpp</p>
<pre><code>#include "b.h"
int fooB()
{
return 42;
}
int barB()
{
return 314;
}
</code></pre>
<p>main.cpp</p>
<pre><code>#include <iostream>
#include "a.h"
int main()
{
std::cout << barA() << "\n";
std::cout << fooA() << "\n";
return 0;
}
</code></pre>
http://stackoverflow.com/questions/1102311/how-can-i-switch-the-mac-version-monodevelop-from-german-to-english0How can I switch the Mac Version MonoDevelop from German to English? [closed]Lars Corneliussen2009-07-09T07:20:44Z2009-12-19T14:44:39Z
<p>I just installed MonoDevelop on my mac, and I like it. But I don't like the German translation and I can't find any place in the menus where I could change the interface language. </p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1928796/how-do-i-add-the-symfony-utility-to-my-path-variable0How do I add the symfony utility to my PATH variable?Julian Weimer2009-12-18T15:15:56Z2009-12-19T08:41:55Z
<p>I'm running the latest MAMP (i think so) on my Mac (10.5.8, PPC G4) and i added the following to my .profile - file in my home directory:</p>
<pre><code>export PATH=/Applications/MAMP/htdocs/lib/vendor/symfony/data/bin:$PATH
</code></pre>
<p>But my Terminal is somehow unable to find the command, and all i get is the following errors:</p>
<pre><code>: command not found
: command not found
: command not found
: command not found
</code></pre>
<p>Any suggestions? Thx in advance.</p>
http://stackoverflow.com/questions/1931492/is-it-possible-to-launch-an-external-image-editor-from-textmate0Is it possible to launch an external image editor from Textmate?adam.mokan2009-12-19T00:36:40Z2009-12-19T00:49:35Z
<p>Is it possible to launch an external image editor from the TextMate project drawer? I suppose the same concept would apply to launching any external editor from TextMate. Right now, if I right-click on the image file, I only have an option to open in Preview or Finder. </p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1636894/use-nsspeechrecognizer-or-alternative-with-audio-file-instead-of-microphone-input0Use NSSpeechRecognizer or alternative with audio file instead of microphone input?ck2009-10-28T12:17:23Z2009-12-18T23:11:55Z
<p>Is it possible to use the NSSpeechRecognizer with an pre-recorded audio file instead of direct microphone input?</p>
<p>Or is there any other speech-to-text framework for Objective-C/Cocoa available?</p>
<p><strong>Added</strong>:</p>
<p>Rather than using voice at the machine that is running the application external devices (e.g. iPhone) could be used for sending just an recorded audio stream to that desktop application. The desktop Cocoa app then would process and do whatever it's supposed to do using the assigned commands.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1930362/how-to-open-a-browser-from-terminal0How to open a browser from terminal [closed]Mark2009-12-18T19:56:58Z2009-12-18T20:07:06Z
<p>Hi All,</p>
<p>can anyone tell me how to open a browser from the terminal in mac</p>
<p>Thanks
Mark </p>
http://stackoverflow.com/questions/1896231/viewing-flash-applications-on-a-mac-stage-stagewidth-stage-stageheight-return-00Viewing Flash Applications on a Mac: stage.stageWidth/stage.stageHeight Return 0 in Firefox/IEJohann2009-12-13T11:31:19Z2009-12-18T17:14:04Z
<p>I am using SWFOBJECT to embed my flash content.</p>
<p>I have been worried about stage.stageWidth and stage.stageHeight returning 0 in Firefox/Internet Explorer; this problem is referred to in question #21 on the SWFOBJECT FAQ
(<a href="http://code.google.com/p/swfobject/wiki/faq" rel="nofollow">http://code.google.com/p/swfobject/wiki/faq</a>). </p>
<p>I have been told that this problem is particularly prevelant on Macs.</p>
<p>The SWFOBJECT FAQ (question 21) indirectly suggests that this problem does not occur with
static publishing. Is this correct? Is it still advisable to implement a solution
to this stageWidth/stageHeight problem, even if you are using static publishing?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1929180/python-config-ldflags-on-mac0python-config ldflags on macthrope2009-12-18T16:15:48Z2009-12-18T16:41:37Z
<p>I have a problem with <code>python-config --ldflags</code> on OS X 10.6.2.</p>
<p>Using my non-system python.org python install:</p>
<pre><code>robin-mbp:~ robince$ which python
/Library/Frameworks/Python.framework/Versions/2.5/bin/python
robin-mbp:~ robince$ python-config --ldflags
-L/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/config -ldl -lpython2.5
</code></pre>
<p>But if I build a c program embedding Python with the above LDFLAGS, it results in the system python being embedded. It seems -lpython2.5 is picking up the system python first, before the one in the -L path.</p>
<p>So far the only way I've got it to work is with</p>
<pre><code>LDFLAGS=-F/ -framework Python
</code></pre>
<p>but when it comes to distributing I'd really like to be able to use python-config. </p>
<p>What is going on with the library search path that stops it working as expected? According to the man page -L paths should be searched before the default path. </p>
<p>Is there any option along the lines of 'forget the default search path and search only paths specified with -L' that I could add to python-config output to get it to work?</p>
<p>Or is there any way to extract the working -framework flags from whichever Python is on the path (that would work for whatever the user is using, ie system, python.org, macports or own built)?</p>
http://stackoverflow.com/questions/1928617/svn-mac-stripping-files-of-svn-meta-data1SVN Mac - Stripping files of SVN meta data?Jasconius2009-12-18T14:44:30Z2009-12-18T14:53:58Z
<p>I downloaded some source files on a Mac that were previously part of some working copy on the authors computer, I need to use these files in another repository but the SVN client "Versions" for Mac is picking up on the data from this old repository. I can't find the ".SVN" folder anywhere... any idea on how to "cleanse" these files so I can commit them to my repository?</p>
http://stackoverflow.com/questions/443074/how-do-you-create-hybrid-xcode-projects-for-mac-iphone5How do you create hybrid XCode projects for Mac & iPhone?stigi2009-01-14T14:13:57Z2009-12-18T11:46:49Z
<p>Hello,
I'm working on a project which shall contain two targets. One for building a Framework to use in Mac development and another to create a static library to use in iPhone development.</p>
<p>In the common code it's no problem to #ifdef between the platforms, but I just can't get the targets and dependencies right.</p>
<p>The first question is, which base SDK to use?
For example if I use Mac 10.5 i can't include the UIKit framework (it is marked red and doesn't show the header files if i expand it). Even if the target that actually links against it builds for iPhone OS..</p>
<p>The other question is, how about the Foundation.framework, or stuff like Security.framework? How to deal with them, as I can only include one of the versions (Mac or iPhone SDK)...</p>
<p>Anyone has an advice for me?
I'd like to have a clean project structure and definitely the same codebase for both targets... Are configurations the way to go?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1507891/oracle-on-mac-os-x-snow-leopard0Oracle on Mac OS X Snow LeopardSteve2009-10-02T05:34:20Z2009-12-18T08:00:16Z
<p>Hi,
I am trying to install oracle on snow leopard using these guidelines.
<a href="http://blog.rayapps.com/2009/09/14/how-to-install-oracle-database-10g-on-mac-os-x-snow-leopard/" rel="nofollow">http://blog.rayapps.com/2009/09/14/how-to-install-oracle-database-10g-on-mac-os-x-snow-leopard/</a>
There is a step in the installation, where I have to change netca and dbca such that it runs in 32 bit mode. Can someone please tell me how to do it. I have pasted the exact step below</p>
<p>–Now you need to modify $ORACLE_HOME/jdk/bin/java script and change “…java -Xbootclasspath…” to “…java -d32 -Xbootclasspath…”--</p>
http://stackoverflow.com/questions/1767099/actionscript-2-filereference-problem-on-mac-os0ActionScript 2 FileReference problem on Mac OSzhiwww2009-11-19T22:40:12Z2009-12-18T04:22:02Z
<p>Hi There,</p>
<p>I'm working on an AS2 application. One of the functions is upload a file to server (PHP) and grab raw text (XML) from response by listening to OnUploadCompleteData event of a FileReference Object. But I found the event can be correctly triggered, but the parameter data(:String) is always empty. And this only happens on Mac OS (both Safari and Firefox), it works well on Windows.</p>
<p>How can I resolve this problem? Or I need to choose another solution...</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1822425/sending-mail-from-bash-shell-script1Sending mail from bash shell script.ridogi2009-11-30T21:12:42Z2009-12-17T20:49:20Z
<p>I am writing a bash shell script for Mac that sends email notification by opening an automator application that sends email out with the default mail account in Mail.app. The automator application also attaches a text file that the script has written to. The problems with this solution are</p>
<ol>
<li>It is visible in the GUI when sending</li>
<li>It steals focus if Mail is not the current application</li>
<li>It is dependent on Mail.app's account setup being valid in the future</li>
</ol>
<p>I figure to get around those shortcomings I should send the mail directly from the script by entering smtp settings, address to send to, etc directly in the script. The catch is I would like to deploy this script on multiple computers (10.5 and 10.6) without enabling postfix on the computer. Is it possible to do this in the script so it will run on a base OS install of 10.5. and 10.6?</p>
http://stackoverflow.com/questions/1923499/binary-java-7-for-mac1Binary Java 7 for Macnotnoop2009-12-17T17:55:35Z2009-12-17T18:50:42Z
<p>Is there any binary release of Java 7 (using the Mac/BSD-port project) anywhere? Some blogs (e.g. <a href="http://infernus.org/2009/02/building-java-7-on-mac-os-x/" rel="nofollow">Building Java 7 on Mac OS X</a>) have a detailed instructions to build the jdk from source, but I was hoping that someone have a binary of it available for download.</p>
<p>The problem with the instructions is that it's quite annoying to get all the version numbers correct, and slight variations might lead to wasted hours of work.</p>
http://stackoverflow.com/questions/1920839/how-easy-or-difficult-is-it-to-migrate-to-a-development-environment-on-mac-from1How easy (or difficult) is it to migrate to a development environment on Mac from UbuntubecomingGuru2009-12-17T10:38:08Z2009-12-17T12:51:50Z
<p>I am used to Ubuntu, I like it, I know my way around it.</p>
<p>I am looking forward to <a href="http://superuser.com/questions/84495/laptop-with-good-hardware-similar-to-a-macbook-pro">upgrade my work laptop</a>.</p>
<p>I find the awesome hardware that a Macbook Pro is made of, a turn-on.</p>
<p>Now, having never used a mac before, I'd like to know how easy it is to move my development environment to a mac from being on Ubuntu.</p>
<p>My work is primarily web application development using the django framework.</p>
<p>I love the apt-get install and the package managers and such stuff that Ubuntu provides. Are there equivalents on a mac?</p>
<p>What are the other things I need to know to move my development environment to a Mac?</p>
http://stackoverflow.com/questions/1918127/java3d-osx-netbeans1Java3d + osx + netbeansachar2009-12-16T22:06:45Z2009-12-17T07:40:08Z
<p>Hi,</p>
<p>I have a java3d project that was developed on solaris that I am trying to move onto my macbook for a variety of reasons (1 being that our solaris machines are painfully slow).</p>
<p>Basically what I want is to use osx + netbeans for this project but it seems to reference java3d methods that are not included in the outdated version of java3d in the mac 1.6 JDK. My first attempt at resolving this issue was to include the java3d 1.5.2 libraries as external jars for the project but it seems netbeans is still trying to reference the old libraries in the 1.6 JDK instead of the 1.5.2 j3d libraries.</p>
<p>Also when I explore the 1.5.2 jars within the netbeans file explorer the methods (that are not included in the 1.6 jdk) do not show up under their respective classes. However, when I do the same thing on solaris the methods do show up. So basically, I know that the jars I am trying to include do in fact contain the methods/classes I need. netbeans just won't find them</p>
<p>If anything is unclear please ask me to clarify it. I got confused just writing this up.</p>
<p>Thanks in advance for the help!</p>
http://stackoverflow.com/questions/425185/is-realbasic-worth-508Is REALBasic worth $50?MDRoz2009-01-08T17:38:04Z2009-12-17T04:05:40Z
<p>As a Windows and web developer of 12+ years and an "at home" Mac user, I'm wondering if it's worth it to get the REALBasic for personal use. I've often wanted to dabble in development for OS X; I know VB, Java, C#, but not C, C++, or Objective-C. I don't have a specific project in mind and haven't been motivated to learn Objective-C, so I'm wondering if RB would be easy and good enough to get me started with some small apps.</p>
<p>Here are my concerns/questions:</p>
<ul>
<li><p>I haven't heard much about REALBasic in the "real world" - there is only one question on stackoverflow tagged with "realbasic" - so, is it a viable development environment, or is it just a "toy" language/IDE?</p></li>
<li><p>Are there any quirks or gotchas with apps written/compiled with RB?</p></li>
<li><p>Are there any commercial apps out there that are written in RB?</p></li>
</ul>