I have a flash application that is making javascript calls at various intervals.
for QA we want to display what args the flash app called the javascript.
The original developer used alert. however that stops the app from functioning until the ok button is clicked.( not what we wanted). Trying the other dialogs. those also stopped the app.
I need a browser independent way (IE6+, safari, some really old version of firefox+, opera) to display what the flash app sends to javascript and not have it stop my flash app.
I thought about console.log(), but IE6 does not support that.
I am hoping someone can give me an alternative to writing a div in the page and having the javascript dump the message in the div.
while the second option is technically viable. politically at the company… no.
we ended up placing a div tag on the page, then having the the javascript that listens to the events append to the innerhtml of that div….