Pessoal, existe algum jeito melhor de referenciar um componente dentro de uma view ou eu realmente tenho que ir de parent em parent?
<view name="janelaCarro" x="310" y="170" visible="false">
<view name="estoque" x="20" visible="false" >
<view layout="axis: x; spacing: 5" >
<text onclick="parent.parent.parent.janelaAlvo.componenteAlvo.setVisible(true);">Fabrica</text>
</view>
</view>
<view name="janelaAlvo">
<edittext name="componenteAlvo" visible="false" />
</view>
</view>