loupiottes/DMX-2.0/html/if.js
2014-12-11 16:28:06 +00:00

47 lines
858 B
JavaScript

loadedInterfaceName = "Loupiottes";
interfaceOrientation = "landscape";
pages = [[
{
"name": "refresh",
"type": "Button",
"bounds": [.6, .9, .2, .1],
"startingValue": 0,
"isLocal": true,
"mode": "contact",
"ontouchstart": "interfaceManager.refreshInterface()",
"stroke": "#aaa",
"label": "refrsh",
},
{
"name":"master",
"type":"Slider",
"bounds": [.05, .1, .1, .8],
"isVertical" : true,
"address" : "/master",
"min":0,"max":101,
},
{
"name":"masters1",
"type":"Slider",
"bounds": [.20, .1, .1, .8],
"isVertical" : true,
"address" : "/seq/1/master",
"min":0,"max":101,
},
{
"name":"ml1",
"type":"MultiSlider",
"bounds": [.30, .1, .5, .8],
"isVertical" : true,
"address" : "/seq/1/circuit",
"min":0,"max":256,
"numberOfSliders" : 10,
},
]
];