flash

Any problem with HTML can be discussed here.
Post Reply
jasondsouza
Posts: 348
Joined: Thu Jan 12, 2006 8:24 pm
Contact:

flash

Post by jasondsouza »

hey what are the codes in order to incorporate flash in your html page...


--jasondsouza
ME working on a very new site. (Coming soon)
Come to my web Site
web_master
Posts: 202
Joined: Thu Apr 19, 2007 6:11 pm

Post by web_master »

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

Change the width / height and swf file names then add code to your html.
jasondsouza
Posts: 348
Joined: Thu Jan 12, 2006 8:24 pm
Contact:

Post by jasondsouza »

thanks .... i wanted also to know how to make the flash movie transparent...
--jasondsouza
ME working on a very new site. (Coming soon)
Come to my web Site
Lixas
Posts: 750
Joined: Wed Feb 16, 2005 4:21 pm

Post by Lixas »

There are two ways:
  1. Add the following parameter to the OBJECT tag:

    Code: Select all

    <param name="wmode" value="transparent">
  2. Add the following parameter to the EMBED tag:

    Code: Select all

    wmode="transparent"
Image
Gebbo
Posts: 554
Joined: Tue May 16, 2006 3:22 pm

flash

Post by Gebbo »

find more tutorials on html on http://www.pixel2life.com :P
.............................:: Spirit of Fire ::..................................

Image
Flipper3
Posts: 353
Joined: Tue Feb 28, 2006 12:34 am

Post by Flipper3 »

Flash is not really good to have on your webpage because quite a bit of people don't like it including me. :-/
delivi
Posts: 454
Joined: Sun Mar 26, 2006 1:24 pm
Contact:

Post by delivi »

its better to avoid Flash in webpages since it makes the test inaccessible and the search engine bots cannot crawl the text.

You can use flash for image galleries or if your a flash designer and use it in ur portfolio.
Murbza
Posts: 17
Joined: Fri Dec 12, 2008 2:14 pm

Post by Murbza »

Transparancy doesn't work with Ubuntu Linux :(
delivi
Posts: 454
Joined: Sun Mar 26, 2006 1:24 pm
Contact:

Post by delivi »

yep none of the popular linux browsers support transparency in flash :(
Post Reply