I tried to modify this tutorial http://www.kirupa.com/developer/mx2004/css.htm
to move the flash object to the lower right corner of the screen and it didnt work.
CSS:
object {
position:fixed;
right:0;
bottom:0
}
embed {
position:fixed;
right:0;
bottom:0
}
I realize that the tutorial changes contents of the flash file. Is there a way to reference an external CSS file to interact with the flash itself? When the page loads the swf I want the flash to load at the bottom right.
I know you can do this using html and css already. I am looking to duplicate the same by using actionscript an loading the css or being able to reference an external css from within the flash.
I do not want to reference the css in the html at all.
I understand that the flash file will be located on an external link.
Thanks!