Re: [R] Make R 'Beep'

2011-03-29 Thread Alaios
Tried it ! Worked ! Thanks a lot --- On Tue, 3/8/11, Jim Lemon j...@bitwrit.com.au wrote: From: Jim Lemon j...@bitwrit.com.au Subject: Re: [R] Make R 'Beep' To: Alaios ala...@yahoo.com Cc: R-help@r-project.org Date: Tuesday, March 8, 2011, 10:14 AM On 03/08/2011 09:01 PM, Alaios wrote

[R] Make R 'Beep'

2011-03-08 Thread Alaios
Dear all, I would like to ask you if R can produce any kind of sound. It would be useful when code execution stops R to notify me by playing some sound. Is that possible in R? I would like to thank you in advance for your help Best Regards Alex __

Re: [R] Make R 'Beep'

2011-03-08 Thread Barry Rowlingson
On Tue, Mar 8, 2011 at 10:01 AM, Alaios ala...@yahoo.com wrote: Dear all, I would like to ask you if R can produce any kind of sound. It would be useful when code execution stops R to notify me by playing some sound. Is that possible in R? If you search for 'audio' or 'sound' on CRAN's

Re: [R] Make R 'Beep'

2011-03-08 Thread Eik Vettorazzi
Hi Alex, how about alarm() hth. Am 08.03.2011 11:01, schrieb Alaios: Dear all, I would like to ask you if R can produce any kind of sound. It would be useful when code execution stops R to notify me by playing some sound. Is that possible in R? I would like to thank you in advance

Re: [R] Make R 'Beep'

2011-03-08 Thread Jim Lemon
On 03/08/2011 09:01 PM, Alaios wrote: Dear all, I would like to ask you if R can produce any kind of sound. It would be useful when code execution stops R to notify me by playing some sound. Is that possible in R? Hi Alex, You can add a line at the end of your script like this: system('sap

Re: [R] Make R 'Beep'

2011-03-08 Thread Luke Miller
Including the \a escape sequence inside a cat() call should make a simple beep. cat(All done! \a \n) On Tue, Mar 8, 2011 at 5:01 AM, Alaios ala...@yahoo.com wrote: Dear all, I would like to ask you if R can produce any kind of sound. It would be useful when code execution stops R to notify