|  
 Need help with putting flash into a website - Printable Version
 
 -Shoutbox (https://shoutbox.menthix.net)
 +-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
 +--- Forum: Skype & Technology (/forumdisplay.php?fid=9)
 +---- Forum: Tech Talk (/forumdisplay.php?fid=17)
 +----- Thread: Need help with putting flash into a website (/showthread.php?tid=27443)
 Need help with putting flash into a website by sparkymcg on 06-20-2004 at 11:47 AM
 
hi ive just got a website and i need helpi loaded example.swf into my file manager
 and i want to put it on index.html as this is the main webpage how do i do this can anyone help me
 RE: Need help with putting flash into a website by KeyStorm on 06-20-2004 at 11:53 AM
 
If you have Macromedia Flash you can have an exported index.html file in your File>Export menu.
 RE: Need help with putting flash into a website by sparkymcg on 06-20-2004 at 12:50 PM
 
it only has export image and export movie and when i go into one of them in the save as type box it doesnt contain the extension .html
 RE: Need help with putting flash into a website by jren207 on 06-21-2004 at 02:21 PM
 
Do you want to place/embed a flash file/movie/animation into your main start page of your site??
 Is that what you're wanting to do?
 RE: Need help with putting flash into a website by sparkymcg on 06-21-2004 at 02:24 PM
 
yes
 RE: Need help with putting flash into a website by matty on 06-21-2004 at 02:24 PM
 
 code:<object classid="clsid
  27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="250" HEIGHT="150" id="<Name>" ALIGN> <param NAME="movie" VALUE="<FileName>">
 <param NAME="quality" VALUE="high">
 <param NAME="bgcolor" VALUE="#000000">
 <EMBED src="<FileName>">" quality=high bgcolor=#000000  WIDTH="<WIDTH>" HEIGHT="<HEIGHT>" NAME="<NAME>" ALIGN=""
 TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED></object>
 
 Thats the code you use here is an example from what I had used for a website.
 
 code:<object classid="clsid
  27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="250" HEIGHT="150" id="LoadButton" ALIGN> <param NAME="movie" VALUE="LoadButton.swf">
 <param NAME="quality" VALUE="high">
 <param NAME="bgcolor" VALUE="#000000">
 <EMBED src="LoadButton.swf" quality=high bgcolor=#000000  WIDTH="<250>" HEIGHT="150" NAME="LoadButton" ALIGN=""
 TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED></object>
 
 Its best to get a preview in your browser and view the source to get the code that way.
 RE: Need help with putting flash into a website by jren207 on 06-21-2004 at 02:29 PM
 
This bit:
 <object classid="clsid
  27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="250" HEIGHT="150" id="<Name>" ALIGN> 
 Make sure you have this the same size as the actual flash
 
 (the <EMBED src="LoadButton.swf"... bit)
 
 or you'll have a big space round ur actual flash and wonder why it's there like what happened to me
  
 
 
 |