Forum Moderators: open

Message Too Old, No Replies

Does a "strech" attribute for flash exists?

         

hq4ever

6:44 pm on Aug 22, 2005 (gmt 0)

10+ Year Member



from w3schools, the way to insert flash into html is this :

<object width="550" height="400">
<param name="movie" value="somefilename.swf">
<embed src="somefilename.swf" width="550" height="400">
</embed>
</object>

the problem with this method is that the values are hard coded, I wish to insert the object into a 2 column table, in such a way that one column hold the text data and the other hold the flash object, when the flash stretches to fill the page dynamically.

anybody can offer a hand maybe?

thank you.

Richard_N

11:11 pm on Aug 22, 2005 (gmt 0)



use percentages instead of fixed widths but this may screw up any bitmaps in the flash file

hq4ever

7:29 am on Aug 24, 2005 (gmt 0)

10+ Year Member



Thank you very much.
In this flash there were no bitmaps, so no problem with that too.

Good day.