📄 testingcase12.js
字号:
//*****************************************************************************
// A Practical Guide to Script-Driven Software Development
// Author: Qiming Lu Date: 5/1/2006
//*****************************************************************************
// Testing Case 12: support some kind of timer for scripts
Debugger.addBlankLine(1);
Debugger.trace("Testing Case 12", "support some kind of timer for scripts");
Application.createTimer(1000, false, timerProc1);
Application.createTimer(2000, true, timerProc2);
function timerProc1()
{
Debugger.trace("Info", "timerProc1() is executed!");
}
function timerProc2()
{
Debugger.trace("Info", "timerProc2() is executed!");
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -