Welcome to the Reef Forum.
Results 1 to 3 of 3
  1. #1
    Mayor
    Join Date
    Jul 2000
    Location
    MA.
    Posts
    534
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Question for you web masters

    Hi All,
    I have got this Flash animation that I would like to put on its own page on my web site.
    I use FrontPage 2000 to design my web.
    Is it possible to somehow import that Flash program to FrontPage so that when its page loads the Flash program will play.
    The Flash program is a .EXE file

    Thanks,
    CaptK

  2. #2
    Moderator
    Join Date
    Feb 2000
    Location
    Bardstown, KY
    Posts
    13,767
    Images
    51
    Thanks
    0
    Thanked 1 Time in 1 Post

    Hi CaptainK!

    Here is the code that will insert a swf file into an HTML document. The file location needs to be changed and the size needs to be changed. This will work if you can FTP the movie to your server.

    Code:
    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=4,0,2,0" width="250" height="100">
      <param name=movie value="http://www.filelocation.com/Moviename.swf">
      <param name=quality value=high>
      <embed src="http://www.filelocation.com/Moviename.swf" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="250" height="100">
      </embed>
    HTH
    Scott Z.

  3. #3
    Council
    Join Date
    Nov 2000
    Location
    Seattle
    Posts
    270
    Thanks
    0
    Thanked 0 Times in 0 Posts
    The flash file cannot be exported as a EXE, it has to be a SWF file for you to embed it into a html document. If you don't have the original FLA file you can't convert the EXE to a SWF

    Also, I have never used Frontpage, but I would think somewhere in it (if it is as good as it is supposed to be) is a Insert Media function, or Embed Media, Embed Flash, etc. Most WYSIWYG editors have this, I would think frontpage would to. It will ease your work some, but the code above works dandy.


 

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108