|
|||||||
| Programming, Coding, (Web)Design Discuss all your programming or design needs with likeminded people. |
![]() |
|
|
Thread Tools |
|
|
#1 |
|
Join Date: Jul 2003
Location: Denmark
Posts: 0
Rep Power: 0 ![]() |
hey! Does any1 know how to get a flash box on a page witch'l show movies?!
__________________
Sgt. kelly
|
|
|
|
|
|
#2 |
|
HH Administrator
|
Hi Sgt. Kelly I've moved your post to the html forum, you'll prolly get more help here, also if you detail more what your trying to acheive
|
|
|
|
|
|
#3 |
|
HH Administrator
|
if it's jus' one movie, you can choose publish from the file menu in flash and it'll generate the html for you so you can see how it's embedded, if you want some kind of player then I'm not sure.
|
|
|
|
|
|
#4 |
|
BANNED
Join Date: Jul 2002
Location: Indiana , USA
Posts: 2,677
Rep Power: 0 ![]() |
if you want a player you'll have to make itself and insert the code for the buttons and such....and then you would have to export as html. You may be able to find a template or something
|
|
|
|
|
|
#5 |
|
ZZzzzzzzzzzz...........
Join Date: Nov 2002
Location: Texas
Posts: 324
Rep Power: 0 ![]() |
Hmm, here's some code if you're not too sure how to get flash to spit some up:
Code:
<html>
<head>
<title>Flash thingy</title>
</head>
<body bgcolor="#000000">
<center>
<table border="1" width="400" height="400" style="border: 3 solid #FFFFFF">
<tr>
<td width="400" height="400" style="border: 2 solid #AAAAAA">
<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,0,0"
ID=titanium1 WIDTH=400 HEIGHT=300>
<PARAM NAME=movie VALUE="whatever.swf">
<PARAM NAME=quality VALUE=medium>
<PARAM NAME=bgcolor VALUE=#000000>
<EMBED src="whatever.swf" quality=medium bgcolor=#000000
WIDTH=400 HEIGHT=400 TYPE="application/x-shockwave-flash"
PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">
</EMBED>
</OBJECT>
</td>
</tr>
</table>
</center>
</body>
</html>
All you'll need to do is adjust the size of the tables and flash file as well as type in the name of your file. That's it! ~eyeguy616 |
|
|
|
![]() |
| Thread Tools | |
|
|