diff --git a/getting started/NewDeveloperOnboardingSample-master/SampleRSGChannel/.vscode/launch.json b/getting started/NewDeveloperOnboardingSample-master/SampleRSGChannel/.vscode/launch.json new file mode 100644 index 00000000..58c4d75c --- /dev/null +++ b/getting started/NewDeveloperOnboardingSample-master/SampleRSGChannel/.vscode/launch.json @@ -0,0 +1,17 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + + { + "name": "BrightScript Debug: Launch", + "type": "brightscript", + "request": "launch", + "host": "${promptForHost}", + "password": "${promptForPassword}", + "rootDir": "${workspaceFolder}" + } + ] +} \ No newline at end of file diff --git a/getting started/NewDeveloperOnboardingSample-master/SampleRSGChannel/components/Animations/AnimationFloat/AnimationFloatExample.xml b/getting started/NewDeveloperOnboardingSample-master/SampleRSGChannel/components/Animations/AnimationFloat/AnimationFloatExample.xml index 570fc0a7..432e402f 100644 --- a/getting started/NewDeveloperOnboardingSample-master/SampleRSGChannel/components/Animations/AnimationFloat/AnimationFloatExample.xml +++ b/getting started/NewDeveloperOnboardingSample-master/SampleRSGChannel/components/Animations/AnimationFloat/AnimationFloatExample.xml @@ -14,7 +14,7 @@ id = "examplePoster" width = "512" height = "288" - uri = "http://sdktestinglab.com/Tutorial/images/videopg.jpg" /> + uri = "http://www.sdktestinglab.com/Tutorial/images/videopg.jpg" /> + uri="http://www.sdktestinglab.com/Tutorial/images/videopg.jpg" /> diff --git a/getting started/NewDeveloperOnboardingSample-master/SampleRSGChannel/components/ControlNodes/Task/TaskExample.brs b/getting started/NewDeveloperOnboardingSample-master/SampleRSGChannel/components/ControlNodes/Task/TaskExample.brs index 6b1388cf..fd90e58e 100644 --- a/getting started/NewDeveloperOnboardingSample-master/SampleRSGChannel/components/ControlNodes/Task/TaskExample.brs +++ b/getting started/NewDeveloperOnboardingSample-master/SampleRSGChannel/components/ControlNodes/Task/TaskExample.brs @@ -14,7 +14,7 @@ sub init() m.top.translation = [ centerx, centery ] m.readXMLContentTask = createObject("RoSGNode", "ContentReader") - m.readXMLContentTask.uri = "http://api.delvenetworks.com/rest/organizations/59021fabe3b645968e382ac726cd6c7b/channels/1cfd09ab38e54f48be8498e0249f5c83/media.rss" + m.readXMLContentTask.uri = "https://stream-akamai.castr.com/5b9352dbda7b8c769937e459/live_2361c920455111ea85db6911fe397b9e/index.fmp4.m3u8" m.readXMLContentTask.observeField("content", "setcontent") m.readXMLContentTask.control = "RUN" end sub diff --git a/getting started/NewDeveloperOnboardingSample-master/SampleRSGChannel/components/ListsAndGrids/MarkupGrid/MarkupGridExample.brs b/getting started/NewDeveloperOnboardingSample-master/SampleRSGChannel/components/ListsAndGrids/MarkupGrid/MarkupGridExample.brs index ba2aa103..d8bddb97 100644 --- a/getting started/NewDeveloperOnboardingSample-master/SampleRSGChannel/components/ListsAndGrids/MarkupGrid/MarkupGridExample.brs +++ b/getting started/NewDeveloperOnboardingSample-master/SampleRSGChannel/components/ListsAndGrids/MarkupGrid/MarkupGridExample.brs @@ -10,7 +10,7 @@ sub init() m.markupgrid = m.top.findNode("exampleMarkupGrid") m.readMarkupGridTask = createObject("roSGNode", "ContentReader") - m.readMarkupGridTask.uri = "http://api.delvenetworks.com/rest/organizations/59021fabe3b645968e382ac726cd6c7b/channels/1cfd09ab38e54f48be8498e0249f5c83/media.rss" + m.readMarkupGridTask.uri = "https://stream-akamai.castr.com/5b9352dbda7b8c769937e459/live_2361c920455111ea85db6911fe397b9e/index.fmp4.m3u8" m.readMarkupGridTask.observeField("content", "showmarkupgrid") m.readMarkupGridTask.control = "RUN" end sub diff --git a/getting started/NewDeveloperOnboardingSample-master/SampleRSGChannel/components/ListsAndGrids/MarkupList/MarkupListExample.brs b/getting started/NewDeveloperOnboardingSample-master/SampleRSGChannel/components/ListsAndGrids/MarkupList/MarkupListExample.brs index e719a5b0..bb4054d8 100644 --- a/getting started/NewDeveloperOnboardingSample-master/SampleRSGChannel/components/ListsAndGrids/MarkupList/MarkupListExample.brs +++ b/getting started/NewDeveloperOnboardingSample-master/SampleRSGChannel/components/ListsAndGrids/MarkupList/MarkupListExample.brs @@ -8,7 +8,7 @@ sub init() m.markupList = m.top.findNode("exampleMarkupList") m.markupListContentReader = createObject("roSGNode", "ContentReader") - m.markupListContentReader.uri = "http://api.delvenetworks.com/rest/organizations/59021fabe3b645968e382ac726cd6c7b/channels/1cfd09ab38e54f48be8498e0249f5c83/media.rss" + m.markupListContentReader.uri = "https://stream-akamai.castr.com/5b9352dbda7b8c769937e459/live_2361c920455111ea85db6911fe397b9e/index.fmp4.m3u8" m.markupListContentReader.observeField("content", "setMarkupListContent") m.markupListContentReader.control = "RUN" end sub diff --git a/getting started/NewDeveloperOnboardingSample-master/SampleRSGChannel/components/ListsAndGrids/PosterGrid/PosterGridExample.brs b/getting started/NewDeveloperOnboardingSample-master/SampleRSGChannel/components/ListsAndGrids/PosterGrid/PosterGridExample.brs index b7c44892..ea21e1f9 100644 --- a/getting started/NewDeveloperOnboardingSample-master/SampleRSGChannel/components/ListsAndGrids/PosterGrid/PosterGridExample.brs +++ b/getting started/NewDeveloperOnboardingSample-master/SampleRSGChannel/components/ListsAndGrids/PosterGrid/PosterGridExample.brs @@ -10,7 +10,7 @@ sub init() m.postergrid = m.top.findNode("examplePosterGrid") m.readPosterGridTask = createObject("roSGNode", "ContentReader") - m.readPosterGridTask.uri = "http://api.delvenetworks.com/rest/organizations/59021fabe3b645968e382ac726cd6c7b/channels/1cfd09ab38e54f48be8498e0249f5c83/media.rss" + m.readPosterGridTask.uri = "https://stream-fastly.castr.com/5b9352dbda7b8c769937e459/live_2361c920455111ea85db6911fe397b9e/index.fmp4.m3u8" m.readPosterGridTask.observeField("content", "showpostergrid") m.readPosterGridTask.control = "RUN" end sub diff --git a/getting started/NewDeveloperOnboardingSample-master/SampleRSGChannel/components/ListsAndGrids/RowList/RowListExample.brs b/getting started/NewDeveloperOnboardingSample-master/SampleRSGChannel/components/ListsAndGrids/RowList/RowListExample.brs index c7ca7bbe..5596019c 100644 --- a/getting started/NewDeveloperOnboardingSample-master/SampleRSGChannel/components/ListsAndGrids/RowList/RowListExample.brs +++ b/getting started/NewDeveloperOnboardingSample-master/SampleRSGChannel/components/ListsAndGrids/RowList/RowListExample.brs @@ -12,7 +12,7 @@ sub init() m.rowlist.itemSize = [ 536 * 3, 308 ] m.contentReader = createObject("roSGNode", "ContentReader") - m.contentReader.uri = "http://api.delvenetworks.com/rest/organizations/59021fabe3b645968e382ac726cd6c7b/channels/1cfd09ab38e54f48be8498e0249f5c83/media.rss" + m.contentReader.uri = "https://stream-fastly.castr.com/5b9352dbda7b8c769937e459/live_2361c920455111ea85db6911fe397b9e/index.fmp4.m3u8" m.contentReader.observeField("content", "getContent") m.contentReader.control = "RUN" end sub diff --git a/getting started/NewDeveloperOnboardingSample-master/SampleRSGChannel/components/SlidingPanels/GridPanel/GridPanelExample.brs b/getting started/NewDeveloperOnboardingSample-master/SampleRSGChannel/components/SlidingPanels/GridPanel/GridPanelExample.brs index 0ff64761..3385caa5 100644 --- a/getting started/NewDeveloperOnboardingSample-master/SampleRSGChannel/components/SlidingPanels/GridPanel/GridPanelExample.brs +++ b/getting started/NewDeveloperOnboardingSample-master/SampleRSGChannel/components/SlidingPanels/GridPanel/GridPanelExample.brs @@ -22,7 +22,7 @@ sub init() m.top.grid = m.postergrid m.readPosterGridTask = createObject("roSGNode", "ContentReader") - m.readPosterGridTask.uri = "http://api.delvenetworks.com/rest/organizations/59021fabe3b645968e382ac726cd6c7b/channels/1cfd09ab38e54f48be8498e0249f5c83/media.rss" + m.readPosterGridTask.uri = "https://stream-fastly.castr.com/5b9352dbda7b8c769937e459/live_2361c920455111ea85db6911fe397b9e/index.fmp4.m3u8" m.readPosterGridTask.observeField("content", "showpostergrid") m.readPosterGridTask.control = "RUN" end sub diff --git a/getting started/NewDeveloperOnboardingSample-master/SampleRSGChannel/components/ZOrderParentChild/PCRenderables/PCRenderablesExample.xml b/getting started/NewDeveloperOnboardingSample-master/SampleRSGChannel/components/ZOrderParentChild/PCRenderables/PCRenderablesExample.xml index 918dc9c0..d697243d 100644 --- a/getting started/NewDeveloperOnboardingSample-master/SampleRSGChannel/components/ZOrderParentChild/PCRenderables/PCRenderablesExample.xml +++ b/getting started/NewDeveloperOnboardingSample-master/SampleRSGChannel/components/ZOrderParentChild/PCRenderables/PCRenderablesExample.xml @@ -13,7 +13,7 @@ id = "examplePoster" width = "512" height = "288" - uri = "http://sdktestinglab.com/Tutorial/images/videopg.jpg" > + uri = "http://www.sdktestinglab.com/Tutorial/images/videopg.jpg" > + uri = "http://www.sdktestinglab.com/Tutorial/images/videopg.jpg" />