Page 1 of 1

customdata: link to current, not new browser window?

Posted: 01 Mar 2008, 20:37
by BrianG
Hi, any way to stop the custom data link spawning a new browser window for the link? i.e. link to another page and displaying it withing the current browser window

the code below spawns a new browser window/tab when you click on it, i'd like it to stay in the current window/tab, if posssible?

customdata = <b>Continue</b> to main website
customdatalink = ../../index.html


cheers
B

Posted: 02 Mar 2008, 23:15
by mjau-mjau
Unfortunately, that is not possible. All requests for this feature were based on not closing the gallery application when opening a link.

You could easily change it by editing the slideshow.fla source file:

layer "controls", frame 3, line 132:
Code
getURL(config.customdatalink, "_blank");
... change to ...
Code
getURL(config.customdatalink, "_self");

Posted: 03 Mar 2008, 23:05
by BrianG
that sort's it nicely Karl :)

cheers
B