This is the link to my project...
Yay! I finally figured out a use for the new boolean blocks! (EDIT: Okay, fine, word editing blocks.) This project will reverse the text you input. AND it has a little "loading" indicator! All I have to say is that if you're interested, click the link and read the project notes.
Last edited by big-bang (2009-08-30 16:27:37)
Offline
Ummm is this a joke? Scratch doesn't support booleans and your project doesn't really have any. Not to mention that your projects scripts is too long. You can achieve the same results with this simple script.
set reverseword to
set i to length of answer
Repeat (length of answer){
set reverseword to (join (reverseword) (letter i of answer))
change i by (-1)
}
say reverseword
This project shows how it should be made http://scratch.mit.edu/projects/archtest/665739
Last edited by archmage (2009-08-30 16:35:53)
Offline