ID:1088170
 
(See the best response by Jemai1.)
Code:
                                src << browse('Ultimate.BMP',"display=0")
src << browse("<body bgcolor=\"black\"><center><img src=Ultimate.BMP><p><font color = \"yellow\" size = 4>You Have Summoned the Ultimate Being! </center>")


Problem description:I am not sure what I am doing wrong here... I keep getting a white square with a red X on the browse area of the game... I have read over some tutorials and the browse code but I just don't know how to fix this. Any help would be appreciated.

Best response
See the browse_rsc proc. How to do it is pretty obvious when you see the example given in the reference.

src << browse_rsc('Ultimate.BMP',"Ultimate.BMP")
src << browse("<body bgcolor=\"black\"><center><img src=Ultimate.BMP><p><font color = \"yellow\" size = 4>You Have Summoned the Ultimate Being! </center>")
I knew it was something simple. Well at least I know now. Thanks!
A word of warning: You most definitely should not be using the .bmp format in this day and age. It is raw data with absolutely no compression applied, so it'll waste lots of resources. Switch to .png.
Thank you for the advice Lord Andrew.