> tempRect = tempRect.offset (0, tempImage.rect.height)
> put tempRect
> tempImage.copyPixels(menuImage, tempRect, theRect)
You're now immediately putting the image off the bottom of the five
times height area. It's menuImage's height you need to offset by, and
then after you have done the copyPixels. Like this:
repeat with i = 1 to 5
tempImage.copyPixels(menuImage, tempRect, theRect)
tempRect = tempRect.offset (0, menuImage.rect.height)
end repeat
[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!]