AlivePDF icon indicating copy to clipboard operation
AlivePDF copied to clipboard

BUG in setGridPositionOnNextPages (PDF.as)

Open GoogleCodeExporter opened this issue 10 years ago • 0 comments

Ok I think there is a bug in setGridPositionOnNextPages function in PDF.as 
(line 4040) (current revision 277)

public function 
setGridPositionOnNextPages(xvalue:Number=10,yvalue:Number=10):void
{
    nextPageX = yvalue;
    nextPageY = xvalue;
}


the correct code should be:

public function 
setGridPositionOnNextPages(xvalue:Number=10,yvalue:Number=10):void
{
    nextPageX = xvalue;
    nextPageY = yvalue;
}

Do you see the difference?

Original issue reported on code.google.com by [email protected] on 1 Aug 2011 at 6:28

GoogleCodeExporter avatar Oct 22 '15 18:10 GoogleCodeExporter