I'm working to a project in flex. How can I insert a link inside a text of a multicell with alivepdf?
myPDF.addMultiCell(120,6,"Vedi su www.google.com",1,"J",0);
How can I make clickable www.google.com?
Please try following code -
myPDF.addLink ( 120, 6, 60, 16, new HTTPLink ("http://www.google.com") );