Help with embedding Flash banner ad in HTML

Discussion in 'HTML & Website Design' started by MVPExchange, Jul 26, 2011.

  1. #1
    I have a banner ad in the following formats: .fla, .swf, .html.

    I want to give my ad to a webmaster to put on their website but when I send them these files they tell me they don't work and they only want the code.

    Please tell me EXACTLY what code I need to send to them. Pretend you are explaining this to a 5 year old, because I don't know the first thing about these formats and I am totally lost.
     
    MVPExchange, Jul 26, 2011 IP
  2. drhowarddrfine

    drhowarddrfine Peon

    Messages:
    5,428
    Likes Received:
    95
    Best Answers:
    7
    Trophy Points:
    0
    #2
    Did you ask them?
     
    drhowarddrfine, Jul 26, 2011 IP
  3. MVPExchange

    MVPExchange Guest

    Messages:
    13
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    They have no idea either, they just tell me they can't open the files. Do you know how to do it?
     
    MVPExchange, Jul 26, 2011 IP
  4. creativewebmaster

    creativewebmaster Active Member

    Messages:
    654
    Likes Received:
    7
    Best Answers:
    4
    Trophy Points:
    78
    #4
    insert the flash using dreamviewer.
     
    creativewebmaster, Jul 27, 2011 IP
  5. MVPExchange

    MVPExchange Guest

    Messages:
    13
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    can anyone tell me what code i should be using??
     
    MVPExchange, Jul 27, 2011 IP
  6. satrebor

    satrebor Active Member

    Messages:
    244
    Likes Received:
    3
    Best Answers:
    2
    Trophy Points:
    65
    #6
    Here you go :), just watch a code carefully.

    <object
      classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
      codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"
      width="550" height="400">
      ...
      <param name="movie" value="movie.swf" />
      <param name="quality" value="high" />
      ...
      <embed src="movie.swf" quality="high" bgcolor="#ffffff" width="550" height="400"
        type="application/x-shockwave-flash"
        pluginspage="http://www.macromedia.com/go/getflashplayer">
      </embed>
    </object>
    Code (markup):
     
    satrebor, Jul 27, 2011 IP
  7. MVPExchange

    MVPExchange Guest

    Messages:
    13
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #7
    thanks,
    I knew it had to do with the code between the object tags, but I still don't get what I am supposed to do. Can you explain in English what I need to do?

    Like where it says embed src="movie.swf", I need to change this to my file name but does the file need to be loaded somewhere on the server??
     
    MVPExchange, Jul 27, 2011 IP
  8. satrebor

    satrebor Active Member

    Messages:
    244
    Likes Received:
    3
    Best Answers:
    2
    Trophy Points:
    65
    #8
    your swf file must be in a FTP server publicHTML/movie.swf , you must write down the path there (<param name="movie" value="movie.swf" />) where your file is.Try to explain me in more steps what do you want to know.
     
    satrebor, Jul 27, 2011 IP
  9. MVPExchange

    MVPExchange Guest

    Messages:
    13
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #9
    I got it figured out.. I had to load the .swf file onto my server, that's where i was gettinf tripped up, then changed "movie" to direct to that file in the server.

    Thanks!
     
    MVPExchange, Jul 27, 2011 IP
  10. MVPExchange

    MVPExchange Guest

    Messages:
    13
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #10
    another question. I got the ad to appear on a test page:

    mvpexchange.com/aboutus.html

    But when you click on it, it leads to a page that just says undefined, how do you determine which page the banner leads to??
     
    MVPExchange, Jul 27, 2011 IP
  11. satrebor

    satrebor Active Member

    Messages:
    244
    Likes Received:
    3
    Best Answers:
    2
    Trophy Points:
    65
    #11
    Just, put a link on that banner to another path. a href="
     
    satrebor, Jul 28, 2011 IP