Print problems!

I May have posted about this a few weeks back, and I still have not figured out wtf is going on!

Anyway when you click the print button (tools tab)…the print dialog comes up…and the printer gets sent a job, but no page prints…similarly when you save to pdf, the save dialogbox comes up, and if you try to save it as an existing file, it even asks you if you want to replace it…but it never creates the file…any ideas?

www.expocadvr.com/new/default.html


printButton.onRelease = function()
{
    _root.hideToolTip(this);
    clearInterval(_root.myInterval);

    var pj:PrintJob = new PrintJob();
    var mc:MovieClip = _root.CAD_mc;
    var bmp:BitmapData = new BitmapData(1120,720,true);
    bmp.draw(mc);
    _root.createEmptyMovieClip("bmp_mc",650000);
    _root.bmp_mc.attachBitmap(bmp,0,"auto",false);
    _root.bmp_mc._visible = false;
    var bInit:Boolean = pj.start();
    if(pj.start())
    {
        _root.bmp_mc._width = 800;
        _root.bmp_mc._yscale = _root.bmp_mc._xscale;
        pj.addPage(_root.bmp_mc, null, {printAsBitmap:true});
        //pj.addPage(_root.bmp_mc);
        pj.send();
        bmp.dispose();
        _root.bmp_mc.swapDepths(1979);
        _root.bmp_mc.removeMovieClip();
    }
}