Updown Control

Purpose:

Returns the handle of a new Updown control

Syntax:

updown(orientation,x,y,width,height)

Comments:

Use the increment method to set up the step

Example:

up = upDown("vertical" 400 , 780 , 240 , 350)
up.range = -20,3  // we are using this as vu meter, hence -20 and 3 for range which represent DB
up.increment = 1  // each click increments by 1
up.colorbackground = rgb(0,47,108)