There are many things that came to me easily while first learning scratch: Scrolling is not one of them. I want to make a background that is basically the sky, and then sprites at the bottom that would be, well, the ground. I also have giant text in the middle that would be my title. How can I make the sprites that are on the ground scroll, without me doing anything? Also, how can I control the speed of the scrolling? Thanks in advance.
Offline
Here are two articles form the wiki: http://wiki.scratch.mit.edu/wiki/Scroll … ng_Sprites for scrolling with multiple sprites, or using one sprite for scrolling: http://wiki.scratch.mit.edu/wiki/Scroll … ipt_method. The second link is better IMO because you can make a big project without too many sprites. And these scripts
if <key [right arrow v] pressed?> change [scrollx v] by (-5) // change this number to control speed end if <key [left arrow v] pressed?> change [scrollx v] by (5) // change this number to control speed endThese numbers change the speed. Changing 5 to a bigger/smaller number will change speed.
Last edited by 30-1 (2012-11-23 11:57:27)
Offline
This DOES help thnx!
Offline