Skip to content

Commit

Permalink
guess..
Browse files Browse the repository at this point in the history
  • Loading branch information
neophob committed Oct 19, 2011
1 parent bc899cb commit 16fa517
Show file tree
Hide file tree
Showing 2 changed files with 148 additions and 109 deletions.
77 changes: 58 additions & 19 deletions data/OSC/002.js
Expand Up @@ -45,19 +45,19 @@ pages = [
{
"name":"VisualNr",
"type":"Slider",
"x":0.25, "y":0,
"x":0.2, "y":0,
"width":.075, "height":.45,
"stroke": "#454545",
"color": "#999999",
"stroke": "#452525",
"color": "#995555",
"min": 0, "max": 4.9,
"isXFader" : false,
"isVertical" : true,
"onvaluechange": "infoVisual.changeValue( 'Visual: '+ Math.floor(this.value) );",
"onvaluechange": "infoVisual.changeValue( 'Visual Nr: '+ Math.floor(this.value) );",
},
{
"name": "infoVisual",
"type": "Label",
"x": .25, "y": .45,
"x": .2, "y": .45,
"width": .25, "height": .1,
"value": "Visual: --",
"verticalCenter": false,
Expand Down Expand Up @@ -91,7 +91,7 @@ pages = [
{
"name":"SliderMix",
"type":"Slider",
"x":0.25, "y":0.5,
"x":0.2, "y":0.5,
"width":.075, "height":.4,
"stroke": "#454545",
"color": "#999999",
Expand All @@ -103,7 +103,7 @@ pages = [
{
"name": "infoMix",
"type": "Label",
"x": .25, "y": .9,
"x": .2, "y": .9,
"width": .25, "height": .1,
"value": "Mixer: --",
"verticalCenter": false,
Expand All @@ -114,46 +114,85 @@ pages = [
{
"name":"knobR",
"type":"Knob",
"x":0.5, "y":0,
"x":.5, "y":0,
"radius":.145,
"color": "#ff0000",
"stroke": "#880000",
},
{
"name":"knobG",
"type":"Knob",
"x":0.65, "y":0,
"x":.65, "y":0,
"radius":.145,
"color": "#00ff00",
"stroke": "#008800",
},
{
"name":"knobB",
"type":"Knob",
"x":0.8, "y":0,
"x":.8, "y":0,
"radius":.145,
"color": "#0000ff",
"stroke": "#000088",
},
{
"name":"knobThreshold",
"type":"Knob",
"x":.65, "y":.25,
"radius":.145,
"color": "#557755",
"stroke": "#335533",
},
{
"name":"knobRotozoom",
"type":"Knob",
"x":.8, "y":.25,
"radius":.145,
"color": "#557755",
"stroke": "#335533",
"centerZero" : true,
},
/* -- Activate Tint Effect on all Outputs Button */
{
"name": "activateTintButton",
"type": "Button",
"x": 0.5, "y": .25,
"width": .1, "height": .1,
"width": .145, "height": .08,
"mode": "momentary",
"color": "#fc8000",
"stroke": "#7e4000",
"label": "ACTIVATE TINT FX",
"oninit": "activateTintButton.fillDiv.style.borderWidth = '2px';",
},
{
"name": "activateTresholdButton",
"type": "Button",
"x": 0.5, "y": .33,
"width": .145, "height": .08,
"mode": "momentary",
"color": "#fc8000",
"stroke": "#7e4000",
"label": "ACTIVATE THRESHOLD FX",
"oninit": "activateTresholdButton.fillDiv.style.borderWidth = '2px';",
},
{
"name": "activateRotozoomButton",
"type": "Button",
"x": 0.5, "y": .41,
"width": .145, "height": .08,
"mode": "momentary",
"color": "#fc8000",
"stroke": "#7e4000",
"label": "ACTIVATE ROTOZOOM FX",
"oninit": "activateRotozoomButton.fillDiv.style.borderWidth = '2px';",
},

/* -- RANDOM MODE Button */
{
"name": "randomToggleButton",
"type": "Button",
"x": 0.5, "y": .5,
"width": .1, "height": .1,
"width": .145, "height": .08,
"mode": "toggle",
"color": "#fc8000",
"stroke": "#7e4000",
Expand All @@ -164,8 +203,8 @@ pages = [
{
"name": "fireRandomButton",
"type": "Button",
"x":.5, "y":.6,
"width":.1, "height":.1,
"x":.5, "y":.58,
"width":.145, "height":.08,
"mode": "momentary",
"color": "#fc8000",
"stroke": "#7e4000",
Expand All @@ -176,8 +215,8 @@ pages = [
{
"name": "fireRandomPresentButton",
"type": "Button",
"x":.5, "y":.7,
"width":.1, "height":.1,
"x":.5, "y":.66,
"width":.145, "height":.08,
"mode": "momentary",
"color": "#fc8000",
"stroke": "#7e4000",
Expand All @@ -189,7 +228,7 @@ pages = [
"name": "visualOneToAll",
"type": "Button",
"x": .65, "y": .5,
"width": .15, "height": .1,
"width": .15, "height": .08,
"mode": "momentary",
"color": "#fc8000",
"stroke": "#7e4000",
Expand All @@ -200,8 +239,8 @@ pages = [
{
"name": "visualTwoToAll",
"type": "Button",
"x": .65, "y": .6,
"width": .15, "height": .1,
"x": .65, "y": .58,
"width": .15, "height": .08,
"mode": "momentary",
"color": "#fc8000",
"stroke": "#7e4000",
Expand Down

0 comments on commit 16fa517

Please sign in to comment.