HardwareHeaven.com

HardwareHeaven.com

Looking for the skin chooser?
 
 
  • Home

  • Hardware reviews

  • Articles

  • News

  • Tools

  • Gaming at HardwareHeaven

  • Forums

 

Go Back   HardwareHeaven.com > Forums > Software / Tools > Programming, Coding, (Web)Design


Programming, Coding, (Web)Design Discuss all your programming or design needs with likeminded people.

Reply
 
Thread Tools
Old Jul 17, 2003, 11:59 PM   #1
 
Join Date: Jul 2003
Location: Denmark
Posts: 0
Rep Power: 0
Sgt.kelly is on a distinguished road

Default Post A Flash boX

hey! Does any1 know how to get a flash box on a page witch'l show movies?!
__________________
Sgt.kelly
Sgt.kelly is offline   Reply With Quote


Old Jul 18, 2003, 12:05 AM   #2
HH Administrator
 
craig5320's Avatar
 
Join Date: May 2002
Location: Manchester, UK
Posts: 8,578
Rep Power: 445
craig5320 is godlike in his statuscraig5320 is godlike in his statuscraig5320 is godlike in his statuscraig5320 is godlike in his statuscraig5320 is godlike in his statuscraig5320 is godlike in his statuscraig5320 is godlike in his statuscraig5320 is godlike in his statuscraig5320 is godlike in his statuscraig5320 is godlike in his statuscraig5320 is godlike in his status
System Specs

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
__________________

HardwareHeaven on Facebook
craig5320 is online now   Reply With Quote
Old Jul 18, 2003, 12:10 AM   #3
HH Administrator
 
craig5320's Avatar
 
Join Date: May 2002
Location: Manchester, UK
Posts: 8,578
Rep Power: 445
craig5320 is godlike in his statuscraig5320 is godlike in his statuscraig5320 is godlike in his statuscraig5320 is godlike in his statuscraig5320 is godlike in his statuscraig5320 is godlike in his statuscraig5320 is godlike in his statuscraig5320 is godlike in his statuscraig5320 is godlike in his statuscraig5320 is godlike in his statuscraig5320 is godlike in his status
System Specs

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.
__________________

HardwareHeaven on Facebook
craig5320 is online now   Reply With Quote
Old Jul 18, 2003, 12:15 AM   #4
BANNED
 
Join Date: Jul 2002
Location: Indiana , USA
Posts: 2,677
Rep Power: 0
Sourcer_2002 is on a distinguished road

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
Sourcer_2002 is offline   Reply With Quote
Old Jul 18, 2003, 09:26 PM   #5
ZZzzzzzzzzzz...........
 
Join Date: Nov 2002
Location: Texas
Posts: 324
Rep Power: 0
eyeguy616 is on a distinguished road

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>
Highlight, copy, and paste in a new text file and rename as .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
eyeguy616 is offline   Reply With Quote
Reply

Thread Tools