banner ads module linking problem
- lady_witchcraft
- Posts: 94
- Joined: Sun 14. Nov 2004, 19:19
- Location: Austria
- Contact:
Re: banner ads module linking problem
thanks oliver, for the link, but the flash contains the clicktag already
problem stays the same, no function, no link behind the nice banner ...
greetz & thx for possible support in advance,
claudia
problem stays the same, no function, no link behind the nice banner ...
greetz & thx for possible support in advance,
claudia
... it's not bad luck, it's a bug ...
- Oliver Georgi
- Site Admin
- Posts: 9905
- Joined: Fri 3. Oct 2003, 22:22
- Contact:
Re: banner ads module linking problem
maybe there is a nother problem with JavaScript. Cannot say without visiting the domain and see myself.
- lady_witchcraft
- Posts: 94
- Joined: Sun 14. Nov 2004, 19:19
- Location: Austria
- Contact:
Re: banner ads module linking problem
thx for your support in advance, url is on the way via PM!
greetz, clau
greetz, clau
... it's not bad luck, it's a bug ...
- Oliver Georgi
- Site Admin
- Posts: 9905
- Joined: Fri 3. Oct 2003, 22:22
- Contact:
Re: banner ads module linking problem
Achte darauf, dass Du keine absolute URL abfängst. Im Beispiel wird auf http: geprüft. Das gibt es aber nicht.
So müsste es gehen:
So müsste es gehen:
Code: Select all
on (release) {
if (_root.clickTag.substr(0,9) == "index.php") {
getURL(_root.clickTag, _root.clickTarget==undefined ? "_blank" : _root.clickTarget);
}
}
- lady_witchcraft
- Posts: 94
- Joined: Sun 14. Nov 2004, 19:19
- Location: Austria
- Contact:
Re: banner ads module linking problem
you're my heeeeerroooooooo
thx a lot oliver, now the script within the banner works fine!
mysterious thing!
wish you a relaxing weekend, and I doubt this was
the last question I had this weekend
greetz & many thanks,
claudia
thx a lot oliver, now the script within the banner works fine!
mysterious thing!
wish you a relaxing weekend, and I doubt this was
the last question I had this weekend
greetz & many thanks,
claudia
... it's not bad luck, it's a bug ...
- Oliver Georgi
- Site Admin
- Posts: 9905
- Joined: Fri 3. Oct 2003, 22:22
- Contact:
Re: banner ads module linking problem
OK, to make it perfect we do a general test against clickTag Var:
Then nothing should happen if the clickTag var is not defined.
Code: Select all
if(_root.clickTag != undefined) {
on (release) {
// only needed if you want to allow relative links (of your own site) only
// if (_root.clickTag.substr(0,9) == "index.php") {
getURL(_root.clickTag, _root.clickTarget==undefined ? "_blank" : _root.clickTarget);
// }
}
}
Re: banner ads module linking problem
Ola,
I have running, r528, linking images doesnt work with mod-rewrite enabled.
http://www.uvw.nl
Any clues?
I have running, r528, linking images doesnt work with mod-rewrite enabled.
http://www.uvw.nl
Any clues?
A website is a concept not a digital brochure ! Vectrus Internet Solution
- Oliver Georgi
- Site Admin
- Posts: 9905
- Joined: Fri 3. Oct 2003, 22:22
- Contact:
Re: banner ads module linking problem
Hard to follow what you mean. Create issue which describes better, screenshot, source code sample etc.