This link will open my ecard .swf on the server and all variables gets in to the .swf and displays fine on IE and NN for Mac, but on some PCs the browser thinks it needs a plugin and will not display the .swf.
If I dont have any variables in the link it opens fine in PC though. Any ideas why?
( I would rather embed the .swf in html but then I dont know how to get the vaiables into the .swf)
if you call html page like
card.html?xxxx
you can use javascript inside that html to create the embed code for the swf. _Very much simplified_ code:
document.write('<embed src="card.swf?'+location.search+'" width=400 height=250></embed>');
As for the browser asking for a plugin: tell the server admin to fix the mime types file on the server - it is sending swf files with text/plain, application/octet-string or similar nonsense types