Discuss Scratch

gavnl
Scratcher
100+ posts

Scratch Wiki Community Portal - in the forums!

Gamer_id12345 wrote:

Can we disable see inside button in scratch? If yes then how?
Regected

ACHEIVEMENTS::sensing hat
Reported the dustbin::grey
Got a Sphero bolt!::events
Broke a progect::sound
Shared over [100 v] progects!::#00ff00
+(LOTS MORE!::#0000ff)::#ff0000 cap
12944qwerty
Scratcher
100+ posts

Scratch Wiki Community Portal - in the forums!

LOLScratch12233 wrote:

HOW TO BE CURATOR???
What type of curator are you talking about? There are several.


Facts
- Joined around Sep 28, 2015.
- 100th post
- 30 Projects
- 59 Followers
- Wiki
Alfredencomp
Scratcher
81 posts

Scratch Wiki Community Portal - in the forums!

The_Scratch_Cat37383 wrote:

Why is the scratch wiki purple
i don't know. what colour should it be?
-ElectronicArts-
Scratcher
1000+ posts

Scratch Wiki Community Portal - in the forums!

Alfredencomp wrote:

The_Scratch_Cat37383 wrote:

Why is the scratch wiki purple
i don't know. what colour should it be?
purple

LOLScratch12233
Scratcher
100+ posts

Scratch Wiki Community Portal - in the forums!

How to make a button that changes a backdrop pls

This is my friend, Cassandra, she protects me with guns
Everyone loves Scratch
My profile
Have fun!
all of fnf main characters icons
-ElectronicArts-
Scratcher
1000+ posts

Scratch Wiki Community Portal - in the forums!

LOLScratch12233 wrote:

How to make a button that changes a backdrop pls
you should make your own topic

divanshgupta0409
Scratcher
24 posts

Scratch Wiki Community Portal - in the forums!

The_Scratch_Cat37383 wrote:

Why is the scratch wiki purple
i don't no why

Alfredencomp wrote:

The_Scratch_Cat37383 wrote:

Why is the scratch wiki purple
i don't know. what colour should it be?
you are saying right
TheAnimalKingdom42
Scratcher
1000+ posts

Scratch Wiki Community Portal - in the forums!

Please read this!

TheAnimalKingdom42 wrote:

The Wiki article that contains a list of past Scratch Design Studios is missing Blast From the Past, which should be at 136, in between Serenity and Somewhere Out There.

TheAnimalKingdom42 wrote:

The method I used for text rendering was very similar to the way it was shown in the Text Rendering article, under the part ‘With Case Sensitivity’. However, I did have to change one thing. Sometimes, it didn't work correctly if I didn't add a ‘Switch costume to “null”’ at the beginning of the script. I believe the Wiki article should include this as the final script instead of the other one:
define rendertext (text) at x: (x pos) y: (y pos)
switch costume to [null]
go to x: (x pos) y: (y pos)
set [ letter] to [1]
repeat (length of (text))
switch costume to (letter (letter) of (text))
if <(costume #) = [1]> then
switch costume to (join (letter (letter) of (text)) [t])
end
if <(costume #) = [1]> then
else
stamp
end
change x by (10)
change [letter] by (1)
end
The Wiki article also had a mistake within the first ‘If <> then’ block. The code in the article was
switch costume to (join (character) [t])
even though the variable ‘character’ was never used or established. This is merely an error that can be fixed by using
(join (letter (letter) of (text)) [t])
instead. ^input from the custom block

jvvg
Scratcher
1000+ posts

Scratch Wiki Community Portal - in the forums!

TheAnimalKingdom42 wrote:

Please read this!

TheAnimalKingdom42 wrote:

The Wiki article that contains a list of past Scratch Design Studios is missing Blast From the Past, which should be at 136, in between Serenity and Somewhere Out There.
This has already been fixed. I am going to let someone else handle the other one though.


Professional web developer and lead engineer on the Scratch Wiki
Maybe the Scratch Team isn't so badWhy the April Fools' Day forum didn't work last year
ToMplePouli
Scratcher
7 posts

Scratch Wiki Community Portal - in the forums!

Guys how do you make your own forum/discussion?
TheGlassPenguin
Scratcher
1000+ posts

Scratch Wiki Community Portal - in the forums!

ToMplePouli wrote:

Guys how do you make your own forum/discussion?
Go to the forum category you want to make your topic in, and click “New Topic”.
lessgodababy12345
Scratcher
100+ posts

Scratch Wiki Community Portal - in the forums!

define jump(height)pos
repeat (height)
change y by(answer)
end
repeat (height)
change y by (answer)
end

when green flag clicked
jump(10)pos
stop all

Last edited by lessgodababy12345 (Nov. 18, 2021 01:59:41)

lessgodababy12345
Scratcher
100+ posts

Scratch Wiki Community Portal - in the forums!

fling wrote:

define jump(height)pos
repeat (height)
change y by(answer)
end
repeat (height)
change y by (answer)
end

when green flag clicked
jump(10)pos
stop all
Yeah… it’s just a bit bigger than I expected… just a little………

Last edited by lessgodababy12345 (Nov. 18, 2021 02:01:40)

Coodum
Scratcher
3 posts

Scratch Wiki Community Portal - in the forums!

Hi
Coodum
Scratcher
3 posts

Scratch Wiki Community Portal - in the forums!

Um….
williamtest_account
Scratcher
55 posts

Scratch Wiki Community Portal - in the forums!

Coodum wrote:

Um….
This is for the scratch wiki like do anything related to scratch wiki lol

hello i'm the noob type
  • bad at games
  • don't get memes very much
PoIygon
Scratcher
1000+ posts

Scratch Wiki Community Portal - in the forums!

I am totally NOT the person that spammed the suggestions forum at 11am on the 1st of April 2021 who would do that?

That person would be a really unfunny idiot dum dum head

Last edited by PoIygon (Nov. 20, 2021 04:22:56)











_bz
Scratcher
100+ posts

Scratch Wiki Community Portal - in the forums!

I am just updating all the historical article in the username KavinKarthi. Making Wiki get enough info on early scratch beta's and several other related things.

I am doing social media and heavy distractions detox
My ArcheoScratchTube Channel
TheAnimalKingdom42
Scratcher
1000+ posts

Scratch Wiki Community Portal - in the forums!

TheAnimalKingdom42 wrote:

The method I used for text rendering was very similar to the way it was shown in the Text Rendering article, under the part ‘With Case Sensitivity’. However, I did have to change one thing. Sometimes, it didn't work correctly if I didn't add a ‘Switch costume to “null”’ at the beginning of the script. I believe the Wiki article should include this as the final script instead of the other one:
define rendertext (text) at x: (x pos) y: (y pos)
switch costume to [null]
go to x: (x pos) y: (y pos)
set [ letter] to [1]
repeat (length of (text))
switch costume to (letter (letter) of (text))
if <(costume #) = [1]> then
switch costume to (join (letter (letter) of (text)) [t])
end
if <(costume #) = [1]> then
else
stamp
end
change x by (10)
change [letter] by (1)
end
The Wiki article also had a mistake within the first ‘If <> then’ block. The code in the article was
switch costume to (join (character) [t])
even though the variable ‘character’ was never used or established. This is merely an error that can be fixed by using
(join (letter (letter) of (text)) [t])
instead. ^input from the custom block

A-MARIO-PLAYER
Scratcher
42 posts

Scratch Wiki Community Portal - in the forums!

Redirect “SX” to “ScratchX”.

Play new Cookie Clicker: Cookie Clicker 2

NEW: Submit ScratchMix 2023 topics
ScratchMix is an annual event where Scratch creators create their own projects focused upon one topic.



Featured
Enjoy these good animations and games on Scratch by A-MARIO-PLAYER, including Scratch Tools!



??? wrote:

x werxi fo shisu hy (how did you get here?)

Powered by DjangoBB