I'm assuming you mean something like a toroidal donut.
Try this:
If touching edge
If x position > 235
set (x position) to -235
else
if x position < -235
set x position to 235
If (y position > 175)
set y position to -175
else
if (y position < -175)
set y position to 175
(NOTE: I haven't tried this yet).

Offline
cheddargirl wrote:
I'm assuming you mean something like a toroidal donut.
Try this:
If touching edge
If x position > 235
set (x position) to -235
else
if x position < -235
set x position to 235
If (y position > 175)
set y position to -175
else
if (y position < -175)
set y position to 175
(NOTE: I haven't tried this yet).
That should work fine...I do something similar in this project, if you want to see it in action
http://scratch.mit.edu/projects/Paddle2See/317725
Offline