yes. actually in the debugger, looks like Run is running the script but the error I get says
/tmp/plugin/FABAAAmzGSZ1/tmp:/test.brs(64): runtime error ec: 'Dot' Operator attempted with invalid BrightScript Component or interface reference.
In remote script, I am making reference to an object in the calling script which is why I think I'm getting the error. My remote script looks something like this...
list = CreateObject("roList")
list.AddTail("abc")
list.AddTail("123")
list.ResetIndex()
x= list.GetIndex()
while x <> invalid
if show.Title = x then
screen.AddButton(2, "test")
end if
x = list.GetIndex()
end while
The error is on the line that says (if show.Title). "show" is an object in the calling script. how can I make the calling script and remote script interact with each other so the variables are recognized in each?