<div dir="ltr">Okay, this is getting me quite close! The only thing I think is missing from what I need is the possibility to write/change the pitch wheel data for the selected region only, not necessarily for whole measures.<div>Sometimes I need to bend eg. one 16th note a 1/3 tone down and the next one a quarter tone up. I tried to figure this out but didn't get it to work. If you can steer me in the right direction I'd be most grateful. Actually I already am.</div><div><br></div><div>Thanks so much!</div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">ti 10. jouluk. 2019 klo 21.02 Chris (<a href="mailto:marcel.denio@gmail.com">marcel.denio@gmail.com</a>) kirjoitti:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex">This script creates a pitch wheel event for each measure in the selection<br>
(it's just to show you how to create an event)<br>
<br>
------------<br>
local musicregion = finale.FCMusicRegion()<br>
musicregion:SetCurrentSelection()<br>
if musicregion:IsEmpty() then return end<br>
<br>
for m, s in eachcell(musicregion) do<br>
    -- 'm' is the measure number, 's' is the staff number/ID<br>
    local cell = finale.FCCell(m, s)<br>
    local me = finale.FCMidiExpression()<br>
    me:ConnectCell(cell)<br>
    me:SetUsePitchWheel()<br>
    me.PitchWheelValue = 1000<br>
    me:SaveNew()<br>
end<br>
------------<br>
<br>
Chris<br>
<br>
_______________________________________________<br>
JWLua mailing list<br>
<a href="mailto:JWLua@jwmusic.nu" target="_blank">JWLua@jwmusic.nu</a><br>
<a href="http://jwmusic.nu/mailman/listinfo/jwlua_jwmusic.nu" rel="noreferrer" target="_blank">http://jwmusic.nu/mailman/listinfo/jwlua_jwmusic.nu</a><br>
</blockquote></div>