Instead of setting the picture to the page and having to do the image on a 640 x 480 canvas i though it would be soo much easier and beneficial to do it like this, but for some reason the image doesn't appear. Can anyone help me with this? Thanks
Code:
def initialize
super(0, 350, 180, 130)
self.opacity = 0
self.contents = Bitmap.new(width - 32, height - 32)
bitmap = RPG::Cache.picture("Shop Command")
self.contents.blt(0, 0, bitmap, Rect.new(0, 0, 180, 130))
@item_max = 3
@row_max = 3
@commands = ["Buy", "Sell", "Exit"]
refresh
self.index = 0
end