-
Notifications
You must be signed in to change notification settings - Fork 324
Expand file tree
/
Copy pathPCRenderablesExample.xml
More file actions
42 lines (31 loc) · 1.25 KB
/
PCRenderablesExample.xml
File metadata and controls
42 lines (31 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?xml version = "1.0" encoding = "utf-8" ?>
<!--********** Copyright 2018 Roku Corp. All Rights Reserved. **********-->
<component name = "PCRenderablesExample" extends = "Group" >
<script type = "text/brightscript" uri = "pkg:/components/ZOrderParentChild/PCRenderables/PCRenderablesExample.brs" />
<children >
<!-- The examplePoster is the parent of bottomRectangle and bottomLabel -->
<Poster
id = "examplePoster"
width = "512"
height = "288"
uri = "http://www.sdktestinglab.com/Tutorial/images/videopg.jpg" >
<!-- The bottomRectangle is the child of examplePoster and parent of bottomLabel -->
<Rectangle
id = "bottomRectangle"
translation = "[ 0, 244 ]"
width = "512"
height = "34"
color = "0x1010EBFF" >
<!-- The bottomLabel is child of bottomRectangle and inherits the translation field of bottomRectangle -->
<Label
id = "bottomLabel"
width = "512"
height = "34"
font = "font:SmallBoldSystemFont"
text = "All the Best Videos...All the Time!"
horizAlign = "center"
vertAlign = "center" />
</Rectangle>
</Poster>
</children>
</component>