Hi, is there a way to set the grid loading image?
I found this: GridScreenRetrievingColor but just for the color
RokuJoel wrote:Grid_Retrieving_Landscape_HD.jpg
Grid_Retrieving_Landscape_SD43.jpg
open these two files in your favorite graphic editor and make them into whatever you want.
- Joel
ifGridScreen.SetLoadingPoster("pkg:/images/myHDPoster.jpg","pkg:/images/mySDPoster.jpg")
di=createobject("rodeviceinfo")
if mid(di.getversion(),3,1).toint() > 3 then
screen.setloadingposter("pkg:/images/loadingposterHD.jpg","pkg:/images/loadingposterSD.jpg")
end if
RokuJoel wrote:Had to do some research and testing first:Code: Select allifGridScreen.SetLoadingPoster("pkg:/images/myHDPoster.jpg","pkg:/images/mySDPoster.jpg")
This does not work on Legacy (firmware 3.x) devices so:Code: Select alldi=createobject("rodeviceinfo")
if mid(di.getversion(),3,1).toint() > 3 then
screen.setloadingposter("pkg:/images/loadingposterHD.jpg","pkg:/images/loadingposterSD.jpg")
end if
- Joel
RokuJoel wrote:3.1 firmware is used for these
malloys wrote:I've got an N1000 and an N1101 that are both running 3.1 (and the ebay page seems to only show the 2100).
Just guessing, but would it be safe to say 3.1 runs on all the first generation boxes (i.e. the models using the NXP chips and not the models using the Broadcom chips)?
i.e. Models: N1000, N1050, N1100, N1101, 2000, 2050, 2100
Or is there a different criteria and/or a definitive list somewhere?