i have created same template for wordpress & joomla. but i dont know how to create preview for this. so i need a same help or tutorium url for create it.
how much is the cost different?
can i withdrawal more as 1000$ to my paypal?
or must be split?
thx all
my current file is done, but i need any nice free flv files, for preview.
where can i get any free flv files? (have the asset library files, but need more)
nobody any idea?
i think the problem is by scalling factor, but i dont have any idea, how to correctly compute.
i use the print class like this
print_bt.onRelease = function(){
// PrintObject
var my_pj:PrintJob = new PrintJob();
// open print windows
if (my_pj.start()) {
// myPage is the image LoderClip
var myPage = con;
var x_max = myPage._width;
var y_max = myPage._height;
var pageAdded:Boolean = false;
if (my_pj.orientation == "portrait") {
// scalling fakto for portrait
myPage._xscale = ((21*28.34)/x_max)*100;
myPage._yscale = ((21*28.34)/x_max)*100;
// add the print area
pageAdded = my_pj.addPage(myPage, {xMin:0, xMax:x_max, yMin:0, yMax:y_max}, {printAsBitmap:true});
}else {
// scalling fakto for landscape
myPage._xscale = ((29.7*28.34)/x_max)*100;
myPage._yscale = ((29.7*28.34)/x_max)*100;
// add the print area
pageAdded = my_pj.addPage(myPage, {xMin:0, xMax:x_max, yMin:0, yMax:y_max}, {printAsBitmap:true});
}
// send image to print
if (pageAdded) {
my_pj.send();
}
}
// delet print job
delete my_pj;
myPage._xscale = 100;
myPage._yscale = 100;
}
its work but if i change the orientation to landscape, by images that width < height is, the image dont scalled corretly, so that the image complete to print. it cutted.
by my current project i will create a function for print the images.
how can i print the image(that loaded in moviClip).
i will use printjob, it works well but, if change the orientation by any images, the print area will be cutted.
how can i print only complete image on paper without cut it.
thx
