[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [sc-users] Using Emacs



On Fri, May 12, 2006 at 09:27:12PM -0500, Patrick Dohman wrote:
> If I add the lines
> 
> s = Server.local;
> SynthDef("mysynth", { Out.ar(0, PinkNoise.ar(0.25)) }).play(s); s.freeAll;
> 
> to the SuperCollider Workspace what keystrokes will create the server 
> and generate the noise?

the easiest way is to enable transient-mark-mode:

M-x transient-mark-mode RET

and then execute each line one by one:

C-c C-c

the cursor will advance to the next line. this and other
ways of executing code are all described in the tutorial.

<sk>