home *** CD-ROM | disk | FTP | other *** search
- on strip
- return 80
- end
-
- on TopStrip s, x, y
- return y < (the top of sprite s + strip())
- end
-
- on LeftStrip s, x, y
- return x < (the left of sprite s + strip())
- end
-
- on BottomStrip s, x, y
- return y > (the bottom of sprite s - strip())
- end
-
- on RightStrip s, x, y
- return x > (the right of sprite s - strip())
- end
-
- on AnyStrip s, x, y
- return TopStrip(s, x, y) or LeftStrip(s, x, y) or BottomStrip(s, x, y) or RightStrip(s, x, y)
- end
-