belltown
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2014
01:23 PM
Re: SDK Docs: links to fix, missing/broken/etc
In the Component Reference, ifPosterScreen.SetListStyle() lists the "rounded-rect-16x9-generic" poster style, which is not implemented for the roPosterScreen component, only on the roSpringboard.
See http://forums.roku.com/viewtopic.php?p=250840
See http://forums.roku.com/viewtopic.php?p=250840
belltown
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-15-2014
06:33 PM
Re: SDK Docs: links to fix, missing/broken/etc
belltown
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-21-2014
10:23 AM
Re: SDK Docs: links to fix, missing/broken/etc
belltown
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2014
12:04 AM
Re: SDK Docs: links to fix, missing/broken/etc

Komag
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2015
01:29 PM
Re: SDK Docs: links to fix, missing/broken/etc
FIXED
In Brightscript Language Reference, section FOR EACH, brackets are used instead of parentheses:
http://sdkdocs.roku.com/display/sdkdoc/ ... emINobject
In the Example, for deleting a key is says:
http://sdkdocs.roku.com/display/sdkdoc/ ... emINobject
In the Example, for deleting a key is says:
aa.delete[n]should be
aa.delete(n)
EnTerr
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-31-2015
09:52 AM
Re: SDK Docs: links to fix, missing/broken/etc
- ifAppManager.GetScreensaverTimeout() is undocumented but apparently needed (due to black SS bubons)
ifAudioResource.maxSimulStreams() is in use but undocumented2015-04-24- there is a discrepancy between documented vs existing interfaces - see list at viewtopic.php?f=34&t=73727&start=15#p457079
lmarder
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-25-2015
11:10 AM
Re: SDK Docs: links to fix, missing/broken/etc
Fixed.
http://sdkdocs.roku.com/display/sdkdoc/roPosterScreen
is missing an opening parenthesis
poster.SetBreadcrumbText"[location1]", "[location2]")
is missing an opening parenthesis

Komag
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2015
01:28 AM
Re: SDK Docs: links to fix, missing/broken/etc
In 3.7.10 Logical and Bitwise Operators, (BrightScript Language Reference)
The example seems wrong:
But if count is zero, then 0 > 0 is false so it WILL evaluate total / count and cause the runtime error
Probably it should be:
The example seems wrong:
if count > 0 and (total / count) > 33 then ...
Because of minimal evaluation, this will work correctly even when count is zero
But if count is zero, then 0 > 0 is false so it WILL evaluate total / count and cause the runtime error
Probably it should be:
if count >= 0 and (total / count) > 33 then ...
Because of minimal evaluation, this will work correctly even when count is zero

Komag
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2015
01:34 AM
Re: SDK Docs: links to fix, missing/broken/etc
Fixed.
(BrightScript Language Reference) 4.9 Scope
Typo: it should be "in an object" (not "and")
If in function scope and that function is not a method in and object, "m." also references the global associative array accessed with GetGlobalAA().
Typo: it should be "in an object" (not "and")

RokuMarkn
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2015
07:42 AM
Re: SDK Docs: links to fix, missing/broken/etc
"Komag" wrote:
In 3.7.10 Logical and Bitwise Operators, (BrightScript Language Reference)
The example seems wrong:if count > 0 and (total / count) > 33 then ...
Because of minimal evaluation, this will work correctly even when count is zero
But if count is zero, then 0 > 0 is false so it WILL evaluate total / count and cause the runtime error
The example is correct. When the first clause of an AND is false, the second doesn't need to be evaluated.
--Mark