<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    Hello <span style="color: rgb(0, 0, 0); font-family: "Times
      New Roman"; font-size: medium; font-variant-ligatures:
      normal; font-variant-caps: normal; font-weight: 400;
      letter-spacing: normal; orphans: 2; text-align: left; text-indent:
      0px; text-transform: none; white-space: normal; widows: 2;
      word-spacing: 0px; -webkit-text-stroke-width: 0px;
      background-color: rgb(255, 255, 255); text-decoration-style:
      initial; text-decoration-color: initial;">Undoaudio<br>
      <br>
      Here is an idea that could serve you as a basis<br>
      <br>
      ---------------<br>
      local musicregion = finale.FCMusicRegion()<br>
      musicregion:SetCurrentSelection()<br>
      if musicregion:IsEmpty() then return end<br>
      local midiexpressions = finale.FCMidiExpressions()<br>
      midiexpressions:LoadAllForRegion(musicregion)<br>
      <br>
      for me in each(midiexpressions) do<br>
          if me:IsPitchWheel() then<br>
              -- Do something with 'me' here<br>
          end<br>
      end<br>
      ---------------<br>
      <br>
      best regards<br>
      <br>
      Chris<br>
    </span>
  </body>
</html>