Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

As3 List down the Printers that available in the system

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

like image 307
Rukshan Dangalla Avatar asked Dec 03 '25 18:12

Rukshan Dangalla


1 Answers

This works for me:

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]);
like image 191
Breign Avatar answered Dec 06 '25 08:12

Breign