As3列出系统中可用的打印机 [英] As3 List down the Printers that available in the system

查看:109
本文介绍了As3列出系统中可用的打印机的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在ActionScript 3中列出系统中的所有打印机. as3属性打印机不起作用.

How to list down all the printers in system in ActionScript 3. as3 property printers not working.

推荐答案

这对我有用:

var printerList:Vector.<String> = PrintJob.printers;
var p:ArrayCollection = new ArrayCollection();
if (printerList) for (var i:int = 0; i < printerList.length; i++) p.addItem(printerList[i]);

这篇关于As3列出系统中可用的打印机的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆