Discuss Scratch
- Discussion Forums
- » Help with Scripts
- » How to do typewriter text!
- JebKeb
-
100+ posts
How to do typewriter text!
clickityclack…Doesn't it sound awesome? Well, we can get you a similar effect here, WITHOUT the sound. 

define say (say)This is our definition block.
(letterNumber)These 3 variables are necessary.
(letter)
(word)
define say (say)We have now cleared the blocks. Finally, we will get the main bit done.
set [letterNumber v] to [0]
set [letter v] to []
set [word v] to []
define say (say)It works, so have fun!
set [letterNumber v] to [0]
set [letter v] to []
set [word v] to []
repeat until <((letterNumber) - [1]) = (length of (say))>
change [letterNumber v] by [1]
set [letter v] to (letter (letterNumber) of (say))
set [word v] to (join (word) (letter))
say (join (word) (letter))
end
- DerAxeEffekt
-
100+ posts
How to do typewriter text!
In this forum, you should only offer help if someone asks for help.
- duckboycool
-
1000+ posts
How to do typewriter text!
There are lots of tutorials on this forum page. They do help and are useful so I'm fine with them. In this forum, you should only offer help if someone asks for help.
- Paddle2See
-
1000+ posts
How to do typewriter text!
Yes, we don't want to discourage Scratchers from making tutorials - and this is the best place on the forums for them.There are lots of tutorials on this forum page. They do help and are useful so I'm fine with them. In this forum, you should only offer help if someone asks for help.
A better place to put them is on the Scratch Wiki, since it is really set up for knowledge preservation. You might want to contact the Wiki and see adding your tutorial there

- JebKeb
-
100+ posts
How to do typewriter text!
Yes, we don't want to discourage Scratchers from making tutorials - and this is the best place on the forums for them.There are lots of tutorials on this forum page. They do help and are useful so I'm fine with them. In this forum, you should only offer help if someone asks for help.
A better place to put them is on the Scratch Wiki, since it is really set up for knowledge preservation. You might want to contact the Wiki and see adding your tutorial there
I had a request but it never got noticed. I think the admin that was dealing with it went on holidays - he said.
- CatsUnited
-
1000+ posts
How to do typewriter text!
You can always add a typewriter sound.
Also,
Also,
define type [text]I didn't add the word var, but it's the same thing.
set [i v] to [1]
set [letter v] to [ ]
repeat (length of (text))
set [letter v] to (letter (i) of (text))
change [i v] by (1)
end
- TheGlassWolf
-
4 posts
How to do typewriter text!
How to grow an apple tree
- Poke hole in ground
- Put seed in hole
- Put soil back in ground
- Water and Give Sun Every Day
- Several Months Later you will have tree, Ready to let you pick apples!
Last edited by TheGlassWolf (July 13, 2015 21:04:16)
- Sigton
-
1000+ posts
How to do typewriter text!
define Say (text)is how it should be done; will work perfectly and doesn't have any extra scripts.
set [Text v] to [ ]
set [letter v] to [0]
repeat (length of (text))
change [letter v] by (1)
set [Text v] to (join (Text)(letter (letter) of (text)))
say (Text)
end
say (Text) for (0) secs
Sigton
- TheGlassWolf
-
4 posts
How to do typewriter text!
Rectangles
Last edited by TheGlassWolf (July 13, 2015 21:09:30)
- Tristancodin
-
36 posts
How to do typewriter text!
8)
Last edited by Tristancodin (Sept. 4, 2023 19:24:51)
- ticoeteco23gb
-
100+ posts
How to do typewriter text!
Weird ways those above to bump a post, right?
- Elguja0706
-
2 posts
How to do typewriter text!
Someone have an idea for a game with typewriter?
- FunTimePiglet
-
2 posts
How to do typewriter text!
I know
Last edited by FunTimePiglet (Sept. 18, 2025 22:40:43)
- FunTimePiglet
-
2 posts
How to do typewriter text!
Here is a Example Project, I used the Undertale font I know I know, but it's still pretty good
CREDIT ME IF YOU USE IT
https://scratch.mit.edu/projects/1218741966/
CREDIT ME IF YOU USE IT
https://scratch.mit.edu/projects/1218741966/
Last edited by FunTimePiglet (Sept. 18, 2025 22:50:16)
- cheddargirl
-
1000+ posts
How to do typewriter text!
Closing thread due to necroposting (thread is nearly a decade old) . As a reminder, please check the date of a topic before posting.
- Discussion Forums
- » Help with Scripts
-
» How to do typewriter text!