hi all. i'm trying to ad an ad on my channel. I'm running into a problem when there's another object on the canvas. We're putting up a channel information overlay when the user switches to a different channel. At the same time, I'm using this opportunity to test putting an ad up on the screen. This isn't appearing, tho... I tried using the same canvas object, different layer, to no avail. so then I thought I'd create a separate canvas to handle the ad. Is this supported? In general, the image isn't showing up either way.
Here's the code that puts up the channel info bar:
m.canvas.AllowUpdates(false)
m.updateInfo()
m.canvas.Show()
m.canvas.AllowUpdates(true)
m.channelBarActive = true
where updateInfo() is:
m.canvas.SetLayer(3, [m.meta.backgroundImage]) //we store an object with a reference to an image here....
Ideas? Thanks