Forum Discussion
Alexanderrk
9 years agoReel Rookie
You could use the External control guide
https://sdkdocs.roku.com/display/sdkdoc/External+Control+Guide
You can launch videos by sending a POST command to the Roku, eg.
Good luck!
https://sdkdocs.roku.com/display/sdkdoc/External+Control+Guide
You can launch videos by sending a POST command to the Roku, eg.
conn = CreateObject("roUrlTransfer")
url = "http://localhost:8060/launch/837?contentID=VIDEOID"
conn.SetUrl(url)
conn.SetRequest("POST")
data = conn.GetToString()
Good luck!