Hello,
I have made my first scrolling text box in flash, but at the moment I need to keep clicking on the down arrow for the text to scroll. Is there a way I can either just hover over the down arrow, or just click once and hold down and make the text scroll? Hover would be the better option.
The current action script I am using in the down arrow is:
on (press, release, rollOver, keyPress "<Down>") {
currentScroll = fragranceinfo.scroll;
if (Number(currentScroll)<Number(fragranceinfo.maxscroll)) {
fragranceinfo.scroll = Number(currentScroll)+1;
}
}
I have made my first scrolling text box in flash, but at the moment I need to keep clicking on the down arrow for the text to scroll. Is there a way I can either just hover over the down arrow, or just click once and hold down and make the text scroll? Hover would be the better option.
The current action script I am using in the down arrow is:
on (press, release, rollOver, keyPress "<Down>") {
currentScroll = fragranceinfo.scroll;
if (Number(currentScroll)<Number(fragranceinfo.maxscroll)) {
fragranceinfo.scroll = Number(currentScroll)+1;
}
}