i have some query:
(1) how much
internel memory have roku device? from where i can get information about internal storage of a individul device(especially roku2 device) .?
(2)As i am storing some images it's temp directory, and then animating these images. on click on different option(different button) images coming a/c to options, i am storing these images in temp and then animate these one by one, which is working good but when i am switching on options frequently i mean pressing button ->images coming->storing in temp->animate one by one..
bitMap=createobject("roBitmap", images coming here which are stored in temp)
after some time bitMap is giving invalid(not creating bitmap)
i am not understanding if images are coming here why its not creating bitmap...is it storage problem.
one more thing each time i am creating directory and delete it on each call(during download new images).
m.LocalFileBrowser = CreateObject("roFileSystem")
TmpFile_directory = m.LocalFileBrowser.Exists("tmp:/OverlayImages")
if(TmpFile_directory<>invalid)
isDirectoryDeleted = m.LocalFileBrowser.Delete("tmp:/OverlayImages")
End if
CreateDirectory("tmp:/OverlayImages")
i am storing images under OverlayImages directory.