Re: [Flashcoders] NativeProcess On Mac

2011-07-29 Thread Henrik Andersson
Glen Pike skriver: Hi, Unless you can use "/usr/sbin/diskutil" as your File name and pass the other "elements" of the command line as separate arguments, then you might have to be more creative with your approach. 1. Write a shell script that encapsulates this command and call that. 2. Capture

Re: [Flashcoders] NativeProcess On Mac

2011-07-29 Thread Karl DeSaulniers
inal Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Karl DeSaulniers Sent: Friday, July 29, 2011 5:20 PM To: Flash Coders List Subject: Re: [Flashcoders] NativeProcess On Mac Hi Sumeet, Found this. Take a

Re: [Flashcoders] NativeProcess On Mac

2011-07-29 Thread Glen Pike
in my first email. Thanks again. -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Karl DeSaulniers Sent: Friday, July 29, 2011 5:20 PM To: Flash Coders List Subject: Re: [Flashcoders] NativeProcess On Mac Hi Sumeet

RE: [Flashcoders] NativeProcess On Mac

2011-07-29 Thread Sumeet Kumar
ulniers Sent: Friday, July 29, 2011 5:20 PM To: Flash Coders List Subject: Re: [Flashcoders] NativeProcess On Mac Hi Sumeet, Found this. Take a look. http://www.adobe.com/devnet/air/flash/quickstart/articles/ interacting_with_native_process.html Looks like it talks about integrating with XCode, w

Re: [Flashcoders] NativeProcess On Mac

2011-07-29 Thread Karl DeSaulniers
Hi Sumeet, Found this. Take a look. http://www.adobe.com/devnet/air/flash/quickstart/articles/ interacting_with_native_process.html Looks like it talks about integrating with XCode, which is what I think you need for mac. But it has both mac and pc. Also, I googled "Flash NativeProcess API an

[Flashcoders] NativeProcess On Mac

2011-07-29 Thread Sumeet Kumar
Hi All, I am using Nativeprocess in adobe air for a MAC desktop application. I need to find the volume UUID for mac. I have found a shell script command which is like this "/usr/sbin/diskutil info / | /usr/bin/awk '$0 ~ /UUID/ { print $3 }'" This command works fine on Mac Terminal. But