I have flash with scrolling words. Each word is linked to http://www.foo.bar/somepage.html#parametar
So "word1" is linked to http://www.foo.bar/somepage.html#parameter1
,
word2 is linked to http://www.foo.bar/somepage.html#parameter2
, etc..
This works while I'm on every other page than "somepage.html".
When I'm on "somepage.html" it doesn't work. Parameter is just attached to url, but page is not loading again.
Here is my code:
on(release)
{
getURL("http://www.foor.bar/somepage.html#parameter");
}
I have tried with setting _self, _top, _parent window and nothing.. It works only with _blank, but that is not what I want.
How to force page load without opening new window?
Thanks!