View Single Post
Old 13th July 2009   #4 (permalink)
flashedchris
Forum Junior
 
 
Level: 9
Level up: 39%
Activity: 0%
Posts: 386
Status: Offline
Default Re: Flash Tutorial: Scrolling Background

If you want the screen to scoll down like Guitar Hero ,then replace the code above with the new code below.

class Background extends MovieClip
{
function onEnterFrame()
{
_y -= 50;
if(_y < -2110)
{
_y = 0;
}
}
}
__________________
If need anything that deals with computers (tutorials, games, websites, sigs, faqs, anything with a pc/mac) let me know and I will try to help you.
Reply With Quote