Olá pessoal,
Estou tentando rodar uma aplicação que exibe uma página HTML, no entanto não estou conseguindo que esta página seja exibida corretamente. Abaixo, segue o código que estou utilizando:
<html>
<body>
<form>
<table align="center">
<tr><td>Agencia:</td>
<td><input type="text"/></td></tr>
<tr><td>Conta:</td>
<td><input type="text"/></td></tr>
<tr><td>Senha:</td>
<td><input type="text"/></td></tr>
</table>
<input type="submit" value="Validar"/>
<input type="submit" value="Cancelar"/>
</form>
</body>
</html>
O Ginga-NCL Player acusou erros e não exibiu nada. Utilizando a máquina virtual, apareceram traços ao invés de textfields e texto entre colchetes no lugar de botões.
Obrigado pela atenção,
Att.
Gabriel Paduan
Autor: Gabriel Paduan
1212 comentários
<html>
<body align="left" bgcolor="#00FF55" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table cellspacing="0" valign="top" width=100% heigth=100%>
<tr>
<td>
<img src="tela2.png">
</td>
</tr>
<table>
</body>
</html> Esse é o comportamento esperado do player? Grato pela atenção, []'s Bengt.
<body>
<form>
<table align="center">
<tr><td>Agencia:</td>
<td><input type="text"/></td></tr>
<tr><td>Conta:</td>
<td><input type="text"/></td></tr>
<tr><td>Senha:</td>
<td><input type="text"/></td></tr>
</table> <input type="submit" value="Validar"/>
<input type="submit" value="Cancelar"/>
</form>
</body>
</html> Att, Rafael Savignon.
<head>
<title>Teste</title>
</head>
<body>
Agencia:<input type="text"/>
</body>
</html> Obrigado pela atenção, Att., Gabriel Paduan
<connectorBase>
<importBase documentURI="connectors/composerConnectorBase.conn" alias="connBase"/>
</connectorBase> <regionBase>
<region id="rgTV" width="1280" height="1024">
<region id="rgVideo1" width="320" height="240"/>
<region id="rgPage" width="320" height="240" left="320"/>
<region id="rgBotaoVermelho" width="25" height="25" top="240"/>
<region id="rgBotaoVerde" width="25" height="25" top="240" left="25"/>
</region>
</regionBase> <descriptorBase>
<descriptor id="dVideo1" region="rgVideo1"/>
<descriptor id="dPage" region="rgPage"/>
<descriptor id="dBotaoVerde" region="rgBotaoVerde"/>
<descriptor id="dBotaoVermelho" region="rgBotaoVermelho"/>
</descriptorBase>
</head> <body>
<port id="pInitialize" component="video1"/>
<media type="video/mpeg" id="video1" src="media/video1.mpg" descriptor="dVideo1"/>
<media type="image/gif" id="botaoVerde" src="media/botao_verde.gif" descriptor="dBotaoVerde"/>
<media type="image/gif" id="botaoVermelho" src="media/botao_vermelho.gif" descriptor="dBotaoVermelho"/>
<media type="text/html" id="page" src="media/Form2.html" descriptor="dPage"/>
<link id="lStartPage" xconnector="connBase#onBeginStartN">
<bind component="video1" role="onBegin"/>
<bind component="botaoVerde" role="start"/>
<bind component="botaoVermelho" role="start"/>
</link>
<link id="lStopPage" xconnector="connBase#onEndStopN">
<bind component="video1" role="onEnd"/>
<bind component="page" role="stop"/>
<bind component="botaoVerde" role="stop"/>
<bind component="botaoVermelho" role="stop"/>
</link>
<link id="lSelecionaBotaoVerde" xconnector="connBase#onKeySelectionStopNStartN">
<bind component="botaoVerde" role="onSelection">
<bindParam name="keyCode" value="GREEN"/>
</bind>
<bind component="page" role="start"/>
</link> </body>
</ncl> O erro que acontece é o seguinte: No lugar de textfield, aparece apenas uma linha. Nesse exemplo, o resultado da tela é: Agencia: _________________
Obrigado pela atenção, Att., Gabriel Paduan
Moreno
Carlos