Discuss Scratch

AKSHAY1111
Scratcher
3 posts

The Announcements Directory

cool I love the idea

vlinderprinses
Scratcher
1 post

The Announcements Directory

this is a good idea and i love this idea

Last edited by vlinderprinses (July 1, 2017 14:45:59)

makethebrainhappy
Scratcher
1000+ posts

The Announcements Directory

kenny2scratch wrote:

New Wiki Wednesday! Update please!

I will soon
ThePalmTree_
Scratcher
100+ posts

The Announcements Directory

makethebrainhappy wrote:

kenny2scratch wrote:

New Wiki Wednesday! Update please!

I will soon
how do you always get that pic?
Infinity_Sky
Scratcher
100+ posts

The Announcements Directory

ThePalmTree_ wrote:

makethebrainhappy wrote:

kenny2scratch wrote:

New Wiki Wednesday! Update please!

I will soon
how do you always get that pic?
Type ; ) without the space
ThePalmTree_
Scratcher
100+ posts

The Announcements Directory

Infinity_Sky wrote:

ThePalmTree_ wrote:

makethebrainhappy wrote:

kenny2scratch wrote:

New Wiki Wednesday! Update please!

I will soon
how do you always get that pic?
Type ; ) without the space
ik
I mean that picture underneath everything he types in the forum… aka “HOW TO WRITE A STICKY”
how?????
Forested
Scratcher
100+ posts

The Announcements Directory

ThePalmTree_ wrote:

Infinity_Sky wrote:

ThePalmTree_ wrote:

makethebrainhappy wrote:

kenny2scratch wrote:

New Wiki Wednesday! Update please!

I will soon
how do you always get that pic?
Type ; ) without the space
ik
I mean that picture underneath everything he types in the forum… aka “HOW TO WRITE A STICKY”
how?????
Link?
How-To-Do-You
Scratcher
16 posts

The Announcements Directory

How do you create a discussion?
Forested
Scratcher
100+ posts

The Announcements Directory

How-To-Do-You wrote:

How do you create a discussion?
“new topic”
ThePalmTree_
Scratcher
100+ posts

The Announcements Directory

Forested wrote:

ThePalmTree_ wrote:

Infinity_Sky wrote:

ThePalmTree_ wrote:

makethebrainhappy wrote:

kenny2scratch wrote:

New Wiki Wednesday! Update please!

I will soon
how do you always get that pic?
Type ; ) without the space
ik
I mean that picture underneath everything he types in the forum… aka “HOW TO WRITE A STICKY”
how?????
Link?
ok ig
jromagnoli
Scratcher
1000+ posts

The Announcements Directory

ThePalmTree_ wrote:

Forested wrote:

ThePalmTree_ wrote:

Infinity_Sky wrote:

ThePalmTree_ wrote:

makethebrainhappy wrote:

kenny2scratch wrote:

New Wiki Wednesday! Update please!

I will soon
how do you always get that pic?
Type ; ) without the space
ik
I mean that picture underneath everything he types in the forum… aka “HOW TO WRITE A STICKY”
how?????
Link?
ok ig
It's a signature, and this topic isn't for discussion about that.
Forested
Scratcher
100+ posts

The Announcements Directory

jromagnoli wrote:

ThePalmTree_ wrote:

Forested wrote:

ThePalmTree_ wrote:

Infinity_Sky wrote:

ThePalmTree_ wrote:

makethebrainhappy wrote:

kenny2scratch wrote:

New Wiki Wednesday! Update please!

I will soon
how do you always get that pic?
Type ; ) without the space
ik
I mean that picture underneath everything he types in the forum… aka “HOW TO WRITE A STICKY”
how?????
Link?
ok ig
It's a signature, and this topic isn't for discussion about that.
Oh, RIGHT.
Forested
Scratcher
100+ posts

The Announcements Directory

ThePalmTree_ wrote:

Forested wrote:

ThePalmTree_ wrote:

Infinity_Sky wrote:

ThePalmTree_ wrote:

makethebrainhappy wrote:

kenny2scratch wrote:

New Wiki Wednesday! Update please!

I will soon
how do you always get that pic?
Type ; ) without the space
ik
I mean that picture underneath everything he types in the forum… aka “HOW TO WRITE A STICKY”
how?????
Link?
ok ig
At the very bottom of the discussion main page, underneath “show your topics/posts”, you’ll find it
ThePalmTree_
Scratcher
100+ posts

The Announcements Directory

Forested wrote:

ThePalmTree_ wrote:

Forested wrote:

ThePalmTree_ wrote:

Infinity_Sky wrote:

ThePalmTree_ wrote:

makethebrainhappy wrote:

kenny2scratch wrote:

New Wiki Wednesday! Update please!

I will soon
how do you always get that pic?
Type ; ) without the space
ik
I mean that picture underneath everything he types in the forum… aka “HOW TO WRITE A STICKY”
how?????
Link?
ok ig
At the very bottom of the discussion main page, underneath “show your topics/posts”, you’ll find it
ok
makethebrainhappy
Scratcher
1000+ posts

The Announcements Directory

^ Like so:


[url=https://scratch-mit-edu.ezproxyberklee.flo.org/projects/163193105/][img]http://i.cubeupload.com/ITOAHD.png[/img][/url]

I put that into my post.
makethebrainhappy
Scratcher
1000+ posts

The Announcements Directory

The Directory has been updated. Thank you to everyone who reminded me about the new post !
imshuai
New Scratcher
1 post

The Announcements Directory

I won't use scratch's more modules. Who can teach me, please?
WolfCat67
Scratcher
1000+ posts

The Announcements Directory

imshuai wrote:

I won't use scratch's more modules. Who can teach me, please?
Oh, boy. This is a tough one to explain.
Basically, the “More Blocks” option allows you to create your own block, and tell it what to do. For example, let's make a block. Let's call it… “Jump”!
define jump
You'll see this fancy “define” block (shown above) appear, and you may be confused. However, it's really quite simple. What you put underneath that define block is what the “jump” block will do. For example…
define jump
repeat (10)
change y by (3)
end
repeat (10)
change y by (-3)
end
…This script will make the “jump” block cause the player to move up a bit, and then down a bit, like a jump. Now, to use it in your code. Here's an example of how it looks without the jump script, and how it looks with the jump script.
when gf clicked
repeat (10)
jump :: custom
end
when gf clicked
repeat (10)
repeat (10)
change y by (3)
end
repeat (10)
change y by (-3)
end
end
…See? It'll make your scripts a lot shorter and easier to use. But what if we want to change the height of the jump?
define jump (height)
…In this “jump” block, we've added a number input using the custom block settings. Here's how you can use it.
define jump (height)
repeat (height) // To get the "(height)" block, click and drag it from the define block to the repeat.
change y by (3)
end
repeat (height)
change y by (-3)
end
In this example, you have a height variable in there. For example, if you set the height to 1, you'll go up 3, and down 3. If you set it to 2, you'll go up 6, and down 6. You see what I mean? The following script can change, too.
when gf clicked
jump (1) :: custom
jump (2) :: custom
jump (3) :: custom
jump (4) :: custom
jump (5) :: custom
…The above script will jump multiple times, each at a height higher than before. Isn't that cool?

Of course, there are a lot more things you can do with custom blocks, so try to experiment and see what happens!
makethebrainhappy
Scratcher
1000+ posts

The Announcements Directory

This has been updated!
tali1665
Scratcher
100+ posts

The Announcements Directory

they removed cloud data.
(☁ you'll bring back cloud data and the discuss button)

Powered by DjangoBB