Casio Naurtech CETerm Ver.5.5 Scripting Guide Manual de usuario Pagina 105

  • Descarga
  • Añadir a mis manuales
  • Imprimir
  • Pagina
    / 164
  • Tabla de contenidos
  • MARCADORES
  • Valorado. / 5. Basado en revisión del cliente
Vista de pagina 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 pagina 104
1 2 ... 100 101 102 103 104 105 106 107 108 109 110 ... 163 164

Comentarios a estos manuales

Sin comentarios