David Thall | 1 Jul 2004 06:03
Picon

using SCCompositeView's when resizing sliders

Hi,
	I'd like to have sliders placed horizontally to one another (i.e., 
left to right), and be able to resize both without overlapping the 
views.  I thought this might be possible with SCCompositeView, but it 
doesn't seem to work.  Has anyone been able to successfully do this.

Thanks...
-David
David Thall | 1 Jul 2004 06:04
Picon

Using modifier keys with SCButton views

Is it possible to pass in the shift, ctrl, option, or command keys to a 
SCButton action function for modification?  Basically, I have  an array 
of 2-state buttons, and want the state to remain the same unless the 
user holds down a modifier key when they click the button.

David
James McCartney | 1 Jul 2004 16:24
Picon

Re: proposal: small change to event-play


The only reason I hesitate on this is that at some point we may find a 
real use for this argument and if we have already used it to pass the 
event, then that chance is blown.

On Jun 30, 2004, at 1:11 PM, James McCartney wrote:

>
> On Jun 30, 2004, at 7:24 AM, James Harkins wrote:
>
>> play: { |event|
>> var newStreamPlayer;
>> ...... snip ......
>> newStreamPlayer =
>> ~wrapPattern.value(~child.asPattern(event)).asEventStreamPlayer(...);
>> ...... snip ......
>> }
>>
>> I suppose, when I release this code, I could instruct
>> users to provide currentEnvironment as the argument to
>> asPattern. I'm not too fond of that, though.
>>
>
> Just use currentEnvironment.
> This seems like just trying to save typing.
>
> -- 
> --- james mccartney   james@...   
> <http://www.audiosynth.com>
> SuperCollider - a real time audio synthesis programming language
(Continue reading)

James McCartney | 1 Jul 2004 16:23
Picon

Re: "/n_before" node order


On Jun 30, 2004, at 2:32 PM, Julian Rohrhuber wrote:

> I see. does node zero have a secret after? it is not visible in 
> server.queryAllNodes
>

The top node is a node like any other, you can even move it.. BUT you 
can cause the server to crash if you try. It is too expensive to try to 
catch all the illegal things you could do to the tree, such as creating 
loops or groups that contain themselves, so I don't try to catch any of 
them.

--

-- 
--- james mccartney   james@...   <http://www.audiosynth.com>
SuperCollider - a real time audio synthesis programming language
stefan kersten | 1 Jul 2004 23:43
Picon

[OT] [ANN] prutal druth berlin


    prutal druth
    stammtisch strikes again

    07/07/04 20:00
    schloss falckenstein
    falckensteinstrasse 29
    10997 berlin

    bring laptops and good stimmung
    sorry for cross-posting, reply-to set
Joshua Parmenter | 2 Jul 2004 01:11

SCClassLibrary

Hi everyone,

Sorry to bug you all with this.

I am going to be a teaching assistant for the Intro to Digital 
Synthesis class at the University of Washington next year.  We will be 
using SuperCollider, and there is one problem that I can't seem to 
solve.  I posted this once to the sc-users list, but was never really 
able to figure out an answer.

We will be using a multi-user server to run SC off of, and I was 
wondering how I could have each user run SC off of the server, yet have 
their own SCClassLibrary.  In SC2, there was a way to choose a 
different Default Library... would there be any way to do this in SC3? 
Or, would it be possible to add a directory outside of the 
SCClassLibrary to the process that compiles the class library?

Thanks for any suggestions,

Josh

******************************************
Joshua D. Parmenter
Graduate Student, Music Composition

"...Some people think a composer's supposed to please them, but in a 
way a composer is a chronicler... He's supposed to report on what he's 
seen and lived."
                                                         					-Charles 
Mingus
(Continue reading)

Scott Wilson | 2 Jul 2004 16:25
Picon
Favicon

Function-play

Should the default addAction for Function-play not be \addToHead? I 
thought we changed all this stuff...

In any case, I'd like to change it, as I think it would be best to be 
consistent.

S.
Julian Rohrhuber | 2 Jul 2004 16:33
Picon
Favicon

Re: error handling: Object-halt and streams removedFromScheduler

would there be any way to propagate an error to the parent thread?
This would allow to catch an error at any level from a parent stream.

I've tried this:

+ Thread {
	parent { ^parent }
}

+ Object {
	throw {
		var thread;
		if (Error.handling) { error("throw during error 
handling!\n"); ^this };
		thread = thisThread;
		while { thread.notNil and: { 
thread.exceptionHandler.isNil } } {
			thread = thread.parent;
		};
		thread.exceptionHandler.handleError(this);
	}

}

but of course I get an out of context return.

// test

(
f = Routine({ "ggg".mumble; });
(Continue reading)

Julian Rohrhuber | 2 Jul 2004 16:40
Picon
Favicon

Re: Function-play

>Should the default addAction for Function-play not be \addToHead? I 
>thought we changed all this stuff...
>
>In any case, I'd like to change it, as I think it would be best to 
>be consistent.

I didn't change that, but for consistency I'd be fine with a change.
--

-- 

.
James McCartney | 3 Jul 2004 00:56
Picon

Re: [sc-users] In Out Order of execution


On Jul 2, 2004, at 3:47 PM, Scott Wilson wrote:

> The idea of a stable .0 release has been discussed recently. There're 
> a few things that need to be done first though.

What things, in your mind, would those be?

Gmane