"dacian_roman23" wrote:
Anyone else who had problems with the video player in 7.5 firmware ? When I try to play a video, I can only hear the audio but the screen is purple.
"EnTerr" wrote:"dacian_roman23" wrote:
Anyone else who had problems with the video player in 7.5 firmware ? When I try to play a video, I can only hear the audio but the screen is purple.
Wrong place! Use the Centercode forum to discuss unreleased firmware, since under NDA.
"dacian_roman23" wrote:
Yes, sorry for that.Tried to delete the post but there's no option.
EnTerr, do you know what could be the problem posted on the previous page, with the itemContentChanged function that gets called 2 times for the same item ?
"EnTerr" wrote:"dacian_roman23" wrote:
Yes, sorry for that.Tried to delete the post but there's no option.
You can delete posts, with the "minor clarification" that deletion is buggy - often it tells me i am not allowed to delete posts but with repeated attempts it eventually does do it. Go figure.EnTerr, do you know what could be the problem posted on the previous page, with the itemContentChanged function that gets called 2 times for the same item ?
No, sorry - just by skimming at that i couldn't. Some ideas though:
- try using callback function with the optional roSgNodeEvent param - that param may give you insight what's going on
- if that does not help, try poking the Co's EV-angelists or confessional priests ('tis their job)
- if that does not help, let us know WTF 🙂 exactly is that "SimpleRowList example" (searching for "SimpleRowList" in TFM shows nothing; not your fault, it's the Co that can't get their examples in a row)
"dacian_roman23" wrote:"EnTerr" wrote:
- try using callback function with the optional roSgNodeEvent param - that param may give you insight what's going on
- if that does not help, try poking the Co's EV-angelists or confessional priests ('tis their job)
- if that does not help, let us know WTF 🙂 exactly is that "SimpleRowList example" (searching for "SimpleRowList" in TFM shows nothing; not your fault, it's the Co that can't get their examples in a row)
This is the example I was talking about.
https://sdkdocs.roku.com/display/sdkdoc ... leChannels - The SimpleRowList sample download
"EnTerr" wrote:"dacian_roman23" wrote:"EnTerr" wrote:
- try using callback function with the optional roSgNodeEvent param - that param may give you insight what's going on
- if that does not help, try poking the Co's EV-angelists or confessional priests ('tis their job)
- if that does not help, let us know WTF 🙂 exactly is that "SimpleRowList example" (searching for "SimpleRowList" in TFM shows nothing; not your fault, it's the Co that can't get their examples in a row)
This is the example I was talking about.
https://sdkdocs.roku.com/display/sdkdoc ... leChannels - The SimpleRowList sample download
Ah - apparently should have searched for "SimpleRowList.zip" and not just "SimpleRowList". Confounding search in Confluence.
Did you try the first 2 suggestions?
"dacian_roman23" wrote:"EnTerr" wrote:
- try using callback function with the optional roSgNodeEvent param - that param may give you insight what's going on
- if that does not help, try poking the Co's EV-angelists or confessional priests ('tis their job)
Not sure how to get the screen port in the SimpleRowListItem, and if I try to create a new message port, pass it to the observeField method and then wait for that port then the message is invalid.
sub callback_function(message as Object)
...
end sub
To whom should I write, can you please give me a name /user ?
"EnTerr" wrote:"dacian_roman23" wrote:"EnTerr" wrote:
- try using callback function with the optional roSgNodeEvent param - that param may give you insight what's going on
- if that does not help, try poking the Co's EV-angelists or confessional priests ('tis their job)
Not sure how to get the screen port in the SimpleRowListItem, and if I try to create a new message port, pass it to the observeField method and then wait for that port then the message is invalid.
No, no port - use the "first form", just declare the (optional) parameter as shown and when your fn is called, there will be a roSGNodeEvent inside, whose content you can explore:sub callback_function(message as Object)
...
end subTo whom should I write, can you please give me a name /user ?
RokuChrist, RokuTomC, RokuDanny, RokuLeoW AFAIK
Ok. I'll see what I can do.Thanks EnTerr !
function init()
m.sgConfig =getSGConfig()
m.top.observeField("itemContent", "itemContentChanged")
initFonts()
end function
function itemContentChanged(msg)
m.itemData = m.top.itemContent.itemData
stop
end function
"dacian_roman23" wrote:
If I declare the callback in this way and I add the optional parameter (msg) then the itemContentChanged it's not triggered 😞