Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Scrolling text problem

Status
Not open for further replies.

qws

MIS
Jun 23, 2005
26
AU
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 received it. Thank you very much for these examples Oldnewbie.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top