Hello, I haven't followed the list for a while; sorry if I'm repeating questions that were already mentioned...
1) is there any way to flip an object, namely an image? I grep'd the source for something like flip() or reverse() but didn't find anything. Rotate is cool, but then the image ends up upside down when you go 180. (I wonder if skew would work with negative top values?) 2) I had a stack that contained an image within a stack (the numbers here are approximate since I was working on another machine): stack (top=0, left=10) > nested stack (w=30) >> image (w=30) The nested stack is the width of the image (~30px). Whenever I tried to move the nested stack by 1 pixel (stack.left += 1) it would move the nested stack 30 pixels (as if 1px in nested stack-land were equal to 30px outside of the nested stack). I took the nested stack out of the top-level stack and moving it by 1px successfully moved it only 1px. Is that supposed to happen? I'm working on the last stable build (I believe) on Leopard, -tieg
