Results 1 to 8 of 8

Thread: Embedding flash code missing after posted.

  1. #1

    Thread Starter
    Hyperactive Member nUflAvOrS's Avatar
    Join Date
    Jul 2007
    Location
    Malaysia/ Currently at Singapore
    Posts
    372

    Embedding flash code missing after posted.

    Hi all,

    I'm facing a problem. I want to embed a flash into a web content.

    I try the following code.

    html Code:
    1. <td rowspan="16" colspan="5"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="XXX\XX\XX\XX\FP_AX_CAB_INSTALLER.exe" width="550" height="440" VIEWASTEXT>
    2.      <param name="movie" value="http://XX/XX/XX/XX/Images.EML/WEBSITE_R6-C7.swf" />
    3.      <param name="quality" value="high" />
    4.      <embed src="http://XX/XX/XX/XX/Images.EML/WEBSITE_R6-C7.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="550" height="440"></embed>
    5.    </object></td>

    It is work fine in my local PC, after I uploaded the page to exchange server the code will missing.

    Html Code:
    1. <td rowspan="16" colspan="5">
    2.      
    3. [COLOR="Red"]     Nothing Here [/COLOR]
    4.      
    5.    </td>


    Why this will be happened ? Any one know how to solve the problem.

    Your help is appreciated. Thanks
    Where there is no hope, there can be no endeavor.

    There are two ways of rising in the world, either by your own industry or by the folly of others.

  2. #2
    PowerPoster Nightwalker83's Avatar
    Join Date
    Dec 2001
    Location
    Adelaide, Australia
    Posts
    13,344

    Re: Embedding flash code missing after posted.

    Your code needs to be set out like:

    Code:
    <object classid="" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="" height="" tabindex="" title="">
      <param name="movie" value="" />
      <param name="quality" value="high" />
    </object>
    Also changing the colour of a flash object needs to be done before the object is compiled using flash. It can't be done once the object is compiled.
    when you quote a post could you please do it via the "Reply With Quote" button or if it multiple post click the "''+" button then "Reply With Quote" button.
    If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
    https://get.cryptobrowser.site/30/4111672

  3. #3

    Thread Starter
    Hyperactive Member nUflAvOrS's Avatar
    Join Date
    Jul 2007
    Location
    Malaysia/ Currently at Singapore
    Posts
    372

    Re: Embedding flash code missing after posted.

    Quote Originally Posted by Nightwalker83
    Your code needs to be set out like:

    Code:
    <object classid="" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="" height="" tabindex="" title="">
      <param name="movie" value="" />
      <param name="quality" value="high" />
    </object>
    Also changing the colour of a flash object needs to be done before the object is compiled using flash. It can't be done once the object is compiled.

    Thanks Sir, I have been used your method. However it remain the same.
    The code of object will missing after posted to exchange server.

    Furthermore, what is the meaning of Also changing the colour of a flash object needs to be done before the object is compiled using flash. It can't be done once the object is compiled.

    Thanks your help
    Where there is no hope, there can be no endeavor.

    There are two ways of rising in the world, either by your own industry or by the folly of others.

  4. #4
    PowerPoster Nightwalker83's Avatar
    Join Date
    Dec 2001
    Location
    Adelaide, Australia
    Posts
    13,344

    Re: Embedding flash code missing after posted.

    Quote Originally Posted by nUflAvOrS
    Furthermore, what is the meaning of Also changing the colour of a flash object needs to be done before the object is compiled using flash. It can't be done once the object is compiled.
    Ah, I just understood that you wanted to change the colour of the flash object once it was embedded in to the web page.
    when you quote a post could you please do it via the "Reply With Quote" button or if it multiple post click the "''+" button then "Reply With Quote" button.
    If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
    https://get.cryptobrowser.site/30/4111672

  5. #5

    Thread Starter
    Hyperactive Member nUflAvOrS's Avatar
    Join Date
    Jul 2007
    Location
    Malaysia/ Currently at Singapore
    Posts
    372

    Re: Embedding flash code missing after posted.

    Quote Originally Posted by Nightwalker83
    Ah, I just understood that you wanted to change the colour of the flash object once it was embedded in to the web page.
    Thanks nightwalker83

    I did not want to change color once it was embedded in to the web page.

    What I want to do is embed a .swf file to the web page however it work fine in my local pc but failed after posted to exchange server. I view the source of htm file. The flash object code will be missing after posted.

    I feel weird of this issue.

    Sorry because I'm just a newbie.
    Where there is no hope, there can be no endeavor.

    There are two ways of rising in the world, either by your own industry or by the folly of others.

  6. #6
    PowerPoster Nightwalker83's Avatar
    Join Date
    Dec 2001
    Location
    Adelaide, Australia
    Posts
    13,344

    Re: Embedding flash code missing after posted.

    This is the full code I use when embedding flash in to a web page:

    Code:
    <script type="text/javascript">
    AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','328','height','309','tabindex','15','title','video','movie','movie path here','quality','high' ); //end AC code
          </script>
          <noscript>
          <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="328" height="309" tabindex="" title="video">
            <param name="movie" value="" />
            <param name="quality" value="high" />
          </object>
          </noscript>
    Not sure if the "AC_FL_RunContent" script code is relevant to your code or not. Which website creation program are you using? This code is written using Dream Weaver CS3.
    when you quote a post could you please do it via the "Reply With Quote" button or if it multiple post click the "''+" button then "Reply With Quote" button.
    If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
    https://get.cryptobrowser.site/30/4111672

  7. #7

    Thread Starter
    Hyperactive Member nUflAvOrS's Avatar
    Join Date
    Jul 2007
    Location
    Malaysia/ Currently at Singapore
    Posts
    372

    Re: Embedding flash code missing after posted.

    I found the solution to overcome my problem but another problem raised up.
    My server do not have flash player so cannot run flash as well. Thus, I planned to install the flash player from adobe site. My server specification too low. IE is only IE 5. I will try install the adobe flash player and reboot it tonight.

    Is it one of the possibility ?
    Where there is no hope, there can be no endeavor.

    There are two ways of rising in the world, either by your own industry or by the folly of others.

  8. #8
    PowerPoster Nightwalker83's Avatar
    Join Date
    Dec 2001
    Location
    Adelaide, Australia
    Posts
    13,344

    Re: Embedding flash code missing after posted.

    I'm not sure if Flash-player is the only flash player available but in my opinion it is the best. See if you can install IE 7 I think you might be able upgrade straight to IE 7 from IE 5.

    Source: http://www.microsoft.com/windows/dow...ie/sysreq.mspx
    Computer/Processor


    Computer with a 233MHz processor or higher (Pentium processor recommended)



    Operating System


    Windows XP Service Pack 2 (SP2), Windows XP Service Pack 3 (SP3), Windows XP Professional x64 Edition, or Windows Server 2003 Service Pack 1 (SP1)



    Memory


    For Internet Explorer 7:

    * Windows XP Service Pack 2 (SP2) - 64 MB
    * Windows XP Service Pack 3 (SP3) - 64 MB
    * Windows XP Professional x64 Edition - 128 MB
    * Windows Server 2003 Service Pack 1 (SP1) - 64 MB
    * Windows Server 2003 Service Pack 1 ia64 - 128 MB




    Drive


    CD-ROM drive (if installation is done from a CD-ROM)



    Display


    Super VGA (800 x 600) or higher-resolution monitor with 256 colors



    Peripherals


    Modem or Internet connection; Microsoft Mouse, Microsoft IntelliMouse, or compatible pointing device
    when you quote a post could you please do it via the "Reply With Quote" button or if it multiple post click the "''+" button then "Reply With Quote" button.
    If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
    https://get.cryptobrowser.site/30/4111672

Posting Permissions

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



Click Here to Expand Forum to Full Width