⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 moz0510ex.txt

📁 mozilla developer book examples.
💻 TXT
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -