Record every move that is made and send the stuff to the other computer, where it draws what was recorded. Do it on both computers!
Offline
Jonathanpb wrote:
Record every move that is made and send the stuff to the other computer, where it draws what was recorded. Do it on both computers!
![]()
How could I go about doing that?
EDIT: I mean, in terms of block usage, list usage, etc.
Last edited by iCode-747 (2010-04-27 06:37:41)
Offline
You make a sprite that allways follows the mouse. And then set the ghost effect to 100. Then you put a code
FLAG CLICKED Forever if <mouse down> pen down set variable On/Off to on else pen up set variable On/Off to off
Then make another script on the same sprite:
FLAG CLICKED Forever set variable 'X' to x position set variable 'Y' to y position
You then make a new sprite with the ghost effect of 100
Then put the script
FLAG CLICKED Forever Goto (X sensor value) (Y sensor value) if <On/Off = On> pen down else pen up
Then 1 final script
FLAG CLICKED clear
There a working drawing Mesh program.
Offline