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

#1 2012-07-03 18:58:04

NyBrid
New Scratcher
Registered: 2012-07-03
Posts: 2

im new and dont know how to make one

how do u make a scratch creation thing o@o

Offline

 

#2 2012-07-03 19:23:21

NyBrid
New Scratcher
Registered: 2012-07-03
Posts: 2

Re: im new and dont know how to make one

Help Me

Offline

 

#3 2012-07-03 19:40:34

berberberber
Scratcher
Registered: 2012-03-08
Posts: 1000+

Re: im new and dont know how to make one

Um... could you be more specific?


http://i47.tinypic.com/2iaa73k.png

Offline

 

#4 2012-07-03 22:53:53

scratcher5000
Scratcher
Registered: 2012-02-19
Posts: 100+

Re: im new and dont know how to make one

what do you mean by "creation thing"?


Click The Picture!!!https://lh5.googleusercontent.com/-AJkKdtvtfB8/T8wjCMxcatI/AAAAAAAAAIs/46buzBlD9U0/s0-d/cooltext709275256.png I am currently http://blocks.scratchr.org/API.php?user=scratcher5000&action=onlineStatus&type=text

Offline

 

#5 2012-07-04 07:02:12

SciTecCf
Scratcher
Registered: 2011-11-23
Posts: 1000+

Re: im new and dont know how to make one

scratcher5000 wrote:

what do you mean by "creation thing"?

He means a project.

I've seen this before, he doesn't know how to use Scratch at all.

I suggest you read this.

Last edited by SciTecCf (2012-07-04 07:03:21)


http://bit.ly/LCZEJRhttp://bit.ly/LSONcOhttp://bit.ly/LF3vIc
http://trinary.site40.net/images/scratchrank.php?username=SciTecCf&display=small

Offline

 

#6 2012-07-04 08:13:15

baseball1859
Scratcher
Registered: 2012-06-09
Posts: 33

Re: im new and dont know how to make one

Well, to make a question, you make 2 sprites. One is red and has the letter A on it, one is blue and has the letter B on it. Now make another 3 sprites. One has a question on it, and the other two are potential answers. Decide which one is right, which one is wrong.
Your script should look like this: (under the right answer sprite)

when right answer clicked
say [You clicked the right answer]
Now for the wrong answer sprite, you would do this:

when wrong answer clicked
say [You clicked the wrong answer]
Hope this helped


http://i1043.photobucket.com/albums/b437/Drax15/Random/500x150.jpg

Offline

 

#7 2012-07-04 10:16:50

JH1010
Scratcher
Registered: 2012-05-31
Posts: 1000+

Re: im new and dont know how to make one

How to make a sprite move with the arrow keys:

when gf clicked
forever
if <key up arrow pressed>
change y by (5)
end
if <key down arrow pressed>
change y by (-5)
end
if <key right arrow pressed>
change x by (5)
end
if <key left arrow pressed>
change x by (-5)
end
end
If this doesn't help then try downloading other peoples' projects to see how they made theirs. If that doesn't help then there are some good walkthroughs on YouTube.

Offline

 

#8 2012-07-06 07:27:57

sonicgames20
Scratcher
Registered: 2012-06-13
Posts: 100+

Re: im new and dont know how to make one

If you use this script:

when gf clicked
ask [what's your name]
if <(answer) = [scratch]>
 say [Mine Too!]
else
 say <join [Hello] [(answer)]>
end
stop script


if there is no I in TEAM and there  is no U in TEAM then who's on the team?
I am-http://blocks.scratchr.org/API.php?user=sonicgames20&amp;action=onlineStatus&amp;type=square-green=online grey=offline

Offline

 

#9 2012-07-06 07:31:52

sonicgames20
Scratcher
Registered: 2012-06-13
Posts: 100+

Re: im new and dont know how to make one

The sprite will ask What your name is. If the answer you get is scratch it will tell you that the sprite's name is also scratch. If else (Use the answer block It says hello.


if there is no I in TEAM and there  is no U in TEAM then who's on the team?
I am-http://blocks.scratchr.org/API.php?user=sonicgames20&amp;action=onlineStatus&amp;type=square-green=online grey=offline

Offline

 

#10 2012-07-06 12:50:13

berberberber
Scratcher
Registered: 2012-03-08
Posts: 1000+

Re: im new and dont know how to make one

sonicgames20 wrote:

If you use this script:

when gf clicked
ask [what's your name?] and wait
if <(answer) = [scratch cat]>
 say [Mine Too!]
else
 say (join [Hello] (answer))
end

fixed (your) [scripts]

Last edited by berberberber (2012-07-06 12:51:02)


http://i47.tinypic.com/2iaa73k.png

Offline

 

#11 2012-07-06 13:11:24

fg123
Scratcher
Registered: 2008-11-13
Posts: 1000+

Re: im new and dont know how to make one

JH1010 wrote:

How to make a sprite move with the arrow keys:

when gf clicked
forever
if <key [up arrow v] pressed?>
change y by (5)
end
if <key [down arrow v] pressed?>
change y by (-5)
end
if <key [right arrow v] pressed?>
change x by (5)
end
if <key [left arrow v] pressed?>
change x by (-5)
end
end
If this doesn't help then try downloading other peoples' projects to see how they made theirs. If that doesn't help then there are some good walkthroughs on YouTube.

fixed (your) [scripts]

Last edited by fg123 (2012-07-06 13:11:39)


Hai.

Offline

 

Board footer