Hello!
Here (
http://eulive.eu/try.zip) is very simple Big-buck-bunny playing program.
And it doesn't work on Roku 2. It doesn't play with the message:
Request Failed: -3: An unexpected problem (but not server timeout or HTTP error) has been detected.
It will play if at the next code:
bm1 = createObject("roBitmap",{width:1280,height:720,AlphaEnable:true})
bm2 = createObject("roBitmap",{width:1024,height:512,AlphaEnable:true})
'bm3 = createObject("roBitmap",{width:1280,height:720,AlphaEnable:true})
make bm2 bitmap less (e.g. 512x512). Also after many runs it can doesn't work even with very small images (I have tried one time 1x1 the second image and it wasn't work).
But at Roku 1 it will play even with third bitmap and uncommented drawing code:
'screen.drawObject(0,0,bm1)
'screen.drawObject(0,0,bm2)
'screen.drawObject(0,0,bm3)
What I do wrong? Why Roku 2 doesn't allow me create image buffers so much as I need?