检测前端令牌是否可用于执行

发布于 2024-12-24 17:33:00 字数 237 浏览 2 评论 0原文

如何检测前端令牌是否可以执行?或者,如何检测前端令牌是否执行失败?

示例:编辑->如果未选择任何内容,则复制命令不可用。在这种情况下,FrontEndTokenExecute["Copy"]只会发出蜂鸣声,但它没有给我任何(编程)指示它已失败。

How can I detect if a front end token is available to execute? Alternately, how can I detect if a front end token failed to execute?

Example: the Edit -> Copy command is not available if nothing is selected. FrontEndTokenExecute["Copy"] will simply beep in this case, but it gives me no (programmatic) indication that it has failed.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

坚持沉默 2024-12-31 17:33:00

我找到了一种方法来处理你的第二个问题,但它并不优雅:

  1. Preferences > 中接口>消息和警告操作次要用户界面警告设置为蜂鸣声并打印到控制台
  2. 确保消息窗口中至少有一条错误消息
  3. 获取以下句柄消息窗口笔记本(使用 Notebooks[] 左右)
  4. 使用以下命令将最后一个单元格存储在消息笔记本中
    NotebookGet[NotebookObject[FrontEndObject[LinkObject["55d_shm", 1, 1]], 1]]/。笔记本[{___,单元格[a___]},___]:> Cell[a](当然,您的句柄看起来会有所不同)
  5. 您的调用:FrontEndTokenExecute["Copy"]
  6. 获取最后一条错误消息并检查它是否与步骤 4 中存储的消息不同。
  7. 错误单元格看起来像Cell["您试图编辑不可编辑的单元格。您可以将 \
    通过在“单元格属性”中选择“可编辑单元格”来编辑单元格
    子菜单。", "消息", "消息", "MSG", 页宽 -> 窗口宽度,
    显示单元格标签 ->确实,CellChangeTimes -> {3.534442831*10^9},
    单元标签 -> "cantEditLockedCell"]
  8. 采取适当的行动

I found a method to deal with your second question, but it's not elegant:

  1. In Preferences > Interface > Message and Warning actions set Minor user interface warnings to Beep and Print to Console
  2. Make sure there is at least one error message in the message window
  3. Obtain a handle to the message window notebook (using Notebooks[] or so)
  4. Store the last cell in the message notebook using
    NotebookGet[NotebookObject[FrontEndObject[LinkObject["55d_shm", 1, 1]], 1]]/. Notebook[{___, Cell[a___]}, ___] :> Cell[a] (your handle will look differently, of course)
  5. Your call: FrontEndTokenExecute["Copy"]
  6. Get the last error message and check whether it differs from the one stored in step 4.
  7. The error cell looks like Cell["You tried to edit a cell that is not editable. You can make the \
    cell editable by choosing Cell Editable in the Cell Properties \
    submenu.", "Message", "Message", "MSG", PageWidth -> WindowWidth,
    ShowCellLabel -> True, CellChangeTimes -> {3.534442831*10^9},
    CellTags -> "cantEditLockedCell"]
  8. Act appropriately
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文