Adding SWF to Front Page

Ask a Question related to Macromedia Flash Ad Development, Design and Development.

  1. #1

    Default Adding SWF to Front Page

    I have downloaded the trial version of Flash Professional 8. I have created a
    SWF but am having trouble getting the SWF to play in Front Page?

    Does the free trial version prevent you from Publishing?

    When I play the SWF stand alone it works???

    jbhempstead Guest

  2. Similar Questions and Discussions

    1. can't edit front page
      Have you checked for .lck files on the server? Dowload a free FTP-manager (Filezilla f.i.) Search for a file named: nam-of-your-page.lck
    2. from front page to dreamweaver
      I have been working on an existing site originally set-up in Front Page on a PC, have just bought a Mac, so need to change from Front Page on PC to...
    3. Front page disappeared
      Recently the Contribute front page that used to come up, allowed me to choose which of several sites that I maintain, has disappeared. Now the site...
    4. publisher to front page
      Someone mentioned that Publisher is not the best program to design a webpage for FrontPage. I have my home page designed in Publisher. (I don't...
    5. Front Page Components and TS
      Hello all, Recently I have been trying to install Front Page (FP) components onto my company's IIS server, which is also our TS server. (I need...
  3. #2

    Default Re: Adding SWF to Front Page

    Hi!

    Replace the <object>....</object> with the following code
    Replace "your.swf" to your swf file.

    Regards,
    Sankarapandian T.


    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
    codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#ve
    rsion=6,0,29,0" width="550" height="400">
    <param name="movie" value="your.swf">
    <param name="quality" value="high">
    <embed src="your.swf" quality="high"
    pluginspage="http://www.macromedia.com/go/getflashplayer"
    type="application/x-shockwave-flash" width="550" height="400"></embed>
    </object>

    Sankarapandian Guest

Posting Permissions

  • You may not post new threads
  • You may 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 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139