Hello, I hope I can word my question appropriately so I get a response back, I'll try to give the information I know properly
🙂I have a Brightscript Roku channel that parses an XML file eg:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<categories>
<feed title="channel">
<item sdImg="pkg:/images/SD/ch.jpg" hdImg="pkg:/images/HD/ch.jpg">
<title>channle</title>
<description></description>
<streamFormat>hls</streamFormat>
<media>
<streamQuality>HD</streamQuality>
<streamBitrate>0</streamBitrate>
<streamUrl>http://myserver.com/master.m3u8</streamUrl>
</media>
<synopsis></synopsis>
<genres>Cable</genres>
<live>True</live>
</item>
</feed>
</categories>
Can I add a roMessageDialog box in there somewhere or does the message box have to be external to the XML file parse?
https://sdkdocs.roku.com/display/sdkdoc/roMessageDialogThx