如何删除这个?

发布于 2024-08-22 05:43:22 字数 264 浏览 10 评论 0原文

我正在使用Flash播放器,当我右键单击它时,它显示如下 替代文本 http://www.freeimagehosting.net/uploads/8a4fbddec9.png

如何当我右键单击播放器时可以删除 MediaXxxScript.com 吗?

请帮我。

提前致谢。

Am using the flash player, when i right click on it, its showing like this
alt text http://www.freeimagehosting.net/uploads/8a4fbddec9.png

How i can remove MediaXxxScript.com when i rightclick on the player?

please help me.

Thanks in advance.

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

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

发布评论

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

评论(1

我恋#小黄人 2024-08-29 05:43:22

添加此操作是通过上下文菜单 flash.ui.ContextMenu 通过添加上下文菜单项 flash.ui.ContextMenuItem 来完成的。您正在使用的类将添加这些,因此您可以要么找到发生这种情况的位置并将其删除,要么在创建 meny 后添加类似的内容来覆盖它

    var _menu:ContextMenu = new ContextMenu();
    _menu.hideBuiltInItems();
    this.contextMenu = _menu;

Adding this is done through the context menu flash.ui.ContextMenu by adding context menu items flash.ui.ContextMenuItem The class you are using would be adding these, so you can either find where that happens and remove it or add something like this after that meny is created to override it

    var _menu:ContextMenu = new ContextMenu();
    _menu.hideBuiltInItems();
    this.contextMenu = _menu;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文