Hi,
I apologize if this has been answered before. When I try to display an image using the following code, the image always gets cut off on the left side by about 40 pixels. The image is smaller than my screen. I can make it better by using:
Screen.DrawObject(40, 0, bitmap)
instead of:
Screen.DrawObject(0, 0, bitmap)
but I worry that will not work on all TV's. Does anyone know why the images are getting cut off on the left side and how to fix? Is it my TV, HD in general, etc.? Thanks for your help.
Screen=CreateObject("roScreen")
port = CreateObject("roMessagePort")
Screen.SetMessagePort(port)
bitmap = CreateObject("roBitmap", "tmp:/image.jpg")
Screen.DrawObject(0, 0, bitmap)
Screen.Finish()