This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#1 2011-10-29 16:13:10

ProgrammingPro01
Scratcher
Registered: 2011-07-30
Posts: 1000+

"What Is Scratch?"- Complete Guide On Scratch

Hello! You must be new to the scratch community. This topic will explain what Scratch is and all the wonderful things you can do on it!

What Is Scratch?

Scratch is a programming language in which you can make many things like games, animations, AMVs, and mostly anything you can think of!

I take Scratch as the first step in Programming. What I mean by that is that it is not so hard to learn, and usually people use it before they go to flash or anything else!

The General Website

The general website contains many things! You can view others' creative projects and you can even make your own and post it on the website!

But the website doesn't only have projects. It has galleries to explore, and even the link to the epic forums!  big_smile

The Forums

The Scratch Forums is a place where you can advertise your projects (specifically in the Show & Tell category), welcome our awesome new scratchers, and more!

You are new, so you get the "New Scratcher" status. You can be a Scratcher once you post alot here, and on the General Website!

More about "New Scratcher" Status

When you are a New Scratcher, you cannot post links or images, and you cannot have a signature. You also have to follow the 180 second rule between posting. >.>

But not to worry, however, because as I said atop, you just have to post post post and you get that new scratcher status you deserve!



I hope this helped! Bye!  smile

~PP01


Bye 1.4!
http://www.reactiongifs.com/wp-content/uploads/2013/04/sobbing.gifhttp://25.media.tumblr.com/tumblr_mbfh6bIamQ1qky11ho1_500.png

Offline

 

#2 2011-10-29 16:27:01

Freakish
Scratcher
Registered: 2011-10-25
Posts: 1000+

Re: "What Is Scratch?"- Complete Guide On Scratch

cool :]


http://i.imgur.com/y3RBV.jpg

Offline

 

#3 2011-10-29 17:11:05

alldaykade28471
Scratcher
Registered: 2011-05-25
Posts: 1000+

Re: "What Is Scratch?"- Complete Guide On Scratch

This will really help New Scratch Members! Nice work!  big_smile

Offline

 

#4 2011-10-30 04:20:29

gomillions
New Scratcher
Registered: 2011-10-30
Posts: 1

Re: "What Is Scratch?"- Complete Guide On Scratch

It's really new for me.

Offline

 

#5 2011-11-08 07:11:41

PullJosh
Scratcher
Registered: 2011-08-01
Posts: 500+

Re: "What Is Scratch?"- Complete Guide On Scratch

Awesome! I am going to post this on my website. (joshuapullen.com) This could be very useful to new scratchers. I like how it doesn't say how to use Scratch, but what wonders it will bring.  wink


http://www.blocks.scratchr.org/API.php?action=text&string=I'm_on_vacation!&xpos=155&ypos=90&font_size=30&bgimage=http://imageshack.us/a/img339/7215/sspeechsigapiforwords.png

Offline

 

#6 2011-11-10 09:03:22

PullJosh
Scratcher
Registered: 2011-08-01
Posts: 500+

Re: "What Is Scratch?"- Complete Guide On Scratch

PullJosh wrote:

Awesome! I am going to post this on my website. (joshuapullen.com) This could be very useful to new scratchers. I like how it doesn't say how to use Scratch, but what wonders it will bring.  wink

I finally got it on the website.

Last edited by PullJosh (2011-11-10 09:03:46)


http://www.blocks.scratchr.org/API.php?action=text&string=I'm_on_vacation!&xpos=155&ypos=90&font_size=30&bgimage=http://imageshack.us/a/img339/7215/sspeechsigapiforwords.png

Offline

 

#7 2011-11-14 12:36:03

schusteralex2
Scratcher
Registered: 2011-09-17
Posts: 1000+

Re: "What Is Scratch?"- Complete Guide On Scratch

nice  smile


http://i44.tinypic.com/2uj37ds.gif

Offline

 

#8 2011-11-14 13:53:10

tash_merga0910
New Scratcher
Registered: 2011-11-14
Posts: 1

Re: "What Is Scratch?"- Complete Guide On Scratch

hello do u know on scratch the actual program, how do u make your main sprite collect and count the targets because i have no clue and i am making a game not a short clip or like that, a bit like pac-man with a caracter and maze pleaze help me i need it by friday this information cause that is when my homework is due thank you sooooooooooooooooooooooooooooooooooooooooooooooooooooooo
much if you reply,
you will be life savers
tasha xx :-))
<3 <3 <3

Offline

 

#9 2011-11-14 15:24:37

fungirl123
Scratcher
Registered: 2011-10-09
Posts: 1000+

Re: "What Is Scratch?"- Complete Guide On Scratch

tash_merga0910 wrote:

hello do u know on scratch the actual program, how do u make your main sprite collect and count the targets because i have no clue and i am making a game not a short clip or like that, a bit like pac-man with a caracter and maze pleaze help me i need it by friday this information cause that is when my homework is due thank you sooooooooooooooooooooooooooooooooooooooooooooooooooooooo
much if you reply,
you will be life savers
tasha xx :-))
<3 <3 <3

Ok, so let's say you are making a game where you are in a maze and you have to collect cherries along the way.
You will want to make a bunch of cherry sprites, and place them wherever you want on the maze.
Then, when you move around, you will want the number of cherries you collected to go up. You use a variable for this.
After you click on Variables, click on "Make a new variable". A box will show up telling you to name your variable. Name it whatever you want (For this, I'll name it cherries). Click OK.
Now, you want the number of cherries to go up when you've collected one. This script is simple.
For the thing that is collecting the cherries:
<when green flag clicked>
<forever if> touching cherry1 <or> touching cherry2
<change{cherry}by( 1

For one of the cherries:
<when green flag clicked>
<forever if> touching Sprite1
<hide>


http://www.thebrag.com/wp-content/uploads/2011/06/GroupLove_General1_IMG_9057.jpg

Offline

 

#10 2011-11-14 16:56:55

FallenIce
Scratcher
Registered: 2011-10-14
Posts: 100+

Re: "What Is Scratch?"- Complete Guide On Scratch

alldaykade28471 wrote:

This will really help New Scratch Members! Nice work!  big_smile


http://i.imgur.com/Yc7aC.gif

Offline

 

#11 2011-11-15 22:41:04

mattb777
Scratcher
Registered: 2011-07-15
Posts: 1000+

Re: "What Is Scratch?"- Complete Guide On Scratch

Nice Job! I noticed a little mistake, though. New Scratchers can post links, but not to anywhere outside of the Scratch Website. They can post links to the TBG Forums, the Forums, projects, the Wiki, Help Pages, etc.


I'm back  big_smile

Offline

 

#12 2011-11-15 22:47:38

Earthboundjeff
Scratcher
Registered: 2010-09-28
Posts: 1000+

Re: "What Is Scratch?"- Complete Guide On Scratch

It's not just posts tI reach Scratcher. You get it 5x faster if you post a lot of good projects.


https://encrypted-tbn0.google.com/images?q=tbn:ANd9GcR1SONrHUmdKZXQNDgtN_vpycOOo-BDMfnlqHZRA1lMpYXhX7Jc

Offline

 

#13 2011-11-17 19:04:48

FallenIce
Scratcher
Registered: 2011-10-14
Posts: 100+

Re: "What Is Scratch?"- Complete Guide On Scratch

cool post


http://i.imgur.com/Yc7aC.gif

Offline

 

#14 2011-11-18 00:42:40

CopperHawk
Scratcher
Registered: 2011-09-23
Posts: 100+

Re: "What Is Scratch?"- Complete Guide On Scratch

Wow, great guide! I almost wish I read this before I joined! I'm sure it'll be helpful to new scratch members.


Copper Games is...  "ridiculously amazing!" -Nomolos    "Way too fun!"-Liamadams "awesome!" -Wes64       "Amazing!  big_smile " -JJROCKER

Offline

 

#15 2011-11-18 05:02:04

zinbads
New Scratcher
Registered: 2011-11-18
Posts: 1

Re: "What Is Scratch?"- Complete Guide On Scratch

Awsome ,I just visit website and want to make own Scratch

Offline

 

Board footer