Pass Values to a SWF with JavaScript and SWFObject
SWFObject provides a simple way to pass values to a SWF using only JavaScript: no server-side code required! In this tutorial, we’ll build a fundraiser meter that can easily be updated with the amount donated so far, without needing to recompile the SWF.
Final Result Preview
View the source of the demo and you’ll see that the target and current donation amounts are defined in JavaScript.
Section 1: What’s SWFObject? Why Use It?
Don’t like ads? Download the screencast.
Section 2: Set Up the Fundraiser SWF and Get to Grips with SWFObject
Don’t like ads? Download the screencast.
Section 3: Additional Functionality and Polish
Don’t like ads? Download the screencast.
Non-IDE: Relevant Code in Plain Text
If you’re not using the Flash IDE, here’s the relevant code in copy-and-pastable plain text:
if (root.loaderInfo.parameters["goal"] != null)
{
goal = Number(root.loaderInfo.parameters["goal"]);
actual= Number(root.loaderInfo.parameters["actual"]);
}
else
{
// if can't access values in page
goal = 100;
actual = 50
}
The tutorial videos explain how to hook these up to a JavaScript object in the page.
Tags: Videos

XML Photography Template V2 only $40.00 
Hey, thanks for the tut. Exactly what i was looking for!
This is great,.
hey cool i just was in the process of designing a flash app that would accept values from js and was wondering how to do it thanks a lot i knew nothing of this gonna try it out
that’s all cool tips, thank you very much for sharing.
Really SWFObject is very simple & helpful to use for communicating Flash by JS
Thank you for this tips!