The first problem is that the Book_Image_Sources array is different in the extended version but you appear to have just used your old one from the DD version of the script. In the extended script, there is one field each for image, link and target respectively. The DD version had only image and link. Fields that are not used must be represented by empty quotes. So, where you have:
Code:
Book_Image_Sources=new Array(
"seite1.png","",
"seite2.png","",
"seite2.png","",
"seite3.png","",
"seite4.png","",
"seite3.png","" );
It should be:
Code:
Book_Image_Sources=new Array(
"seite1.png","","",
"seite2.png","","",
"seite2.png","","",
"seite3.png","","",
"seite4.png","","",
"seite3.png","","" );
Fixing that will take care of certain images not showing up (as long as the image files are available to the script). It may resolve the ordering question. If not, perhaps a tweak of the code can take care of that. Let me know.
Bookmarks