OS X is the desktop operating system from Apple Inc. It was the successor to Mac OS 9 and here the 'X' means 10. OS X is based upon the NeXTSTEP/OPENSTEP OSes developed in the 1980s and 1990s by NeXT Inc., which Apple purchased in 1996.

learn more… | top users | synonyms (4)

0
votes
1answer
39 views

j2objc as subproject in XCode

I have a problem to link the j2objc library as a subproject. It always ends up with "missing libjre_emul.a" error. Steps I have done: 1) Create empty iOS project 2) Include j2objc library by ...
-1
votes
0answers
26 views

Use chrome or firefox cookie jar in osx application

I have written an os x app, but I have a problem. My program logins on the site each time it downloads a file. It use safari cookie jar, when logins, so safari is logined on this site after my program ...
0
votes
2answers
17 views

Curl not working on mac?

I am trying to install a file using curl on my mac through a shell script. I am running 10.8. here is my code: #!/usr/bin/env sh curl -s https://website.com -o /usr/local/bin/folder echo "success" ...
1
vote
2answers
87 views

How do I get the partition offset in OS X with C/C++?

I want to create my own volume id using the drive serial + partition offset + partition size, but I need to know how to get the partition information on OS X. I have (unsucceedingly) tried the ...
0
votes
0answers
24 views

Disable NSSavePanel “Save As:” text input field

Stuck at this for some time now. Does anyone know how to disable text input field on a NSSavePanel? This is how I am using it: NSSavePanel *panel = [NSSavePanel savePanel]; [panel ...
0
votes
1answer
34 views

ClassNotFound exception on missing built in java api

i have a GUI software that also uses the built in java apple API, the problem is that i want it to run both on windows and OSX, but on the function where i use it, like this: import ...
0
votes
0answers
38 views

Python 3to2 Tool - Requires At Least

So, I'm using 3to2 to port my Python 3.3 code back to version 2.x. I, believe, I correctly installed 3to2 by downloading the .tar.gz, cd to the file and running python3.3 setup.py build and then ...
0
votes
1answer
17 views

sem_getvalue() dysfunctionality in Mac OS X - C++

I'm trying to implement synchronized use of a shared memory for bunch of threads in Mac OS X by semaphores. (I just overlook the fact that Mac users have got lots of issues with initializing a ...
-1
votes
0answers
18 views

Windows 8 activation issues in VMWare Fusion [closed]

I recently purchased a boxed copy of Windows 8 Professional (full install, not upgrade). I then installed it in VMWare Fusion running on my Mac. The installation was successful, and I activated ...
0
votes
1answer
23 views

My Mac app is crashing on OS X 10.7 (from tester reports). How can I test on 10.7 when my dev machines are 10.8?

I have a Mac app that I built on the latest Xcode on an OS X 10.8 machine. Some of our beta testers are getting crashes on 10.7. Here in the office we don't have any machines with 10.7 on them. On ...
0
votes
1answer
28 views

Detect Mac OS version with PHP

I have created a script to detect OS version of windows with the help of the internet, but Now I am stuck at detecting Mac OS versions. I have no Mac OS to test the code and to find out what to use ...
-1
votes
1answer
13 views

Mac OS-X disk file format [closed]

I need to format an external hard disk on a MacBook Pro (USB connection). In the disk utility, Erase tab, I can only choose between these formats: MacOS Extended (Journaled) MacOS Extended ...
0
votes
2answers
18 views

node.js require cannot find custom module

Here is the project structure: / app.js package.json /node_modules /app config.json /frontend assets and html tpls /modules couch.js raeume.js users.js I ...
0
votes
0answers
19 views

What is the safe way to remove System Library Framework [migrated]

I'm new to OS X, and I need to get rid of one of the libraries under /System/Library/Frameworks. I know I cannot just remove the directory, because there are symbolic links to its binaries from ...
0
votes
1answer
34 views

Python: How can I test my package if it runs on Linux, Mac and Windows

I need to test my Python package if it works properly on different systems. I found Tox for different Python versions, but what about different operating systems like Windows, Linux and Mac. Can you ...
0
votes
0answers
12 views

How to use CEGUI with Ogre in xcode

I have build Ogre and CEGUI successfully,but I don't know how to use cegui with ogre in Xcode. I am stuck in configuring environment in Xcode and I googled but find no solution... Is there specific ...
0
votes
1answer
15 views

apple script create new rule for mail, to activate apple script

Okay so I want to create a apple script that creates a new rule in the mac mail app where if I write a new email and the content of the mail is "Start applescript", I want a apple script to start. ...
1
vote
2answers
42 views

Perform commands in Mac application sandbox?

I need my application to perform a command while in the Sandbox. This is the code I have so far: // Set up the task NSTask *task = [[NSTask alloc] init]; [task setLaunchPath:@"/bin/bash"]; NSArray ...
0
votes
0answers
29 views

can't update image for menubar icon in xcode

well, i have an app showing an icon in the menubar ; when the app performs a specific task, this icon in the menubar changes to an alternate icon, then, when the task is finished, the icon goes back ...
0
votes
0answers
31 views

Does this Terminal output indicate a that a keylogger has been installed on this Mac? [closed]

A friend is concerned that a keylogger has been installed on their machine, a Mac running MacOS 10.7. I have the following Terminal output. Do any of you spot any indication of keylogging apps ...
2
votes
2answers
52 views

Android studio can't connect through ADB on OSX

I've been working a bit with Android Studio on OSX 10.7.5 and it looks very promising. I've run into a problem when trying to launch an application on my device however. When clicking the run button, ...
0
votes
0answers
31 views

I found waring of this type. Instance method '-tableViewNavigateBackward:' not found (return type defaults to 'id')?

I am new in mac development. I found this warning. I declare @interface in .m file like @interface NSObject (CKBrowserTableViewDelegateExtensions) - (void)tableViewNavigateBackward:(NSTableView ...
1
vote
0answers
11 views

xcode 4.6.2 alert “Could not launch “TrackMix” Connection refused”when run cocoa aplication

When I try to run cocoa sample application "TrackMix" in xcode 4.6.2(docs), it throws the alert: Could not launch “TrackMix” Connection refused How could I resolve it.
0
votes
0answers
13 views

Mac iconset: 64px Dock icon is blurry

I have some difficulties to create a good looking icon for my Mac app. The size of the icon in the Dock is 64px. However this size is not included in the apps icon set. According to the Apple ...
0
votes
2answers
44 views

Mac OS X - get end of line in file

I try to open and read a file on Mac OS X: FILE * pFile = fopen (path_.c_str() , "r"); if (pFile == NULL) { perror ("Error opening file"); } else { char line [buffer_size]={0}; size_t ...
0
votes
1answer
19 views

coffeescript can't find localStorage

I'm trying to teach myself coffeescript, but is falling short when trying to use localStorage. $ coffee detail_view.coffee ReferenceError: localStorage is not defined at isLoggedIn ...
0
votes
1answer
30 views

Xcode suddenly corrupted my xib file

Last thing I did with it was adding a checkbox and creating an outlet using assistant view. Since then Xcode doesn't compile my project, gives me this error and I don't know what to do with it...
3
votes
0answers
106 views

HsOpenSSL segfaults on OS X

I'm trying to give HsOpenSSL a whirl on Mac OS X, and it's blowing up in my face. The latest Hackage version (HsOpenSSL-0.10.3.3) builds and imports, but doing anything with it kills my GHCi (both ...
0
votes
0answers
35 views

Nokogiri on OS X 10.8

I know there's a ton of questions about this here on SO, but I really can't manage to install Nokogiri on my OS X 10.8.3 system. I did the rituals: brew install libxml2 libiconv libxslt brew link ...
0
votes
1answer
30 views

Retrieve Specific Object from Core Data

I'm new to Core Data and wondering if it is possible to get an object based on it's attributes, more specifically, an uniqueID I assigned to it. I'm trying to do this because I'm interfacing with a ...
-1
votes
2answers
12 views

What is the growlnotify -c option?

If growlnotify -h: Usage: growlnotify [-hsvuwc] [-i ext] [-I filepath] [--image filepath] [-a appname] [-p priority] [-H host] [-P password] [-n name] [-A ...
1
vote
1answer
54 views

Copy lines to os x clipboard from vim on remote console

I'm using heroku, and I've logged gotten access to bash using heroku run bash. I found out it was possible to install vim on heroku with this shell script: #!/usr/bin/env bash curl ...
-1
votes
0answers
19 views

Trying to install wxpython on Mac OSX

I am trying to install wxpython onto my Mac OSX 10.8.3. I download the disk images from their downloads page and mount it. When I try to install the package I get an error that saying that the package ...
2
votes
1answer
86 views

Issue with the new iTunes 11.0.3 and ScriptingBridge (specifically the 'playerPosition')

Two or three days ago Apple introduced a new updated for iTunes: a new miniplayer, a new player time bar, etc... And I thought: "sweet!". But I found a new issue with it, and here's my problem: A long ...
0
votes
1answer
40 views

How do I create an instance of a designed object in Objective-C?

I'm writing an application that will require multiple windows. I've designed how I want my window to look in Interface Builder and when I start my application it all looks as it should. I've got a ...
0
votes
0answers
26 views

issue with install php54 on mac os x

When I run brew install php54 command in terminal brew install php54 ==> Downloading http://www.php.net/get/php-5.4.15.tar.bz2/from/this/mirror Already downloaded: ...
0
votes
1answer
15 views

How to specify the folder in which the applications should get installed on Mac?

I find that when I install applications(.dmg files), they all are installed into the folder /Volumes.And some days ago, they were installed into the folder /Applications. I don't know my macbook had ...
0
votes
0answers
35 views

CFNetwork - Multiple Connections, Same Server?

I'm trying to create multiple connections to the same server (e.g. https://www.myserver.com/) using the CFNetwork framework. Everything works as expected when I try to make a single connection. As ...
0
votes
1answer
19 views

Global Hotkeys UI-control for program settings

In my first MacOS desktop program I need to be able to put my own global hotkeys for certain actions. In many other programs I saw a special UI-control for these purposes, like that: I also want ...
-2
votes
0answers
27 views

Mac JDK 7u21 isn't working

I downloaded Max JDK 7u21. Expecting to run with no problems, I open it, and it says: "The Following Disk Images could not be opened:Jdk-7u21-macosx-x64.dmg, Reason: Not recongnized"... I thought it ...
-2
votes
1answer
20 views

Adding new app in iTunes connect

When I try to add new app in iTunes Connect I get the following message "You have no eligible Bundle IDs for Mac OS X apps. Register one here = link to the Note: I have all 3 certificates: ...
1
vote
3answers
98 views

Python is passing 32bit pointer address to C functions

I would like to call my C functions within a shared library from Python scripts. Problem arrises when passing pointers, the 64bit addresses seem to be truncated to 32bit addresses within the called ...
0
votes
0answers
13 views

submit form to iframe bug with MacOS

I have a form that needs to be submit into an iframe. It works perfectly in Windows and in some older version of Mac OS. But it doesn't works with the newer version. I have tested it with Mac OS X ...
-1
votes
1answer
48 views

brew reinstall autoconf returns an Error [closed]

after sudo brew cleanup Password: Removing: /Library/Caches/Homebrew/automake-1.13.1.tar.gz… Removing: /Library/Caches/Homebrew/libxml2-2.9.0.tar.gz… I try to brew reinstall autoconf ...
0
votes
0answers
23 views

Sending audio to multiple airplay speakers from terminal

I want to be able to select all airplay outputs for audio, and send all system audio through all of the airplay speakers, like how iTunes can send to multiple speakers. I know there are GUI utilities ...
1
vote
1answer
39 views

How to find monitor count in mac os by Cocoa?

I want to find count of monitor in mac OS by Cocoa.I can not use carbon.This code written in carbon but i want to do it in Cocoa framework. CGDisplayCount dspCount; CGError err ; err = ...
0
votes
0answers
20 views

Qt5 OS X menubar empty menu-item not hidden

I'm using Qt5 on OS X 10.8 and I'm creating an application with a menu bar in Qt Creator. Placing items like Quit or Preferences in the application menu works by specifying the menuRole accordingly. ...
-1
votes
0answers
11 views

Apache VirtualDocumentRoot & dnsmasq Troubles [closed]

I am attempting to get dynamic local Apache vhosts on OSX using dnsmasq and Apache's VirtualDocumentRoot. I'm pretty much going by this: http://akrabat.com/computing/automatic-apache-vhosts/ I think ...
0
votes
0answers
14 views

How to use compositing filters with CALayer?

I want to draw a layer using a multiply filter, and got this code from other similar questions: CALayer *layer = [[CALayer alloc] init]; layer.frame = CGRectMake(50, 50, 200, 80); ...
0
votes
1answer
21 views

Error message: -bash: /etc/profile.d/rvm.sh: No such file or directory

After installing Ruby successfully on my mac, every time I start the terminal, I get this message: Last login: Sun May 19 00:47:06 on ttys000 -bash: /etc/profile.d/rvm.sh: No such file or directory ...

1 2 3 4 5 625