im using this script to scroll a MC however the script only scrolls evertime the user clicks, i want it to scroll on hold also, how is that accomplished:
on (press) {
scrollerdn = getProperty(“webnav”, _y);
newscrolldn = Number(scrollerdn)+10;
if (Number(newscrolldn)>-33) {
newscrolldn = “-33”;
}
setProperty (“webnav”, _y, newscrolldn);
…:ScrollBarName = _target;
…:ScrollBarValue = newscrolldn;
call ("…:ScrollUpdate");
}
thanks.