jf-roku/components/data/options-button.xml

19 lines
439 B
XML
Raw Normal View History

2019-03-19 04:25:41 +00:00
<?xml version="1.0" encoding="utf-8" ?>
<component name="OptionsButton" extends="ContentNode">
<interface>
<field id="escape" type="boolean" alwaysNotify="true" />
<function name="press" />
</interface>
2019-03-22 03:27:31 +00:00
<script type="text/brightscript" uri="pkg:/source/utils/config.brs" />
2019-03-19 04:25:41 +00:00
<script type="text/brightscript">
<![CDATA[
sub init()
end sub
sub press()
m.top.escape = true
end sub
]]>
</script>
</component>