jf-roku/components/photos/LoadPhotoTask.brs
2022-02-06 08:37:02 -07:00

17 lines
330 B
Plaintext

sub init()
m.top.functionName = "loadItems"
end sub
sub loadItems()
item = m.top.itemContent
if item <> invalid
params = {
maxHeight: 1080
maxWidth: 1920
}
m.top.results = ImageURL(item.Id, "Primary", params)
else
m.top.results = invalid
end if
end sub