views:

85

answers:

1

I have put in some controls to allow users to resize my Flash app via Javascript:

document.getElementById("flashApp").height*=1.25;
document.getElementById("flashApp").width*=1.25;

This works great in IE/Safari, but is ignored in Firefox. I know it's talking the the flash app and gets and sets the height/width vars ok, but the same code run in FireFox ignores the scaling. (It's not the DOC spec issue)

Any thoughts?

Bill

A: 

Make sure you've got flashApp set in both embed and object tags. One browser might look for the id in the embed tag, while another uses object.

George Profenza
Yes. The proper tags are set. I'm definately talking to the Flash variables as they are set to the current contents, and can be updated, but they don't cause any change to the Flash app...