One thing to add/correct:
plQuad[1]=plQuad[1]+100
will change the point by a 100 pixels in both the horizontal and vertical
directions (see list manipulation lingo).
To change only one direction use:
plQuad[1]=plQuad[1]+point(100, 0)
or plQuad[1]=plQuad[1]+point(0, 100)
or even plQuad[1]=plQuad[1]+point(100, 50)
[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi To post messages to the list,
email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo. Thanks!]