通过Action的“显示通知”模式和如下所示的其他设置,我可以在屏幕右上角显示一条通知消息:
这是屏幕右上角的通知消息:
现在,使用如下所示的“运行脚本”模式,我想要与上图相同的通知消息:
有没有办法做到这一点?
通过Action的“显示通知”模式和如下所示的其他设置,我可以在屏幕右上角显示一条通知消息:
这是屏幕右上角的通知消息:
现在,使用如下所示的“运行脚本”模式,我想要与上图相同的通知消息:
有没有办法做到这一点?
您可以对一个对象使用“utils.showNotification()”函数,该对象包含 4 个值“title”、“description”、“notificationType”和“duration”。
utils.showNotification({
title: "something",
description: "something",
notificationType: "info", // "info", "success", "warning" or "error" is available
duration: 5 // If "duration" isn't set, 4.5 is set.
});
这是在Action的“运行脚本”模式下显示相同通知消息的代码:
utils.showNotification({
title: "This is title.",
description: "This is description",
notificationType: "info",
duration: 5
});
然后,您可以使用Action的“运行脚本”模式显示相同的通知消息: