Anmelden:     


Forum: German Forum

Topic: Script für Sampler fadeout (Buttonbelegung) anpassen
Moin,
es geht um das Script

repeat_start 'smpvol' ? blink & repeat_stop 'smpvol' : param_smaller 100% `sampler_volume 1` ? sampler_volume 1 100% : repeat_start_instant 'smpvol' 50ms & sampler_volume 1 -1% & sampler_volume 1 0% ? repeat_stop 'smpvol'

welches ich als Tastenbelegung nutze.
Funktioniert astrein, jedoch nur beim 1. Sampler, die anderen behalten die Lautstärke bei. Ich bekomme es leider nicht hin, dass die komplette Samplebank mitspielt. Hatte das Thema schon vor einem Jahr angefragt, doch leider ohne Antwort. Vielleicht kann jetzt jemand helfen?

Gruß Peter
 

geposted 2 days ago @ 5:46 pm
sampler_volume
'sampler_volume' sets the volume of the sample that has the focus, on the selected deck.

'sampler_volume 1' sets the volume of the sample in slot 1 in the current bank. 'sampler_volume "siren"' sets the volume of the sample 'siren.vdjsample'.
 

Dein Script:
repeat_start 'smpvol' ? blink & repeat_stop 'smpvol' : param_smaller 100% `sampler_volume 1` ? sampler_volume 1 100% : repeat_start_instant 'smpvol' 50ms & sampler_volume 1 -1% & sampler_volume 1 0% ? repeat_stop 'smpvol'


Probier mal und lass "1" weg:
repeat_start 'smpvol' ? blink & repeat_stop 'smpvol' : param_smaller 100% `sampler_volume` ? sampler_volume 100% : repeat_start_instant 'smpvol' 50ms & sampler_volume -1% & sampler_volume 0% ? repeat_stop 'smpvol'


 

Machmal kann es so einfach sein, vielen Dank :)

Gruß Peter
 

Immer wieder gerne ;o)