AS2打印外部图像

时间:2012-03-01 13:00:44

标签: actionscript

我有这个脚本,我可以打印我在代码中指出的电影。

function print_page()
{
    var my_pj = new PrintJob();
    var myResult = my_pj.start();
    if (myResult)
    {
        myResult = my_pj.addPage("img_mc", null, {printAsBitmap:true}, 1);
        my_pj.send();
        delete my_pj;
        trace("ok");
    }
}

我需要知道,如何打印一些在flahs之外的图像...点击MC ....但我需要在AS2 ...

求助!

1 个答案:

答案 0 :(得分:0)

这是我使用PrintJob()和AS2

打印外部图像的唯一方法
#include "mc_tween2.as"

_root.myholder.loadMovie("teste_labirinto.jpg");
_root.myholder._x = 0; //i set the x and y position of image out of the screen area!
_root.myholder._y = 990; //

function print_page()
{
    var my_pj = new PrintJob();
    var myResult = my_pj.start();
    if (myResult)
    {
        my_pj.orientation = portrait;
        myResult = my_pj.addPage("myholder", {xMin:0, xMax:600, yMin:0, yMax:800}, {printAsBitmap:true}, 1);
        my_pj.my_pj.send();
        delete my_pj;
        trace("ok");
    }
}

btn.onRelease = function()
{
    print_page();
};