Pages: 1
Topic closed
Simple:
[blocks]
<when green flag clicked>
<forever>
<if><touching[ mouse pointer ?
<say[ Blah ]for( 2 )secs>
<end>
<end>
[/blocks]
Put the code into the sprite that you want to say something
Offline
That would get the sprite being touched to say something, which isn't what hp001 was asking for.
Instead, on the sprite to be touched use:
When Green Flag Clicked
Forever
- if touching mouse pointer
- broadcast "Speak"
- wait until not touching mousepointer
Then on the active sprite:
When I recieve "Speak"
Say "My message is..." for 2 seconds.
Offline
Topic closed
Pages: 1