vote up 0 vote down star

Hi!

I am trying to embed swf file into my html code. I am using swfobject 2 JS lib.

The code looks like following:

 <script type="text/javascript" src="/site_media/js/swfobject.js"></script>

            	<script type="text/javascript">
    		var flashvars = {};
    		var params = {};
    		params.scale = "noborder";
    		params.bgcolor = "#ffffff";
    		var attributes = {};
    		attributes.id = "plist";
    		attributes.align = "top";
    		params.seamlesstabbing = "true";
    		swfobject.embedSWF("/site_media/goapp/usersList.swf", "myAlternativeContent", "1000", "800", "9.0.0", false, flashvars, params, attributes);
    	</script>

I expected the background color of the app to became white, but actually, nothing happens to loaded application, and it has it's default color themes. Also alignment dosn't do anything as well.

Please help my to understand how to change bg color of swf application, and make it look like a part of the page (e.g. scale without scrollbars, etc)

flag

1 Answer

vote up 1 vote down check

I am afraid yoiu are missing the install swf file

swfobject.embedSWF("/site_media/goapp/usersList.swf", "myAlternativeContent", 
                          "1000", "800", "9.0.0","expressInstall.swf",
                                 flashvars, params, attributes);

otherwise you might want to set that parameter to null. Quickly check the doc for swfObject

link|flag
Just changed that line: swfobject.embedSWF("/site_media/goapp/usersList.swf", "myAlternativeContent", "1000", "800", "9.0.0","expressInstall.swf", false, flashvars, params, attributes); But it doesn't help – Oleg Tarasenko Jul 21 at 4:51
oups... i don't know how the false made its way to the code i added, just after "expressInstall.swf", please remmove that parameter. i will edit my post now. – zaladane Jul 21 at 5:10
By the way I noticed that firebug shows me an error callbackFn is not a function [Break on this error] if (callbackFn) { callbackFn(callbackObj); }\n – Oleg Tarasenko Jul 21 at 6:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.