If you don't mind looking, here is part of the function where the problem exists. I am passing in an object that contains parsed XML (aboutOptions), the problem is with SmallIconUrl. If I set it to aboutOptions.background, it displays the image, however, anything else that I try to set it to does not work. I've tried another attribute on the aboutOptions, or a direct url to an image...and I just tried setting it to tmpFile (displayed in the code), which I created using the snippet belltown provided. What am I doing wrong here? Thanks
tmpFile = CreateObject("roUrlTransfer")
tmpFile.SetUrl(aboutOptions.logo)
tmpFile.GetToFile("tmp:/about_small.png")
o.SDSmallIconUrl = tmpFile
o.HDSmallIconUrl = tmpFile
o.HDBackgroundImageUrl = aboutOptions.background
o.SDBackgroundImageUrl = aboutOptions.background