Skip to content

_Framework.SessionComponent (runtime)

Live 11 — Live Object Model & framework reference (descriptions and signatures).

Functions

in_range(value, lower_bound, upper_open_bound)

product(iter_a, iter_b)

subject_slot(events, *a, **k)

subject_slot_group(event, *a, **k)

Classes

class CompoundComponent(ControlSurfaceComponent)

class SceneComponent(CompoundComponent)

class ScrollComponent(ControlSurfaceComponent, Scrollable)

class SessionComponent(CompoundComponent)

class count

count(start=0, step=1) --> count object

Return a count object whose .next() method returns consecutive values. Equivalent to:

def count(firstval=0, step=1):
    x = firstval
    while 1:
        yield x
        x += step

Methods

__init__(self, /, *args, **kwargs)

Initialize self. See help(type(self)) for accurate signature.