Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Movie position in browser 1

Status
Not open for further replies.

alltoomuch

IS-IT--Management
Oct 25, 2000
5
GB
I can't get my flash movies to play back in the cnter of the browser window (any browser)

I specified align as center (default) in publish settings but to no avail.

What should my html code look like for my movie to play back in the center of the browser (i.e with borders around all sides)?

Thanks for any help,

alltoomuch
 
Just put it inside a table and center the table.
<table align=&quot;center&quot;>
<tr>
<td>
COPY YOUR MOVIE CODE
</td>
</tr>
</table>

Fernando Regueiro
ferhelping@yahoo.com

 
You could also put the movie within a centred paragraph. In the HTML source:

immediately before <OBJECT..&quot;yourmovie&quot;....
insert <P ALIGN=CENTER>
and immediately after </OBJECT>
insert </P>.

You can check the Source code as seen on a site I am currently developing at
 
After your </HEAD>
you can also use

<CENTER> .....Your movie code </CENTER>
workes well for me
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top