=== Top of the Swiki === Attachments ===

FAQ: Morphic Background

How can I give my Morphic world wallpaper, ie, a background image? How about an individual morph?



img
img := GIFReadWriter formFromFileNamed: 'image.gif'.
World color: (InfiniteForm with: img).
World fullRepaintNeeded.


You can also use the FileList's "open image as background" feature to do so. It supports Squeak's common file format (GIF, JPG, Form stoteOn: (run coded) and BMP). This feature works in MVC world as well. To proceed, you need to open a FileList. Search for your favorite wallpaper and then select it with the yellow button. If you chose a valid supported file, you should see "open image as background". Select it and voila.
Ian Trudel