For anyone looking for a solution to this issue, here is how i handled it:
inside your options declaration, include an empty array links:
var options={
...
links:[],
...
}
after you close the options declaration, the following must be assigned to each of the pages. you must assign the links in this way
options.links[1]=[ //1 being the first slide
100, //AS I SAW IT, arbitrary number to be called width
100, //AS I SAW IT, arbitrary number to be called height
[0,0,100,100,'url']] //Link array
The linkable area will start at the 0,0 mark, and will span until 100,100 (the number we defined earlier as width, height of the page.
I would have really liked all this info to be in the documentation.
-
This reply was modified 3 years, 9 months ago by cdefreitas. Reason: added var options = {