jf-roku/components/photos/LoadPhotoTask.brs
2022-05-30 08:59:24 -04:00

17 lines
331 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