How to pass params by html or php to an html embed swf? -


hello guys how doing? fine hope.

well i'm trying make non javascript version of site , there swf client runs javascript library sets sizes , passes params.

here code:

swfobject.embedswf(kinggame._game_url, "flashcontent", kinggame._flash_width, kinggame._flash_height, "10.0.0", false, {"param": kinggame._flash_params}, paramtrs); 

this line swfobject framework calls swf , passes param enormous xml file converted string supose.

so im trying use like:

<object width="1000" height="1000">     <param name="params" value="<?=urlencode($xml_config)?>">     <embed src="<?=$url?>" width="1000" height="1000">     </embed> </object> 

but it's not working don't know how pass params php or html, i'm searching finding nothing, knows if possible @ least?

thanks


Comments