Results 1 to 3 of 3

Thread: how do i insert flashMX

  1. #1
    Join Date
    Jan 2006
    Posts
    8

    Default how do i insert flashMX

    how do i insert flashMX into my page? Anyone has basic code? tks

  2. #2
    Join Date
    Feb 2006
    Location
    Argentina
    Posts
    10

    Default

    Macromedia Flash MX has its own script generating tool embedded. You should create your flash and then export HTML code. Look for the option in the File menu (more likely, I don't remember exactly).

  3. #3
    Join Date
    Jan 2005
    Location
    Antwerp, Belgium, Europe, The World
    Posts
    82

    Default

    Code:
    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="WHATEVER" height="WHATEVER">
      <param name="movie" value="FILENAME.swf" />
      <param name="quality" value="high" />
      <embed src="FILENAME.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="WHATEVER" height="WHATEVER"></embed>
    </object>
    This ought to work :) make you sure your flash app is saved in .swf format... Not .fla, that won't work.

Bookmarks

Posting Permissions

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