Jump to content

minig

Member
  • Posts

    15
  • Joined

  • Last visited

minig's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Hello, i would like to query from amount the notes. example: if a notes = var controlChange number12 if two Notes = var ......13 __________ dont work if ( e instanceof NoteOn ) if ( e.noteOn>0 && e.noteOn<2) { var e = new ControlChange; e.number=GetParameter("1 ControlChange - Nummer"), e.value=GetParameter("1/1 ControlChange - Wert"), e.channel=GetParameter("1 MIDI- Kanal/Out"); e.sendAfterMilliseconds(0.1);
  2. http://up.picr.de/32816597eb.png http://up.picr.de/32816614ob.png http://minimu-ch.weebly.com/download.html
  3. minig

    or

    okay it finde it.. the solution it : || SetParameter("Dog" , at1 || at)
  4. Hello, in the Script gif are the funkion " or" example: i wish set a Parameter with 2 or more different value, http://up.picr.de/29525599fe.png
  5. i wish " Fader" control in Scripter to generate, what i need for a command?
  6. https://www.dropbox.com/s/e0gu4v64h77ymgc/Bildschirmfoto%202016-12-02%20um%2023.19.58.png?dl=0
  7. 1066x1066https://www.dropbox.com/s/e0gu4v64h77ymgc/Bildschirmfoto%202016-12-02%20um%2023.19.58.png?dl=0[/img]
  8. okay i have the solution found a " ! " for GetParameter and the 0 is 1 and 1is 0 { if ( e instanceof Note) if ( e &&!GetParameter(ks)) } e.send();
  9. hello, i have a script with a 1 parameter on / off (ks) - an two funtcion the first 1.GetParameter(ks) - it's okay ( 0 is off and 1 is on) the next mast reverse 2.GetParameter(ks) - ( 0 is on and 1 is off) how can i the ks value reverse? ( on send CC , off send Note)
  10. Hello Unheardofski, Thank you for you Help... now i'm a step forward... but i can't it to implement... probably i need a time window
  11. //....................... //Multi Midi Out switcher //by //...................... var PluginParameters = []; var mChans = []; for (i=0; i<5; i++){ mChans.push("Ch.in: " + i) } createParam("Spieler 1 ", "menu", mChans, 0, 4, 0, 4); createParam("Aktiv 1", "menu" ,["off", "on"], 1, 0, 1, 0); createParam("Spieler 2 ", "menu", mChans, 0, 4, 0, 4); createParam("Aktiv 2", "menu" ,["off", "on"], 1, 0, 1, 0); function createParam(n, t, vs, miv, mav, def) { PluginParameters.push({ name: n, type: t, valueStrings: vs, minValue: miv, maxValue: mav, defaultValue: def, }); } function ParameterChanged(param, value){ } function HandleMIDI(e){ if (e.channel == GetParameter( "Spieler 1 ")) if (e.channel && GetParameter ("Aktiv 1")){ e.channel = 10; e.send(); } if (e.channel == GetParameter( "Spieler 2 ")) if (e.channel && GetParameter ("Aktiv 2")){ e.channel = 11; e.send(); } }
  12. how can i the input event split ? http://grab.by/Qji6 the channel out is fix the channel input is variable
  13. Hello, i have a script but hi's dont work !!! waht make i false? // Multi Midi Channel Output the esempel of 3 dont work!!! // Parameter is Midi input var PluginParameters = [ { name:"ch.out 1", type:'menu', minValue:0, maxValue:4, numberOfSteps:4, defaultValue:0,valueStrings:["0","1","2","3","4"], unit: " ch.in "}, { name:"ch.out 2", type:'menu', minValue:0, maxValue:4, numberOfSteps:4, defaultValue:0,valueStrings:["0","1","2","3","4"], unit: " ch.in "}, { name:"ch.out 3", type:'menu', minValue:0, maxValue:4, numberOfSteps:4, defaultValue:0, valueStrings:["0","1","2","3","4"], unit: " ch.in "}, ]; function HandleMIDI(event){ if ( event.channel == GetParameter ("ch.out 1")) { event.channel = 1 event.send(); } if ( event.channel == GetParameter ("ch.out 2")) { event.channel = 2 event.send(); } if ( event.channel == GetParameter ("ch.out 3")) { event.channel = 3 event.send(); } }
  14. Hello, i'm new here.... and have already a big question... Is there a Script for the notes in the size sorting...... example: input D1, F1, C1 output C1, D1, F1
×
×
  • Create New...