Discuss Scratch
- Discussion Forums
- » Help with Scripts
- » How Do You Change Font Size & Font in a Speech Bubble?
- kyeburns
-
Scratcher
3 posts
How Do You Change Font Size & Font in a Speech Bubble?
I'm trying to create a project (wow, I'm very descriptive!!!) of which I need a very big font size!!! But I'm not sure how to change the font size and/or font.
Any help will be valued.
Thanks!
Any help will be valued.
Thanks!
- DudePotato3
-
Scratcher
63 posts
How Do You Change Font Size & Font in a Speech Bubble?
The easiest way to do this would be to actually make it a sprite with a text box an a custom speech bubble which would appear by using the ‘Broadcast’ block and if the text sprite ‘receives’ the broadcast it would appear. Hope this helps!
- DudePotato3
-
Scratcher
63 posts
How Do You Change Font Size & Font in a Speech Bubble?
Wow i just realized i said that all in one sentence and i said an instead of and 0_0
- 21lyoja
-
Scratcher
100+ posts
How Do You Change Font Size & Font in a Speech Bubble?
This is not possible with the normal “say” or “think” blocks. The easiest way to make your own is to create a main sprite which has a costume for every letter of the alphabet (and space, and any other character's you'll be using) and to make the sprite get set to a certain size, change to a costume with its letter, and stamp it using the pen block for it. Then move the sprite a certain distance, and repeat until the process is done.
- 21lyoja
-
Scratcher
100+ posts
How Do You Change Font Size & Font in a Speech Bubble?
define say (input)
set [counter v] to [0]
repeat until <[done] = [true]>
change [counter v] by (1)
switch costume to [(letter (counter) of (input)) v]
set size to (size) %
stamp
move (steps) steps
end
- Discussion Forums
- » Help with Scripts
-
» How Do You Change Font Size & Font in a Speech Bubble?