Jump to content

Placing Flash Animation (.swf) Side By Side


cleeclee

Recommended Posts

Hello there again helpful people. I reiterate that I barely have any html knowledge and i'll not go into it. I'm not being lazy or stupid. If you dont want to help me then just don't reply to my posts.

Sorry for side tracking..

 

How do i put the .swf animation i've put up in my web page side by side. let's say 2 in a row and another 2 in another row. Right now the animations are below one another after i put them up. I've tried using the codes i've found online, they work with images with URL only. Thank you in advance again for your replies. Any kind of help is greatly appreciated.

 

<!doctype html>
<html>

<head>
        <title>EMS</title>
        <link rel="stylesheet" href="style.css" />
        <script src="functions.js"></script>
</head>
<body>

   <body background="http://www.moxyimagery.com/backgrounds/black-carbon-sheet.jpg">
   <center><IMG SRC="http://very-soft.com/media/products/screenshots/Energy_animation-site_1.gif" ALT="GIF" WIDTH=900 HEIGHT =80"></center>
   <center><font size ="10"><font color="#81F7F3">Energy Management</font></font></center>       

        <div id="flashContent">
  <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="302" height="217" id="airflowgraph" align="middle">
   <param name="movie" value="airflowgraph.swf" />
   <param name="quality" value="high" />
   <param name="bgcolor" value="#000000" />
   <param name="play" value="true" />
   <param name="loop" value="true" />
   <param name="wmode" value="window" />
   <param name="scale" value="showall" />
   <param name="menu" value="true" />
   <param name="devicefont" value="false" />
   <param name="salign" value="" />
   <param name="allowScriptAccess" value="sameDomain" />
   <!--[if !IE]>-->
   <object type="application/x-shockwave-flash" data="airflowgraph.swf" width="302" height="217">
 <param name="movie" value="airflowgraph.swf" />
 <param name="quality" value="high" />
 <param name="bgcolor" value="#000000" />
 <param name="play" value="true" />
 <param name="loop" value="true" />
 <param name="wmode" value="window" />
 <param name="scale" value="showall" />
 <param name="menu" value="true" />
 <param name="devicefont" value="false" />
 <param name="salign" value="" />
 <param name="allowScriptAccess" value="sameDomain" />
   <!--<![endif]-->
 <a href="http://www.adobe.com/go/getflash">
  <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
 </a>
   <!--[if !IE]>-->
   </object>
   <!--<![endif]-->
  </object>
 </div>

   <div id="flashContent1">
  <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="240" height="230" id="Airflow" align="middle">
   <param name="movie" value="Airflow.swf" />
   <param name="quality" value="high" />
   <param name="bgcolor" value="#000000" />
   <param name="play" value="true" />
   <param name="loop" value="true" />
   <param name="wmode" value="window" />
   <param name="scale" value="showall" />
   <param name="menu" value="true" />
   <param name="devicefont" value="false" />
   <param name="salign" value="" />
   <param name="allowScriptAccess" value="sameDomain" />
   <!--[if !IE]>-->
   <object type="application/x-shockwave-flash" data="Airflow.swf" width="240" height="230">
 <param name="movie" value="Airflow.swf" />
 <param name="quality" value="high" />
 <param name="bgcolor" value="#000000" />
 <param name="play" value="true" />
 <param name="loop" value="true" />
 <param name="wmode" value="window" />
 <param name="scale" value="showall" />
 <param name="menu" value="true" />
 <param name="devicefont" value="false" />
 <param name="salign" value="" />
 <param name="allowScriptAccess" value="sameDomain" />
   <!--<![endif]-->
 <a href="http://www.adobe.com/go/getflash">
  <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
 </a>
   <!--[if !IE]>-->
   </object>
   <!--<![endif]-->
  </object>
 </div>

<div id="flashContent2">
  <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="302" height="218" id="Energygraph" align="middle">
   <param name="movie" value="Energygraph.swf" />
   <param name="quality" value="high" />
   <param name="bgcolor" value="#000000" />
   <param name="play" value="true" />
   <param name="loop" value="true" />
   <param name="wmode" value="window" />
   <param name="scale" value="showall" />
   <param name="menu" value="true" />
   <param name="devicefont" value="false" />
   <param name="salign" value="" />
   <param name="allowScriptAccess" value="sameDomain" />
   <!--[if !IE]>-->
   <object type="application/x-shockwave-flash" data="Energygraph.swf" width="302" height="218">
 <param name="movie" value="Energygraph.swf" />
 <param name="quality" value="high" />
 <param name="bgcolor" value="#000000" />
 <param name="play" value="true" />
 <param name="loop" value="true" />
 <param name="wmode" value="window" />
 <param name="scale" value="showall" />
 <param name="menu" value="true" />
 <param name="devicefont" value="false" />
 <param name="salign" value="" />
 <param name="allowScriptAccess" value="sameDomain" />
   <!--<![endif]-->
 <a href="http://www.adobe.com/go/getflash">
  <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
 </a>
   <!--[if !IE]>-->
   </object>
   <!--<![endif]-->
  </object>
 </div>

</body>
</html>

Link to comment
Share on other sites

The quickest way to fix your HTML errors, if you don't want to put too much time and effort into learning HTML, is to use the W3C's validator: It'll tell you exactly what's wrong, and how to fix it.

 

Also, look into CSS. More specifically float.

 

Though, that said. If you're not interested in learning HTML and/or CSS, then you really shouldn't be doing this. If you have to do this, on the other hand, then you really should be interested in learning about HTML and CSS. So that you can make sure to do a proper job out of it, and not have it break in a hundred different ways as soon as one single detail change.

In any case: Don't be surprised if no-one wants to do your job for you for free. We're here to help people learn, for no other reward than spreading our knowledge and perhaps some gratitude. Not work for free, as we usually have more than enough (paid) work of our own already.

 

In any case: Good luck! :)

Edited by Christian F.
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.