如何通过单击上下文菜单中的打印从 Flex 应用程序进行打印

发布于 2024-11-18 21:27:10 字数 121 浏览 3 评论 0原文

当我单击 Adob​​e Flash Player 上下文菜单中的“打印”时,我希望我的 Flex 4 应用程序能够打印正确的图片。可能吗?
正确的图片 - 图片与您在屏幕上看到的图片略有不同。我的意思是有些颜色不一样。

I want my flex 4 application to print proper picture when I click on print in context menu of Adobe Flash Player. Is it possible?
Proper picture - picture just a bit different then you see at the screen. I mean some colors are different.

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

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

发布评论

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

评论(1

深居我梦 2024-11-25 21:27:10

“打印”上下文菜单项不适合从 Flex 应用程序进行打印。它更适合使用 Flash Professional 创建的 Flash 应用程序。您应该实现自己的打印功能。

如果您希望从上下文菜单打印,那么您可以通过 Flex 中的自定义“上下文菜单” 创建一个 ="http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/ui/ContextMenu.html" rel="nofollow noreferrer">ContextMenuContextMenuItem 类。另请参阅 使用菜单 href="http://help.adobe.com/en_US/as3/dev/as3_devguide.pdf" rel="nofollow noreferrer">AS3 开发人员指南。

要更改上下文菜单:

var my_cm:ContextMenu = new ContextMenu();
my_cm.hideBuiltInItems();
var printItem:ContextMenuItem = new ContextMenuItem("Print proper image");
my_cm.customItems.push(printItem);
this.contextMenu = my_cm;

Modified Flash Context Menu

不要忘记您不能使用“Print”标题,因为它是为内部打印功能保留的(参见限制)。

The "print" context menu item is not suitable for printing from Flex applications. It is more appropriate for Flash applications created with Flash Professional. You should implement your own printing functionality.

If you wish to print from the context menu then you could create a Custom "context menu" in flex via the ContextMenu and ContextMenuItem classes. See also Working with Menus in the AS3 Developer's Guide.

To change the context menu:

var my_cm:ContextMenu = new ContextMenu();
my_cm.hideBuiltInItems();
var printItem:ContextMenuItem = new ContextMenuItem("Print proper image");
my_cm.customItems.push(printItem);
this.contextMenu = my_cm;

Modified Flash Context Menu

Don't forget that you can't use the "Print" caption, because it is reserved for the internal print function (see Restrictions).

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