From owner-freebsd-bugs@FreeBSD.ORG Sun Feb 10 21:58:45 2008 Return-Path: Delivered-To: bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6C8B316A418 for ; Sun, 10 Feb 2008 21:58:45 +0000 (UTC) (envelope-from bugs@pu.net) Received: from mta10.adelphia.net (mta10.adelphia.net [68.168.78.202]) by mx1.freebsd.org (Postfix) with ESMTP id 3B03213C46B for ; Sun, 10 Feb 2008 21:58:44 +0000 (UTC) (envelope-from bugs@pu.net) Received: from pu.net ([66.25.28.65]) by mta13.adelphia.net (InterMail vM.6.01.05.02 201-2131-123-102-20050715) with ESMTP id <20080210214254.CESJ15797.mta13.adelphia.net@pu.net> for ; Sun, 10 Feb 2008 16:42:54 -0500 Received: (from bugs@localhost) by pu.net (8.13.8/8.11.6) id m1ALh0dD041336; Sun, 10 Feb 2008 15:43:00 -0600 (CST) (envelope-from bugs) From: Mark Hittinger Message-Id: <200802102143.m1ALh0dD041336@pu.net> To: bugs@freebsd.org (Mark Hittinger) Date: Sun, 10 Feb 2008 15:42:59 -0600 (CST) In-Reply-To: <200802091557.m19Fvbk9032062@pu.net> from "Mark Hittinger" at Feb 09, 2008 09:57:37 AM X-Mailer: ELM [version 2.5 PL2] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: Mark Hittinger Subject: recording with timestamp X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Feb 2008 21:58:45 -0000 Ok here is the function that we would try to tamper with first: function setupRecorderFile(%file) { if (%file == "") $recorderFileName=File::getNext("recordings\\recording.rec"); else $recorderFileName = File::getNext(%file); } Make a file with this code in it instead and exec it after you get going: Unfortunately it will ignore the name you put in on your menu. What this will do is make recordings\recording15:37.rec recordings\recording20:28.rec etc see if this actually works. function setupRecorderFile(%file) { %name = "recordings\\recording" ; %time = string::getsubstr(getword(timestamp(),1),0,5) ; $recorderFileName = %name @ %time @".rec" ; } Later Mark Hittinger bugs@pu.net