如何通过单击上下文菜单中的打印从 Flex 应用程序进行打印
当我单击 Adobe 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“打印”上下文菜单项不适合从 Flex 应用程序进行打印。它更适合使用 Flash Professional 创建的 Flash 应用程序。您应该实现自己的打印功能。
如果您希望从上下文菜单打印,那么您可以通过 Flex 中的自定义“上下文菜单” 创建一个 ="http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/ui/ContextMenu.html" rel="nofollow noreferrer">ContextMenu 和 ContextMenuItem 类。另请参阅 使用菜单 href="http://help.adobe.com/en_US/as3/dev/as3_devguide.pdf" rel="nofollow noreferrer">AS3 开发人员指南。
要更改上下文菜单:
不要忘记您不能使用
“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:
Don't forget that you can't use the
"Print"
caption, because it is reserved for the internal print function (see Restrictions).