My first introduction with Mathematica was about eleven years ago. It was still version 4.2 which had a nice welcome sound whenever you opened a new notebook. However this welcome sound is absent in all newer versions. So, I was wondering if there is a way to add somehow this welcome sound (or any other music theme) in newer versions like 9 or 10. Any ideas?
Many thanks in advance!
Play. Maybe I remember wrong. – Szabolcs Oct 26 '15 at 18:51FileNameJoin[{$InstallationDirectory, "SystemFiles", "FrontEnd", "SystemResources", "Windows", "Startup.wav"}]. Note this was only ever available on Windows. – ilian Oct 26 '15 at 19:02init.mfile something liketask := EmitSound[Import["ExampleData/rule30.wav"]]; RunScheduledTask[task, {0.25}]– ilian Oct 26 '15 at 19:31init.mfile? BTW I have v9 and v10. – Vaggelis_Z Oct 27 '15 at 12:54init.mfiles in many sub-folders. Which of them should I edit? – Vaggelis_Z Oct 27 '15 at 13:05C:\Documents and Settings\ZorinCorp\Application Data\Mathematica? If so, there are severalinit.mfiles in the sub-folders. – Vaggelis_Z Oct 27 '15 at 13:24C:\Users\loginname\AppData, orApplication Data, or whatever that folder's called these days. – J. M.'s missing motivation Oct 27 '15 at 13:27init.mwithin a "Kernel" folder. – J. M.'s missing motivation Oct 27 '15 at 13:32init.mfile in the "Kernel" folder contains only one line `(** User Mathematica initialization file **) which is commented. – Vaggelis_Z Oct 27 '15 at 13:35RunScheduledTask[task, {0.25}]the 0.25 defines the time delay. However if I set the value lower than 0.20 then when you open the program the sound is not played, while a second notebook opens. – Vaggelis_Z Oct 27 '15 at 13:59