SuperCollider Help -LPEvent

LPEvent explanation of what LPEvent is and/or does


Inherits from: Object : LPObj


More detailed prose description of LPEvent.


See also: Object [some other help files]


Some Important Issues Regarding LPEvent (optional)


Explanation of the issues. For more information see Nil and [some other help files].


Creation / Class Methods


*new

Short prose description of method.

// inline example

g = LPEvent.new;

g.doSomething; // explanation

g.cleanUpMethod;



*initClass

Short prose description of method.

// inline example

g = LPEvent.initClass;

g.doSomething; // explanation

g.cleanUpMethod;



Accessing Instance and Class Variables

noteNames

Explanation including the type of noteNames and a link to its help file.

Default value is defaultValue.

rhythms

Explanation including the type of rhythms and a link to its help file.

Default value is defaultValue.

octave

Explanation including the type of octave and a link to its help file.

Default value is defaultValue.

prependStrings

Explanation including the type of prependStrings and a link to its help file.

Default value is nil.

note

Explanation including the type of note and a link to its help file.

Default value is nil.

appendStrings

Explanation including the type of appendStrings and a link to its help file.

Default value is nil.

Doing Some Task (optional)


A short bit of prose explaining something about the task.

initLPEvent

Short prose description of method.

// inline example

g = LPEvent.initLPEvent;

g.doSomething; // explanation

g.cleanUpMethod;



addPrependString (str)

Short prose description of method.

str - Explanation of str. Default value is nil. Other information.

// inline example

g = LPEvent.addPrependString;

g.doSomething; // explanation

g.cleanUpMethod;



addAppendString (str)

Short prose description of method.

str - Explanation of str. Default value is nil. Other information.

// inline example

g = LPEvent.addAppendString;

g.doSomething; // explanation

g.cleanUpMethod;



output (file, score)

Short prose description of method.

file - Explanation of file. Default value is nil. Other information.

score - Explanation of score. Default value is nil. Other information.

// inline example

g = LPEvent.output;

g.doSomething; // explanation

g.cleanUpMethod;



checkDuration (aDuration)

Short prose description of method.

aDuration - Explanation of aDuration. Default value is nil. Other information.

// inline example

g = LPEvent.checkDuration;

g.doSomething; // explanation

g.cleanUpMethod;



Examples


// what this example does

e = LPEvent.new;

e.instanceMethod(someObject);

e.cleanUp;


...