Go to UI-Panes then ScratchFrameMorph (i think) then Private then changeName (or something) then change all the stuff that says 'Scratch'
Offline
ssss wrote:
Nope
yes. Programming-Freak is right.
Scratch-UI-Panes -> ScratchFrameMorph -> private -> updateProjectName
change the text that says ' - Scratch' to ' - Lring' and the text saying 'Scratch' , Version to 'Lring 1.0 of Some Date'
Offline
ssss wrote:
I'm making a mod called "Lring" And i need to know how to change the Scratch 1.4 of 30 jun 09 to Lrine - anyone know how?
Easy, I know how Scratch UI-Panes - Scratch FrameMorph - private - update project name
in quotes there is something like:
ifTrue: [t1 _ projectTitleMorph contents , '- Scratch']
ifFalse: [t1 _ 'Scratch'].
Change to:
ifTrue: [t1 _ projectTitleMorph contents , '- Mod']
ifFalse: [t1 _ 'Mod].
Offline