From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Memnon Anon Newsgroups: gmane.emacs.help Subject: Re: Easy for Some Date: Tue, 5 Jan 2010 15:40:11 +0000 (UTC) Message-ID: <87ljgctvai.fsf@mean.albasani.net> References: <27011067.post@talk.nabble.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1262706120 7675 80.91.229.12 (5 Jan 2010 15:42:00 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 5 Jan 2010 15:42:00 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Jan 05 16:41:53 2010 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from terminus-est.gnu.org ([66.92.78.210] helo=lists.gnu.org) by lo.gmane.org with esmtp (Exim 4.50) id 1NSBXc-0005Ko-M3 for geh-help-gnu-emacs@m.gmane.org; Tue, 05 Jan 2010 16:41:53 +0100 Original-Received: from localhost ([127.0.0.1]:54235 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NSBXd-0003qT-6L for geh-help-gnu-emacs@m.gmane.org; Tue, 05 Jan 2010 10:41:53 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NSBWY-0003OU-JR for help-gnu-emacs@gnu.org; Tue, 05 Jan 2010 10:40:46 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NSBWT-0003KZ-7j for help-gnu-emacs@gnu.org; Tue, 05 Jan 2010 10:40:45 -0500 Original-Received: from [199.232.76.173] (port=45763 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NSBWS-0003KD-R8 for help-gnu-emacs@gnu.org; Tue, 05 Jan 2010 10:40:40 -0500 Original-Received: from lo.gmane.org ([80.91.229.12]:41635) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1NSBWR-0002wm-GV for help-gnu-emacs@gnu.org; Tue, 05 Jan 2010 10:40:39 -0500 Original-Received: from list by lo.gmane.org with local (Exim 4.50) id 1NSBWL-0004jC-36 for help-gnu-emacs@gnu.org; Tue, 05 Jan 2010 16:40:33 +0100 Original-Received: from e178230251.adsl.alicedsl.de ([85.178.230.251]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 05 Jan 2010 16:40:33 +0100 Original-Received: from gegendosenfleisch by e178230251.adsl.alicedsl.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 05 Jan 2010 16:40:33 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 36 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: e178230251.adsl.alicedsl.de Cancel-Lock: sha1:lxVkkJoaQFr8KCwv4htNuLiFUE4= X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 3) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:71056 Archived-At: marioepsley writes: > I have a file like this, could have up to a 1000 keyframes.: [...] > Effects Sound Keys #1 Output 1 #22 > Frame > 0 0.17489 > 1 0.261281 > 2 0.361762 [...] > and i want to be left with just the raw values like this: > > 0.17489 > 0.261281 > 0.361762 [...] > I am a complete newbie, i downloaded aquamacs emacs yesterday, tried to use > replace string as a guess...?? no joy. Dont have anyone to ask, any help is > greatly appreciated. I am no programmer, too; I think I would go with emacs keyboard macros. You do not need any extra tools or special programing knowledger: Just the basic emacs commands. See this: ,----[ (info "(emacs)Keyboard Macros") ] | You define a keyboard macro by executing and recording the commands | which are its definition. Put differently, as you define a keyboard | macro, the definition is being executed for the first time. This way, | you can see the effects of your commands, so that you don't have to | figure them out in your head. When you close the definition, the | keyboard macro is defined and also has been, in effect, executed once. | You can then do the whole thing over again by invoking the macro. `---- hth