I was hoping maybe someone could provide some insight on a problem I\'m having a tough time deciding how to solve.
I have a rather simple flash application users can
You could actually invoke an ExternalInterface command to populate a hiddenfield in your HTML coming from your SWF component.
if (ExternalInterface.available)
{
var js:String = "yourJavaScriptFunction";
var valToPass:String;
ExternalInterface.call(js(valToPass));
}
And in your HTML page, you write a javascript function: