Forum Discussion
pkudrys
2 years agoFrequent Contributor
Hi, thanks for the suggestion. Sadly, mouse wheel does not work when the mouse is hovering above the slider. But it may eventually work form code, because there is a MouseWheel method available.
rraghvani
Champion Level 3
2 years agoCode example, on changing the value property of a slider control.
function Slider()
{
// https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_rangeslider
var page = NameMapping.Sys.browser.Page("https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_rangeslider");
var slider = page.Panel("container").Panel("iframecontainer").Panel("iframe").Panel("iframewrapper").Frame("iframeResult").Panel(0).Slider("myRange");
slider.value = 21;
}