Casio Naurtech CETerm Ver.5.5 Scripting Guide Manual do Utilizador Página 105

  • Descarregar
  • Adicionar aos meus manuais
  • Imprimir
  • Página
    / 164
  • Índice
  • MARCADORES
  • Avaliado. / 5. Com base em avaliações de clientes
Vista de página 104
NAURTECH WEB BROWSER AND TERMINAL EMULATION FOR WINDOWS CE AND WINDOWS MOBILE
CETerm Scripting Guide Page 105
// Run any post-execution actions
if (typeof this.OnDone == "function")
{
this.OnDone( true );
}
}
}
else
{
// No match, schedule again
if (this.checkCount++ < this.maxCheckCount)
{
this.Schedule();
}
else
{
if (!this.silent)
{
OS.Alert( "Expect failed to find text \"" +
target + "\"" );
}
if (typeof this.OnDone == "function")
{
// Done but failed
this.OnDone( false );
}
}
}
}
}
function ExpectMonitor_Schedule()
{
// Schedule next check
var script = "ExpectMonitor.Instances[" +
this.session + "].Check()";
this.timer = CETerm.SetTimeout( script, this.checkDelta );
}
function ExpectMonitor_Start()
{
// Cleanup first in case restarted
this.Abort();
// Initialize state
this.state = 0;
this.checkCount = 0;
this.Check();
}
Vista de página 104
1 2 ... 100 101 102 103 104 105 106 107 108 109 110 ... 163 164

Comentários a estes Manuais

Sem comentários