to navigate in my WMPlayer i need a Scrollbar or Slider.
there is no "extra" Scrollbar Control so i try to use Slider
Slider have ON CHANGE
when click on Slider-Shaft and move to new Position than ON CHANGE does "react"
when change Value of Slider this Way
Code: Select all
nScroll := GetProperty( "Form_1", "oScroll", "VALUE" )
nScroll += 10
SetProperty( "Form_1", "oScroll", "VALUE", nScroll )

---
i found out when "press" Cursor-Key ON CHANGE will "react"
so i try
Code: Select all
DoMethod( "Form_1", "oScroll", "Setfocus" )
SENDKEY( VK_LEFT )
SENDKEY( VK_RIGHT )
SENDKEY( VK_UP )
SENDKEY( VK_DOWN )

how can i "activate" ON CHANGE
