- Impact
- 406
Hiya
I thought i would compile a list of html snippets noobs would most likely want, so here goes.
Embedding Flash/Other movie files into a page.
Use something like dreamweaver, then create a layer and move this layer to where you would like the movie to be shown. Next click inside the layer and switch to code view then paste in the following code:
Adding media Controll functionality:
If you want to add play pause and rewind functionality ect.. add the following code before width and height parameters.
Whats the % after the width & height for?:
This makes things easier when setting the width and height of your movie, as sometimes the movie doesnt always show in its correct proportions.
Dont have dreamweaver?
just copy and paste the code into your html body, if your using something like dreamweaver then you should be able to place the movie in design view wherever you want to place it once you've added the code.
More snippets to follow
If you want
I thought i would compile a list of html snippets noobs would most likely want, so here goes.
Embedding Flash/Other movie files into a page.
Use something like dreamweaver, then create a layer and move this layer to where you would like the movie to be shown. Next click inside the layer and switch to code view then paste in the following code:
Code:
<embed src="URL OF MOVIE" width="100%" height="100%">
Adding media Controll functionality:
If you want to add play pause and rewind functionality ect.. add the following code before width and height parameters.
Code:
controll="true"
Whats the % after the width & height for?:
This makes things easier when setting the width and height of your movie, as sometimes the movie doesnt always show in its correct proportions.
Dont have dreamweaver?
just copy and paste the code into your html body, if your using something like dreamweaver then you should be able to place the movie in design view wherever you want to place it once you've added the code.
More snippets to follow
If you want
Last edited:














