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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Scrolling for Flash 3

Status
Not open for further replies.

palle

Technical User
May 30, 2000
18
DE
For some reason some of the text was missing in my last thread.
Here it is again:
I have built a Flash movie with a scroll text. The code for the down arrow is:

on (rollOver) {
target = getProperty("/text/01", _y);
if (target<=-1083) {
stop ();
} else {
play ();
setProperty (&quot;/text/01&quot;, _y, getProperty(&quot;/text/01&quot;, _y)-5);
}
}
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top