📄 testingcase10.js
字号:
//*****************************************************************************
// A Practical Guide to Script-Driven Software Development
// Author: Qiming Lu Date: 5/1/2006
//*****************************************************************************
// Testing Case 10: retrieve variables and invoke functions of scripts from the C++ side
Debugger.addBlankLine(1);
Debugger.trace("Testing Case 10", "set/get value to script variables");
Debugger.trace("Testing Case 10", "invoke script functions");
var BOOK_TITLE = "A Practical Guide to Script-Driven Software Development";
var bookCount = 5000;
function showMessage(msg)
{
Debugger.trace("showMessage", msg);
}
Application.reviewScripts();
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -