Daniel
You flash vars should be in the form var (object) / value (string), not
(string)/(string)
So you want either:
var flashvars = {};
flashvars.image = "/a/b/c.jpg";
or
var flashvars = { image : "/a/b/c.jpg" };
Once you have this format set and it is still not working, I would suggest
you might be running into a relative pathing issue. Use something like
Firebug / Fiddler / Service Capture to ensure your images are actaully
loading from where you think they are.
Aran
--
You received this message because you are subscribed to the Google Groups
"SWFObject" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/swfobject?hl=en.