Discuss Scratch
- Discussion Forums
- » Help with Scripts
- » Interactive World Workspace (Detection Problem)
- Extremguy
-
Scratcher
100+ posts
Interactive World Workspace (Detection Problem)
So I'm working on an interacting world using stamp positions,id,costume (lot of list) and magnitude (range between two point)
And I made a mouse block that will follow the mouse and for some reason when I click it doesnt react and doesnt say what it is supposed to say for example it should say the id of the stamp , it position inside the world of the workspace and say it costume id (id value) , but it doesnt seem to say anything
or sometime it work. I don't understand why.
Here's my project
And I made a mouse block that will follow the mouse and for some reason when I click it doesnt react and doesnt say what it is supposed to say for example it should say the id of the stamp , it position inside the world of the workspace and say it costume id (id value) , but it doesnt seem to say anything
or sometime it work. I don't understand why.Here's my project
- Brontosplachna
-
Scratcher
100+ posts
Interactive World Workspace (Detection Problem)
In the custom block “checker” you have
if range < maxrange then
say info
else
say nothing
a command to “say info” is immediately replaced by a command to “say nothing”. Only if the square that was clicked on is last in the list will “say info” not be immediately replaced.
A solution would be, after you “say info”, to “stop this script”.
if range < maxrange then
say info
else
say nothing
a command to “say info” is immediately replaced by a command to “say nothing”. Only if the square that was clicked on is last in the list will “say info” not be immediately replaced.
A solution would be, after you “say info”, to “stop this script”.
- Extremguy
-
Scratcher
100+ posts
Interactive World Workspace (Detection Problem)
Thanks for your help, right now I have another problem. For some reason the block sayStuff inside my Mousy isnt saying the stuff it is supposed to say. I have a list called Blank that is where I have my blank that I wanna change so I do a repeat loop until all Blank is over and it supposed to swap these element using the CheckBlank Variable into the right parameters of my block(function). I dont know why this loop ain't working. Do you know why? Thanks for your help!
- Discussion Forums
- » Help with Scripts
-
» Interactive World Workspace (Detection Problem)