PDA

View Full Version : looking for a POC!


ammation
01-13-2007, 06:18 AM
I need to get information within flash swf object in an HTML page from URL! as namevalue pairs.

I tried LoadVars and XML concept as well..........:confused:

But its not working, its really helpful if u post a topic on that!

POC: is

if a user type a name value pair in URL(address bar), that typed name value pair in the URL should appear with in the flash swf file embedded in HTML, like we do it in PHPvariable ($_GET).

YOUR HELP IS MORE VITAL FOR ME

Regards,
Amuthan Meganathan.

acolyte
02-06-2007, 12:13 AM
Hi Amuthan ,

this sounds pretty damn easy i hope i understood you right :

<body>
<div id="flashArea">you dont have Flashplayer installed properly !</div>
<script type="text/javascript">
var so = new SWFObject("mySWFFile.swf", "mymovie", "738", "242","low", "#FFFFFF", "8", false);
>>so.addVariable("myVar", myValue);<<
so.write("flashArea");
</script>


is it this what you where looking for ?

i hope this helps