[Flashcoders] Rejoindre mon réseau sur LinkedIn

2011-07-29 Thread Marcelo Mandaji via LinkedIn
LinkedIn Marcelo Mandaji souhaite se connecter à vous sur LinkedIn : -- Je vous invite à faire partie de mon réseau professionnel en ligne sur le site LinkedIn. Accepter l'invitation de Marcelo Mandaji http://www.linkedin.com/e/7jv2

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
Maybe this will put you on a good path. http://forums.adobe.com/message/3158169 Or this.. http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/ flash/filesystem/File.html#openWithDefaultApplication%28%29 or this... http://www.flexpasta.com/index.php/2009/12/01/command-line-exe

Re: [Flashcoders] NativeProcess On Mac

2011-07-29 Thread Glen Pike
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.Capt

RE: [Flashcoders] NativeProcess On Mac

2011-07-29 Thread Sumeet Kumar
Thanks Karl. But I want to run shell script from adobe air and also I am able to run simple shell script commands from the native process API. The problem in the this command mentioned below is "/usr/sbin/diskutil info / | /usr/bin/awk '$0 ~ /UUID/ { print $3 }'" That it has two commands , the

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