I created an app for iSyn, and everything works for the most part exept that when you close the app (which is a pattern generator, kinda like a screensaver) it continues to draw. If anyone would be willing to take a look at it, I'd appreciate it. http://scratch.mit.edu/projects/moocow98/1367258
Thanks!!
-moocow
Offline
Make a variable that says: "patternonoroff" or something like that. Then, make a script for the pen sprite that says:
[blocks]
<when green flag clicked>
<forever>
<if><( <{ patternonoroff }> <=> yes )>
<pen down>
<else>
<pen up>
<end>
[/blocks]
Would that work?
Edit: Oh, by the way, you'll need to make the
When flag clicked
set [patternonoroff] to no
script and the
When I receive [drawing program broadcast]
set [patternonoroff] to yes
Last edited by Guinea_Pig_Girl (2010-10-22 02:40:30)
Offline
Guinea_Pig_Girl wrote:
Make a variable that says: "patternonoroff" or something like that.
Then, make a script for the pen sprite that says:
[blocks]
<when green flag clicked>
<forever>
<if><( <{ patternonoroff }> <=> yes )>
<pen down>
<else>
<pen up>
<end>
[/blocks]
Would that work?![]()
Probably
Offline