Question

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?

Was it helpful?

Solution

Please try following code -

myPDF.addLink ( 120, 6, 60, 16, new HTTPLink ("http://www.google.com") );
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top