jan@informatica
02-27-2007, 01:50 PM
Hey I'm trying to send data from flash (in a large string) to javascript. This works fine for ie7 and firefox. But in ie6 it does nothing.
I started to do some tests to find the problem and came to the conclusion that when I put this text in the ie6 addressbar (first run the testpage and then put this script in the addressbar)
"javascript:testFunction("A very long string, more than 1000 characters ...")" it does nothing,
but when i put "javascript:testFunction("A small string, around 100 characters ...")" it works fine in ie6.
If I put this in the addressbar of ie6 it shows an alert box with the text:
javascript:testFunction("ttttttttttttttttttttttttttt")
If I put this in the addressbar of ie6 it doesn't work:
javascript:testFunction("tttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt tttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt tttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt tttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt tttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt tttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt ttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt")
this is my javascript test function:
function testFunction(s){
alert(s);
}
Is there someone who knows an answer for this problem?
I started to do some tests to find the problem and came to the conclusion that when I put this text in the ie6 addressbar (first run the testpage and then put this script in the addressbar)
"javascript:testFunction("A very long string, more than 1000 characters ...")" it does nothing,
but when i put "javascript:testFunction("A small string, around 100 characters ...")" it works fine in ie6.
If I put this in the addressbar of ie6 it shows an alert box with the text:
javascript:testFunction("ttttttttttttttttttttttttttt")
If I put this in the addressbar of ie6 it doesn't work:
javascript:testFunction("tttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt tttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt tttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt tttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt tttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt tttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt ttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt")
this is my javascript test function:
function testFunction(s){
alert(s);
}
Is there someone who knows an answer for this problem?