• Visual SlideShow

  • FAQ

Can I link to a non parent page in flash slideshow maker

Q: Can I link to a non parent page in flash slideshow maker, i.e. _blank ? NEW WINDOW?

A: Yes, it is possible.

You should find the following code in engine/js/slideshow.js file:

var target=obj.target?obj.target.trim():"_self";



and change it to:

var target=obj.target?obj.target.trim():"_blank";

Related