Internet Explorer 6 (pc) and Safari 1.3 (mac) kill
the page when you change location.hash in successive getURL("javascript:...") calls from flash. Click the button in flash movie three times and see what happens next.
Internet Explorer 6 (pc) и Safari 1.3 (mac) убивают страницу, если вы изменяете location.hash при последовательных вызовахgetURL("javascript:...") из флэша. Нажмите кнопку во флэшке три раза и посмотрите, что произойдет.
[anchor "test"]
the page when you change location.hash in successive getURL("javascript:...") calls from flash. Click the button in flash movie three times and see what happens next.
Internet Explorer 6 (pc) и Safari 1.3 (mac) убивают страницу, если вы изменяете location.hash при последовательных вызовах
[anchor "test"]
// JavaScript:
function gotoAnchor () {
// test info output
var out = document.getElementById("out");
out.innerHTML+= ++count+": gotoAnchor()";
// go to anchor "test"
location.hash = "test";
}
// ActionScript:
gotoAnchor = function ()
{
getURL('javascript:gotoAnchor()');
};