• Answers
  • Web
Answer 1 out of 2
 
16 helpful answers
A:

A Flash movie is inserted into an HTML page with the <object> tag (and until its use was deprecated, the <embed> tag). So, you could make a CSS style rule for all object elements on the page:

object { /* style properties */ }

Or, you could give your Flash object element a particular id or class and then select for those in the CSS. For example:

In the HTML:
<object class='FlashMovie' id='myMovie'>[Flash movie parameters]</object>

In the CSS:
object.FlashMovie { /* style properties */ }
or
object#myMovie { /* style properties */ }

Posted 3 years ago
Premasagar was invited by Yedda to answer this question.

Helpful?(6)
Rated as Best Answer
 
Comment About This Answer (or add your own answer)

Feed - Subscribe to changes to this Q&A Blog
ADVERTISEMENT
  • Answers
  • Web
Copyright © 2006-2009, Yedda Inc. and respective copyright owners