Hallo!
Vielleicht hatte ja mal einer das folgende Problem...
...ich habe es endlich geschafft Flash über Javascript die Datumsvariabel zu übergeben...das Problem ist nur...der Schrott funktioniert nur auf level0...hat jemand einen Tip...hier die relevanten Zeilen....
function datum()
{
var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
var map = InternetExplorer ? index2 : document.embeds[0];
var today=new Date();
var theDay=dayNames[today.getDay() + 1]
var theDate=today.getDate()
var theMonth = monthNames[today.getMonth() + 1]
var year=today.getFullYear()
map.SetVariable('datum', theDay + ", " + theDate + ". " + theMonth + " " + year )
}
Danke!