XKCDViewer/components/TypePad.xml

26 lines
840 B
XML
Raw Permalink Normal View History

2023-12-18 03:33:33 +00:00
<?xml version="1.0" encoding="utf-8" ?>
<!--********** Copyright 2016 Roku Corp. All Rights Reserved. **********-->
<component name = "TypePad" extends = "DynamicCustomKeyboard" >
<script type = "text/brightscript" >
<![CDATA[
sub init()
palette = createObject("roSGNode", "RSGPalette")
m.top.keyGrid.keyDefinitionUri = "pkg:/images/coolKeyboardLayoutKDF.json"
m.top.keyGrid.horizWrap = true
m.top.hideTextBox = true
palette.colors = {KeyboardColor: "0xFFFFFFFF",
PrimaryTextColor: "0x000000FF",
SecondaryItemColor: "0x808080FF",
FocusColor: "0x000000FF",
FocusItemColor: "0xFFFFFFFF" }
m.top.keyGrid.palette = palette
end sub
]]>
</script>
</component>