Pessoal, estou tentando chamar uma view, quero que ela fique visible="false", mas quando clicar em lancamentos, ela aparece e apague as outras que estiverem visible="true"...
<?xml version="1.0" encoding="UTF-8" ?>
<canvas>
<!-- BARRA DE MENUS -->
<!-- BARRA DE MENUS -->
<!-- BARRA DE MENUS -->
<windowpanel width="1020" height="580" align="center" valign="bottom">
<menubar name="mbar" align="right">
<menu name="mcad" id="MenuCad">Cadastros
<menuitem text="Cadastros/>
</menu>
<menu name="mlan" id="MenuLan">Lançamentos
<menuitem text="Lançamentos" onselect=" CHAMA A VIEW(MAS COMO) "/>
</menu>
<menu name="mrel" id="MenuRel"> Relatórios
<menuitem text="Relatórios"/>
</menu>
<menu name="majuda" id="MenuAjuda"> Ajuda
<menuitem text="Sobre">
</menuitem>
</menu>
</menubar>
<!-- QUERO QUE CHAME ESSA VIEW AKI -->
<view layout="spacing:6" name="lancamento" height="580" width="990"
align="center" valign="bottom" y="55">
<text height="80"></text>
<text> Nome: </text>
<edittext height="18" width="20"></edittext>
<text> Prefixo: </text>
<edittext height="18" width="30"></edittext>
<simplelayout axis="y" />
<text x="10" multiline="true" width="200">
</text>
<!-- ABAS NA TELA DE LANÇAMENTOS -->
<!-- ABAS NA TELA DE LANÇAMENTOS -->
<!-- ABA "LANÇAMENTO" -->
<tabs height="430" tabclass="tab">
<tabpane text="Lançamento">
<text>Prefixo: </text>
<edittext x="105" height="18" width="105"></edittext>
<text y="25">Data: </text>
<edittext x="105" y="25" height="18" width="105"></edittext>
<text y="52">Hora Trabalhada: </text>
<edittext x="105" y="52" height="18" width="105"></edittext>
<text y="79">Combustível: </text>
<edittext x="105" y="79" height="18" width="105"></edittext>
<text y="106">Óleo Motor: </text>
<edittext x="105" y="106" height="18" width="105"></edittext>
<text y="133">Óleo Trasmissor: </text>
<edittext x="105" y="133" height="18" width="105"></edittext>
<text y="160">Óleo Hidráulico: </text>
<edittext y="160" x="105" height="18" width="105"></edittext>
<text x="250" y="25">Eixo Traseiro: </text>
<edittext x="359" y="25" height="18" width="105"></edittext>
<text y="52" x="250">Eixo Dianteiro: </text>
<edittext x="359" y="52" height="18" width="105"></edittext>
<text y="79" x="250">Comando Final D: </text>
<edittext x="359" y="79" height="18" width="105"></edittext>
<text y="106" x="250">Comando Final E: </text>
<edittext x="359" y="106" height="18" width="105"></edittext>
<text y="133" x="250">Caixa Redutora: </text>
<edittext x="359" y="133" height="18" width="105"></edittext>
<text y="160" x="250">Graxa: </text>
<edittext x="359" y="160" height="18" width="105"></edittext>
</tabpane>
<!-- ABA LUBRIFICAÇÃO -->
<tabpane text="Lubrificação">
<text>Lubrificação</text>
</tabpane>
<!-- ABA CONFIRMA LUBRIFICAÇÃO -->
<tabpane text="Confirma Lubrificação">
<text>Confirma Lubrificação</text>
</tabpane>
<!-- ABA MANUTENÇÃO -->
<tabpane text="Manutenção">
<text>Manutenção</text>
</tabpane>
<!-- ABA CONFIRMA MANUTENÇÃO -->
<tabpane text="Confirma Manutenção">
<text>Lubrificação</text>
</tabpane>
<!-- ABA MAQUINA PARADA-->
<tabpane text="Maquina Parada">
<text> Maquina Parada </text>
</tabpane>
</tabs>
</view>
</windowpanel>
</canvas>
se puderem ajudar..agradeço.

