Open GoogleCodeExporter opened 9 years ago
I solved them all.
1. Comment the 3 lines below in function addGrid() of PDF.as:
setXY (x +currentGrid.x, y+getY() );
addRow( columnNames,'', rect);
endFill();
2. Change function excapeIt() from PDF.as as:
protected function escapeIt(content:String):String
{
content = findAndReplace('\\','\\\\',content);
content = findAndReplace('\n', "\\n",content);
content = findAndReplace('\r', "\\r",content);
content = findAndReplace('\t', "\\t",content);
content = findAndReplace('\b', "\\b",content);
content = findAndReplace('\f', "\\f",content);
//return findAndReplace(')','\\)',findAndReplace('(','\\(',findAndReplace('\\','\\\\',content)));
return findAndReplace(')','\\)',findAndReplace('(','\\(',content));
}
Original comment by jeff_j...@126.com
on 21 Jan 2011 at 3:31
Part 1 of the issue (duplicate header) has been fixed.
Original comment by cgauth...@gmail.com
on 28 Feb 2015 at 12:21
Original issue reported on code.google.com by
jeff_j...@126.com
on 17 Jan 2011 at 8:20Attachments: