View Single Post
Old 07-23-2017, 03:22 AM   #2
juliansader
Human being with feelings
 
Join Date: Jul 2009
Posts: 3,714
Default

Custom cursors can be faked by drawing a tooltip next to the cursor:

Code:
local xpos, ypos = reaper.GetMousePosition()
reaper.TrackCtl_SetToolTip("♫", xpos+11, ypos+6, true)



Unfortunately, when using this hack in deferred MIDI scripts, the tooltip lags behind the cursor, due to the unnecessary sluggishness of the MIDI editor.
juliansader is offline   Reply With Quote