moz0510ex.txt

来自「mozilla developer book examples.」· 文本 代码 · 共 17 行

TXT
17
字号
// chooseApp:  Open file picker and prompt user for application.
chooseApp: function( ) {
  var nsIFilePicker = Components.interfaces.nsIFilePicker;
  var fp =
     Components.classes["@mozilla.org/filepicker;1"].
         createInstance( nsIFilePicker );
  fp.init( this.mDialog,
     this.getString( "chooseAppFilePickerTitle" ),
     nsIFilePicker.modeOpen );
  fp.appendFilters( nsIFilePicker.filterAll );
  if ( fp.show( ) == nsIFilePicker.returnOK && fp.file ) {
  this.choseApp   = true;
  this.chosenApp  = fp.file;
  // Update dialog.
  this.updateApplicationName(this.chosenApp.unicodePath);
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?