OK thank you Chris.
Mostly just curious (hopefully not really going to try this, but), if I wanted to create an alternate to the Grid Screen from the ground up in BrightScript and include it with my channel, is such a thing possible?
so instead of
screen = CreateObject("roGridScreen")
I'd need to somewhere define an object "MYroGridScreen" in order to allow
screen = CreateObject("MYroGridScreen")
update: I'm reading BrightScript 2.0 Reference Manual and I think the answer is "no"; p.20
You can create "intrinsic" objects in BrightScript itself to use in your scripts. However, to be clear, these are not BrightScript Components. There is currently no way to create a BrightScript Component in BrightScript, or to create intrinsic objects that have interfaces (they only contain member functions, properties, or other objects).
can someone pls confirm whether this means "no"?
aspiring