Page 10 of 24 FirstFirst ... 8910111220 ... LastLast
Results 91 to 100 of 235
  1. #91
    Join Date
    Apr 2004
    Location
    UK
    Posts
    5,821
    Plugin Contributions
    2

    Default Re: Problem with Flash Header

    How can i help you to help me figure this out.
    YOU DID NOT DO what I requested in my last post
    i.e.
    This text is replaced by the Flash movie.
    Please post EXACT code you have there

  2. #92
    Join Date
    Apr 2008
    Posts
    283
    Plugin Contributions
    0

    Default Re: Problem with Flash Header

    Unless I am not understanding the question that is what i did. I am in zen carts admin in define pages for photogallery.php. Under plain html all the code that is in there RIGHT NOW is what i posted in my last post. If this is not what you are looking for i am sorry for misunderstanding you please explain.

  3. #93
    Join Date
    Apr 2004
    Location
    UK
    Posts
    5,821
    Plugin Contributions
    2

    Default Re: Problem with Flash Header

    Your previous post number 84

    So what i did was when to the define page editor and placed this code into the html page
    Code:
     
    <script type="text/javascript" src="includes/templates/arch_shoppe/jscript/swfobject.js"></script>
    <div id="flashcontent">
    This text is replaced by the Flash movie.
    </div>
    <script type="text/javascript">
    var so = new SWFObject("gallery3/photo_tutorial.swf", "photo_tutorial.swf", "550", "560", "7", "#000000");
    so.write("flashcontent");
    </script>
    Marked red...is that all you have there?? NO CODE for flash?
    If so this is incorrect.

  4. #94
    Join Date
    Apr 2008
    Posts
    283
    Plugin Contributions
    0

    Default Re: Problem with Flash Header

    OH yes that is exactly what i have. I am sorry lol. I actually thought that the text there would mean that if the flash object was unavailabe or something this text would be in its place. So what needs to go there? The url as gallery3/photo_tutorial.swf. or just photo_tutorial.swf?

  5. #95
    Join Date
    Apr 2004
    Location
    UK
    Posts
    5,821
    Plugin Contributions
    2

    Default Re: Problem with Flash Header

    SAMPLE code below should be what goes at
    This text is replaced by the Flash movie.
    i.e.
    Code:
    <script type="text/javascript" src="includes/templates/yourtemplate/js/swfobject.js"></script>
     <div id="flashcontent">
       <center>
       <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
         codebase="http://active.macromedia.com/flash2/...ersion=4,0,0,0"
         id="Movie7a" width="760" height="194">
         <param name="movie" value="Movie7a.swf">
         <param name="quality" value="high">
         <param name="bgcolor" value="#FFCCCC">
         <embed name="Movie7a" src="Movie7a.swf" quality="high" bgcolor="#FFCCCC"
           width="760" height="194"
           type="application/x-shockwave-flash"
           pluginspage="http://www.macromedia.com/shockwave/...ShockwaveFlash">
         </embed>
       </object>
    </center>
     <script type="text/javascript">
        var so = new SWFObject("includes/templates/yourtemplate/Movie7a.swf", "YOUR_HEADER", "760", "194", "7", "#FFCCCC");
        so.write("flashcontent");
    </script>
    THIS IS WHY your flash is not working..most of required
    flash code is missing.

  6. #96
    Join Date
    Apr 2008
    Posts
    283
    Plugin Contributions
    0

    Default Re: Problem with Flash Header

    OK i have put this in...This is my full code. Is this correct or did i screw something else up?

    Code:
    
    <script type="text/javascript" src="includes/templates/arch_shoppe/jscript/swfobject.js"></script>
     <div id="flashcontent">
       <center>
       <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
         codebase="http://active.macromedia.com/flash2/...ersion=4,0,0,0"
         id="Movie7a" width="760" height="194">
         <param name="movie" value="photo_tutorial.swf">
         <param name="quality" value="high">
         <param name="bgcolor" value="#FFCCCC">
         <embed name="Movie7a" src="gallery3/photo_tutorial.swf" quality="high" bgcolor="#FFCCCC"
           width="760" height="194"
           type="application/x-shockwave-flash"
           pluginspage="http://www.macromedia.com/shockwave/...ShockwaveFlash">
         </embed>
       </object>
    </center>
     <script type="text/javascript">
        var so = new SWFObject("gallery3/photo_tutorial.swf", "photo_tutorial.swf", "760", "494", "7", "#FFCCCC");
        so.write("flashcontent");
    </script>

  7. #97
    Join Date
    Apr 2004
    Location
    UK
    Posts
    5,821
    Plugin Contributions
    2

    Default Re: Problem with Flash Header

    Code:
    <script type="text/javascript" src="includes/templates/arch_shoppe/jscript/swfobject.js"></script>
     <div id="flashcontent">
       <center>
       <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
         codebase="http://active.macromedia.com/flash2/...ersion=4,0,0,0"
         id="Movie7a" width="760" height="194">
         <param name="movie" value="photo_tutorial.swf">
         <param name="quality" value="high">
         <param name="bgcolor" value="#FFCCCC">
         <embed name="Movie7a" src="gallery3/photo_tutorial.swf" quality="high" bgcolor="#FFCCCC"
           width="760" height="194"
           type="application/x-shockwave-flash"
           pluginspage="http://www.macromedia.com/shockwave/...ShockwaveFlash">
         </embed>
       </object>
    </center>
     <script type="text/javascript">
        var so = new SWFObject("gallery3/photo_tutorial.swf", "photo_tutorial.swf", "760", "494", "7", "#FFCCCC");
        so.write("flashcontent");
    </script>
    You have copied my SAMPLE CODE..
    you need to adapt/replace certain parts of that code with
    your own paths/sizes etc..
    Marked red is incorrect and
    it is NOT your full code...
    This code should be what goes at
    This text is replaced by the Flash movie.
    Last edited by misty; 16 Jun 2008 at 07:30 PM. Reason: added extra incorrect coding colour

  8. #98
    Join Date
    Apr 2008
    Posts
    283
    Plugin Contributions
    0

    Default Re: Problem with Flash Header

    WOW!!! OK i am very confused but this is what i tried doing. I copied the first piece of code you gave me at the beginning which was;

    Code:
    <script type="text/javascript" src="includes/templates/arch_shoppe/jscript/swfobject.js"></script>
    <div id="flashcontent">
      This text is replaced by the Flash movie.
    </div>
    <script type="text/javascript">
       var so = new SWFObject("includes/templates/arch_shoppe/photo_tutorial.swf", "photo_tutorial.swf", "550", "460", "7", "#000000");
       so.write("flashcontent");
    </script>

    I then added the last piece of code you gave me which was


    Code:
    
    <script type="text/javascript" src="includes/templates/arch_shoppe/jscript/swfobject.js"></script>
     <div id="flashcontent">
       <center>
       <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
         codebase="http://active.macromedia.com/flash2/...ersion=4,0,0,0"
         id="Movie7a" width="760" height="194">
         <param name="movie" value="photo_tutorial.swf">
         <param name="quality" value="high">
         <param name="bgcolor" value="#FFCCCC">
         <embed name="Movie7a" src="gallery3/photo_tutorial.swf" quality="high" bgcolor="#FFCCCC"
           width="760" height="194"
           type="application/x-shockwave-flash"
           pluginspage="http://www.macromedia.com/shockwave/...ShockwaveFlash">
         </embed>
       </object>
    </center>
     <script type="text/javascript">
        var so = new SWFObject("gallery3/photo_tutorial.swf", "photo_tutorial.swf", "760", "494", "7", "#FFCCCC");
        so.write("flashcontent");
    </script>


    Then i changed it to what i think it should be which is still wrong probably. I am not sure what to replace Movie7a with. I was thinking the name of the swf file. Here is my FULL current code.


    Code:
    
     
    <script type="text/javascript" src="includes/templates/arch_shoppe/jscript/swfobject.js"></script>
    <div id="flashcontent">
    
    
    
    
    
    <script type="text/javascript" src="includes/templates/arch_shoppe/jscript/swfobject.js"></script>
     <div id="flashcontent">
       <center>
       <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
         codebase="http://active.macromedia.com/flash2/...ersion=4,0,0,0"
         id="photo_tutorial.swf" width="760" height="194">
         <param name="movie" value="photo_tutorial.swf">
         <param name="quality" value="high">
         <param name="bgcolor" value="#FFCCCC">
         <embed name="photo_tutorial.swf" src="/photo_tutorial.swf" quality="high" bgcolor="#FFCCCC"
           width="760" height="194"
           type="application/x-shockwave-flash"
           pluginspage="http://www.macromedia.com/shockwave/...ShockwaveFlash">
         </embed>
       </object>
    </center>
     <script type="text/javascript">
        var so = new SWFObject("includes/templates/arch_shoppe/jscript/swfobject.js", "photo_tutorial.swf", "760", "494", "7", "#FFCCCC");
        so.write("flashcontent");
    </script>
    
    
    
    
    
    </div>
    <script type="text/javascript">
    var so = new SWFObject("includes/templates/arch_shoppe/jscript/swfobject.js", "550", "560", "7", "#000000");
    so.write("flashcontent");
    </script>

  9. #99
    Join Date
    Apr 2004
    Location
    UK
    Posts
    5,821
    Plugin Contributions
    2

    Default Re: Problem with Flash Header

    Still incorrect re YOUR Sizes,Colours and PATHS, marked RED
    Code:
    <script type="text/javascript" src="includes/templates/arch_shoppe/jscript/swfobject.js"></script>
     <div id="flashcontent">
       <center>
       <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
         codebase="http://active.macromedia.com/flash2/...ersion=4,0,0,0"
         id="photo_tutorial.swf" width="760" height="194">
         <param name="movie" value="photo_tutorial.swf">
         <param name="quality" value="high">
         <param name="bgcolor" value="#FFCCCC">
         <embed name="photo_tutorial.swf" src="/photo_tutorial.swf" quality="high" bgcolor="#FFCCCC"
           width="760" height="194"
           type="application/x-shockwave-flash"
           pluginspage="http://www.macromedia.com/shockwave/...ShockwaveFlash">
         </embed>
       </object>
    </center>
     <script type="text/javascript">
        var so = new SWFObject("includes/templates/arch_shoppe/jscript/swfobject.js", "photo_tutorial.swf", "760", "194", "7", "#FFCCCC");
        so.write("flashcontent");
    </script>

  10. #100
    Join Date
    Apr 2008
    Posts
    283
    Plugin Contributions
    0

    Default Re: Problem with Flash Header

    Its not working...The size and color shouldnt matter. I can change that to make it proportional or fit better on the page later. I just need it to work corerctly and it doesn't seem to be doing anything.


    Code:
    
     
    <script type="text/javascript" src="includes/templates/arch_shoppe/jscript/swfobject.js"></script>
    <div id="flashcontent">
    
    
    
    
    
    <script type="text/javascript" src="includes/templates/arch_shoppe/jscript/swfobject.js"></script>
     <div id="flashcontent">
       <center>
       <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
         codebase="http://active.macromedia.com/flash2/...ersion=4,0,0,0"
         id="photo_tutorial.swf" width="600" height="450">
         <param name="movie" value="photo_tutorial.swf">
         <param name="quality" value="high">
         <param name="bgcolor" value="#FFCCCC">
         <embed name="/gallery3/photo_tutorial.swf" src="photo_tutorial.swf" quality="high" bgcolor="#FFCCCC"
           width="600" height="450"
           type="application/x-shockwave-flash"
           pluginspage="http://www.macromedia.com/shockwave/...ShockwaveFlash">
         </embed>
       </object>
    </center>
     <script type="text/javascript">
        var so = new SWFObject("includes/templates/arch_shoppe/jscript/swfobject.js", "photo_tutorial.swf", "600", "450", "7", "#FFCCCC");
        so.write("flashcontent");
    </script>
    
    
    
    
    
    </div>
    <script type="text/javascript">
    var so = new SWFObject("includes/templates/arch_shoppe/jscript/swfobject.js", "600", "450", "7", "#000000");
    so.write("flashcontent");
    </script>

 

 
Page 10 of 24 FirstFirst ... 8910111220 ... LastLast

Similar Threads

  1. v150 Problem with flash header size
    By GodfatherAntiques in forum Templates, Stylesheets, Page Layout
    Replies: 16
    Last Post: 21 Mar 2012, 10:12 AM
  2. Problem with flash on main page (not header)
    By sartor in forum General Questions
    Replies: 7
    Last Post: 14 Jan 2009, 10:59 AM
  3. Once again problem with Flash header
    By craigpowell in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 22 Sep 2008, 01:42 AM
  4. Problem with Flash Header pt2
    By hondauser85 in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 6 Jun 2007, 04:03 PM
  5. help with flash header
    By wizzard in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 1 Jun 2007, 05:58 PM

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
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR