Forum Discussion
3 Replies
- tintumonkbVisitoranyone ?
- tintumonkbVisitorHere is my source code
port = CreateObject("roMessagePort")
screen = CreateObject("roVideoScreen")
screen.SetMessagePort(port)
screen.SetPositionNotificationPeriod(1)
screen.SetCertificatesFile("common:/certs/ca-bundle.crt")
screen.SetCertificatesDepth(2)
screen.InitClientCertificates()
screen.SetContent(content)
while true
screen.Show() - belltownRoku GuruRemove the calls to SetCertificatesDepth() and InitClientCertificates().
And what's that while true statement doing before your call to screen.show()?
If it still doesn't work, then print out the roVideoScreenEvent values. You could also use roSystemLog events to get more information, and check your server logs.