Re: Running SuperColliderAU
| Newsgroups | gmane.comp.audio.supercollider.user |
|---|---|
| Message-ID | <CAEBNZeDGY8RXsFDgSpcczDv91KvVbOEs+zqh06P-vrYB4u4DFA@mail.gmail.com> |
>
> I don't think it's a quark/extension issue, because it's a fresh build and
> I haven't even installed any quarks yet.
>
Are you sure there's nothing in ~/Application
Support/SuperCollider/Extensions?
What seems to be happening is that a new instance of ServerOptions is not
created in your case.
Can you try
u = Server.remote(\scau, NetAddr("127.0.0.1", 9989), ServerOptions());
?
When I run
u = Server.remote(\scau, NetAddr("127.0.0.1", 9989));
and then
u.options;
I get
-> a ServerOptions
Would that for some reason return nil on your system? Or, if the method
fails in the first place, maybe the server object itself is not created at
all?
m
>