From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Sven Bretfeld" Subject: Re: MobileOrg and Voice Capturing (Android) Date: 2 Dec 2010 02:25:28 +0100 Message-ID: <87d3plotiv.fsf@gmx.ch> References: <87fwul463g.fsf@gmx.ch> <4CF46B08.2020200@comcast.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from [140.186.70.92] (port=46582 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PNxvP-0000WP-Jm for emacs-orgmode@gnu.org; Wed, 01 Dec 2010 20:25:32 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PNxvO-0005Fd-E6 for emacs-orgmode@gnu.org; Wed, 01 Dec 2010 20:25:31 -0500 Received: from mx5.rz.ruhr-uni-bochum.de ([134.147.64.33]:50021) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1PNxvO-0005F4-0l for emacs-orgmode@gnu.org; Wed, 01 Dec 2010 20:25:30 -0500 In-Reply-To: <4CF46B08.2020200@comcast.net> (Mark Elston's message of "Mon, 29 Nov 2010 19:10:00 -0800") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Mark Elston Cc: emacs-orgmode@gnu.org Hi Mark Mark Elston writes: > Have you looked at sl4a (formerly ase)? With it you can > start Intents and perform clipboard operations plus file > manipulations using a standard scripting language like > perl, python, or ruby (among others). This might be > very useful. That's really useful. I have created a simple python script to call voice input: ,----SpeechToClip.py | | import android | droid = android.Android() | droid.setClipboard(droid.recognizeSpeech()[1]) | `---- Now, I couldn't figure out how to extend the script to call MobileOrg's Capture activity. Is that possible? Maybe even with an automatic insertion of the clipboard content? Thanks for help Sven