If you have an image in your clipboard, you can paste it into a canvas without altering the size of the canvas by using the Listener. The image is represented in your clipboard as a string that probably looks something like "%%IMG3..."

thatCanvas.paste[image["%%IMG3..."]]
If you wanted to center the image within the canvas, you could tweak this recipe a little. You may also want to clear the canvas before pasting if you already have something drawn on it:
i:image["%%IMG3..."] thatCanvas.clear[] thatCanvas.paste[i .5*thatCanvas.size-i.size]
The Listener is also really handy for things like setting widgets to a precise size:
thatCanvas.size:120,100
How's that?


