sivarajankumar / alivepdf

Automatically exported from code.google.com/p/alivepdf
0 stars 0 forks source link

Internal links problem #87

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
HI,
I am using the library for 
a project and i have had to repair a little problem on link :

1. function addlink() 

You have to change this in comment
//var l:String = links[link];
to
var l:Array = link;
The array will to pass will be like ([page destination]:int, ypos:int)

2. function addcell()

the link parameter must be of * type ( link:* ) to access adlink() function 
perfectly.
Pass array(page, pos) if you want an internal link

A mention for this problem exists but have never been implemented
Regards

Original issue reported on code.google.com by fred.des...@gmail.com on 8 Oct 2008 at 8:52