View Single Post
Old 06-12-2019, 04:42 PM   #562
Edgemeal
Human being with feelings
 
Edgemeal's Avatar
 
Join Date: Apr 2016
Location: ASU`ogacihC
Posts: 3,921
Default

Quote:
Originally Posted by X-Raym View Post
@edgemeal
Hmmm nope, this just make file list disapear :/
Seems to works fine on Win7.

Code:
local hWnd = reaper.JS_Window_Find("Media Explorer", true)
if hWnd == nil then return end  
local container = reaper.JS_Window_FindChildByID(hWnd, 0)
local file_LV = reaper.JS_Window_FindChildByID(container, 1000)

local SB_LINEUP = 0
local SB_LINEDOWN = 1
local SB_TOP = 6
local SB_BOTTOM = 7

-- go to top
reaper.JS_WindowMessage_Send(file_LV, "WM_VSCROLL", SB_TOP, 0,0,0)
-- scroll down # of lines
for n = 1, 7 do
 reaper.JS_WindowMessage_Send(file_LV, "WM_VSCROLL", SB_LINEDOWN, 0,0,0)
end
Edgemeal is offline   Reply With Quote