We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
<?xml version="1.0" encoding="utf-8" ?> <component name="SomeComponent" extends="Node"> <script type="text/brightscript" uri="pkg:/components/SomeComponent.brs" /> <children> <LayoutGroup id="group" itemSpacings="[25]" layoutDirection="vert" translation="[100, 50]" > </LayoutGroup> </children> </component>
sub init() group = m.top.findNode("group") print "group.itemspacings = " group.itemspacings print "group.layoutDirection = " group.layoutDirection print "group.translation = " group.translation end sub
group.itemspacings = <Component: roArray> = [] group.layoutDirection = vert group.translation = <Component: roArray> = []
group.itemspacings = <Component: roArray> = [25] group.layoutDirection = vert group.translation = <Component: roArray> = [100, 50]
The text was updated successfully, but these errors were encountered:
width, height properties defined in the XML file aren't updated too.
width
height
Sorry, something went wrong.
No branches or pull requests
While running tests itemSpacings and translation aren't updated properly if they are defined in the xml file.
SomeComponent.xml
SomeComponent.brs
Actual result:
Expected result:
The text was updated successfully, but these errors were encountered: