jf-roku/components/data/image.xml
2019-04-20 17:28:28 -05:00

23 lines
641 B
XML

<?xml version="1.0" encoding="utf-8" ?>
<component name="ImageData" extends="ContentNode">
<interface>
<field id="json" type="associativearray" onChange="setFields" />
<field id="imagetype" type="string" />
<field id="size" type="string" />
<field id="height" type="integer" />
<field id="width" type="integer" />
<field id="url" type="string" />
</interface>
<script type="text/brightscript">
<![CDATA[
sub setFields()
json = m.top.json
m.top.imagetype = json.imagetype
m.top.size = json.size
m.top.height = json.height
m.top.width = json.width
end sub
]]>
</script>
</component>