当前位置: 首页 > 文档资料 > tinyMCE 帮助文档 >

tinymce-Shortcuts

优质
小牛编辑
127浏览
2023-12-01

Examples

editor.shortcuts.add('ctrl+a', "description of the shortcut", function() {});
editor.shortcuts.add('meta+a', "description of the shortcut", function() {}); // "meta" maps to Command on Mac and Ctrl on PC
editor.shortcuts.add('ctrl+alt+a', "description of the shortcut", function() {});
editor.shortcuts.add('access+a', "description of the shortcut", function() {}); // "access" maps to ctrl+alt on Mac and shift+alt on PC

Methods

namesummarydefined by
add()Adds a keyboard shortcut for some command or function.tinymce.Shortcuts
remove()Remove a keyboard shortcut by pattern.tinymce.Shortcuts

Methods

add

add(pattern:String, desc:String, cmdFunc:String, scope:Object):Boolean

Adds a keyboard shortcut for some command or function.

Parameters
  • pattern (String) - Shortcut pattern. Like for example: ctrl+alt+o.
  • desc (String) - Text description for the command.
  • cmdFunc (String) - Command name string or function to execute when the key is pressed.
  • scope (Object) - Optional scope to execute the function in.
Return value
  • Boolean - true/false state if the shortcut was added or not.

remove

remove(pattern:String):Boolean

Remove a keyboard shortcut by pattern.

Parameters
  • pattern (String) - Shortcut pattern. Like for example: ctrl+alt+o.
Return value
  • Boolean - true/false state if the shortcut was removed or not.

Can't find what you're looking for? Let us know.

Except as otherwise noted, the content of this page is licensed under the Creative Commons BY-NC-SA 3.0 License, and code samples are licensed under the Apache 2.0 License.

最后更新:

类似资料

  • 在好使用的系统中和专业系统中,快捷键是不同的。作为专业的开发人员,你也许会在你的应用程序上花很多时间,每一个快捷键都能使你的工作效率得到提高。Qt Creator的开发者也这样想,并且在应用程序中加入了许许多多的快捷键。 我们列出了一些基本的快捷键操作: Ctrl+B - 构建项目 Ctrl+R - 运行项目 Ctrl+Tab - 切换已打开的文档 Ctrl+k - 打开定位器 Esc - 返回

  • The keyboard-shortcuts component toggles global keyboard shortcuts. The keyboard-shortcuts component applies only to the <a-scene>element. Example < a-scene

  • 打包和分发应用程序是桌面应用程序开发过程中不可或缺的一部分。 由于Electron是一个跨平台的桌面应用程序开发框架,所有平台的应用程序的打包和分发也应该是一种无缝的体验。 Electron社区已经创建了一个项目, electron-packager ,为我们照顾同样的事情。 它允许我们通过JS或CLI打包和分发我们的Electron应用程序与特定于操作系统的软件包(.app,.exe等)。 支持

  • 我们通常记住我们每天在PC上使用的所有应用程序的某些快捷方式。 为了使您的应用程序直观且易于用户访问,您必须允许用户使用快捷方式。 我们将使用globalShortcut模块在我们的应用程序中定义快捷方式。 请注意, Accelerators是包含多个修饰符和键代码的字符串,由+字符组合。 这些加速器用于在整个应用程序中定义键盘快捷键。 让我们考虑一个示例并创建一个快捷方式。 为此,我们将按照对话

  • 关于快捷方式 您可以仅使用键盘导航Eclipse用户界面 - 使用与菜单和菜单项关联的助记符。 使用与对话框或视图或编辑器中的控件关联的助记符。 使用与工具栏上的菜单项和按钮等操作关联的加速器。 可以通过单击Ctrl + Shift + L调用的“键辅助”操作向我们显示Eclipse中可用的所有加速键或快捷键。 可以使用“键”首选项页面更改分配给操作的组合键。 Eclipse中有许多命令或操作,没

  • 本章详细讲述了Python中的各种内置函数,文件I/O操作和重载概念。 Python Built-in Functions Python解释器有许多称为内置函数的函数,可以随时使用。 在其最新版本中,Python包含68个内置函数,如下表所示 - 内置功能 abs() dict() help() min() setattr() all() dir() hex() next() slice() an