📄 wizard.ssc
字号:
<!--SCRIPT PSOBJMOD
import( site.GetRootDocument().location + "/ObjMod80.ssc" );
session.active = true;
InitObjects(session);
-->
<!--SCRIPT // {{ SCRIPT()
class wizardPage( type, title, explanation, question, choices, selected, next, help ) {
this.type = type;
this.title = title;
this.explanation = explanation;
this.question = question;
this.choices = choices;
this.selected = selected;
this.next = next;
this.help = help;
}
class itemPosition( left, top, width, height ) {
this.left = left;
this.top = top;
this.width = width;
this.height = height;
}
class wizardItem( type, question, choices, selected, position, help ) {
this.type = type;
this.question = question;
this.choices = choices;
this.selected = selected;
this.position = position;
this.help = help;
}
class wizardPictureItem( picture, position )
{
this.type = "picture";
this.picture = picture;
this.position = position;
}
class wizardLineItem( position )
{
this.type = "line";
this.position = position
}
class wizardAdvanced( title, explanation, items, next ) {
this.type = "advanced";
this.title = title;
this.explanation = explanation;
this.items = items;
this.next = next;
}
// }}
-->
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -