I know how to change the color of blocks in a category, but how to I change the tabs that say stuff like control, pen, etc...

Offline
It's:
Scratch-Objects (Class) -> ScriptableScratchMorph -> block specs -> blockColorFor:
and you should add something like:
'files' = aCategory ifTrue: [^ (Color h: 100 s: 0.95 v: 0.9)].
The above code would make the Files blocks green.
Offline
jvvg wrote:
It's:
Scratch-Objects (Class) -> ScriptableScratchMorph -> block specs -> blockColorFor:
and you should add something like:Code:
'files' = aCategory ifTrue: [^ (Color h: 100 s: 0.95 v: 0.9)].The above code would make the Files blocks green.
How do you change the category tab though?

Offline