Page 1 of 2 12 LastLast
Results 1 to 10 of 17
  1. #1
    Join Date
    Feb 2007
    Posts
    24
    Plugin Contributions
    0

    help question How to do Flash Header

    I have read FAQ and all postings here. Still can't find THE STEP BY STEP to say which file(s) and where to modify.
    All threads are written for more experience people. Can some one once and for all writes a short but clear cook book on how to creat flash header?

  2. #2
    Join Date
    Jun 2005
    Location
    Cumbria, UK
    Posts
    10,267
    Plugin Contributions
    3

    Default Re: How to do Flash Header

    There are lots of posts on this subject already, suggesting easy and advanced methods - do a search and I'm sure you'll find them.
    20 years a Zencart User

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

    Default Re: How to do Flash Header


  4. #4
    Join Date
    Feb 2007
    Posts
    24
    Plugin Contributions
    0

    bug Re: How to do Flash Header

    Thanks, but I have seen that post and have followed it, I have end up with a white box on top of my screen. here is my site: www.iantiquerugs.com

    The things that I am not sure are:
    1- Where and which file should I add:
    <scriptsrc="includes/templates/template_default/jscript/paragone.js"></script>

    2- Considering the below script (saved at ../templates/template_default/jscript/), where should I store my flashheader.swf???

    document.write('<OBJECT classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000"');
    document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"');
    document.write('WIDTH="950" HEIGHT="200" id="flashheader" ALIGN="">');
    document.write('<PARAM NAME=movie VALUE="flashheader.swf"> <PARAM NAME=loop VALUE=false> <PARAM NAME=menu VALUE=false> <PARAM NAME=quality VALUE=high> <PARAM NAME=bgcolor VALUE=#555555> <EMBED src="flashheader.swf" loop=false menu=false quality=high bgcolor=#123456 WIDTH="950" HEIGHT="200" NAME="flashheader" ALIGN=""');
    document.write('TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>');
    document.write('</OBJECT>');
    Last edited by Jedward; 19 Mar 2007 at 01:58 AM.

  5. #5
    Join Date
    Feb 2007
    Posts
    24
    Plugin Contributions
    0

    Default Re: How to do Flash Header

    Quote Originally Posted by schoolboy View Post
    There are lots of posts on this subject already, suggesting easy and advanced methods - do a search and I'm sure you'll find them.
    what kind of help is this?

  6. #6
    Join Date
    Jan 2004
    Posts
    66,446
    Plugin Contributions
    81

    Default Re: How to do Flash Header

    Quote Originally Posted by Jedward View Post
    2- Considering the below script (saved at ../templates/template_default/jscript/), where should I store my flashheader.swf???
    HTML Code:
    <PARAM NAME=movie VALUE="flashheader.swf">
    <EMBED src="flashheader.swf"
    Since there is no path specified in the call to the swf file, then you'd upload the swf file to the same folder as your /index.php file.
    ie: public_html for example.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  7. #7
    Join Date
    Feb 2007
    Posts
    24
    Plugin Contributions
    0

    Default Re: How to do Flash Header

    I saved flashheader.swf in the root and still I have no flash banner......
    Many poeple have done it and know the trick but not me
    Any idea?

  8. #8
    Join Date
    Jan 2004
    Posts
    66,446
    Plugin Contributions
    81

    Default Re: How to do Flash Header

    Your flash header looks fine in Firefox.
    Doesn't seem to be loading in IE though.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  9. #9
    Join Date
    Feb 2007
    Posts
    24
    Plugin Contributions
    0

    help question Re: How to do Flash Header

    If it shows fine in firefox and not in IE then where have been wrong?

  10. #10
    Join Date
    Jan 2004
    Posts
    66,446
    Plugin Contributions
    81

    Default Re: How to do Flash Header

    Something's wrong with the HTML content being used to load the flash object in the javascript block.

    I'm not sure what all you've done exactly, but the javascript you're using to load the flash object needs to be replaced with this:
    HTML Code:
    <script language="javascript" type="text/javascript">
    document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ');
    document.write(' codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="950" height="200">');
    document.write('<param name="movie" value="flashheader.swf" /><param name="quality" value="high" /><param name="wmode" value="transparent" />');
    document.write('<embed src="flashheader.swf" width="950" height="200" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent"></embed>');
    document.write('</object>');
    </script>
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. How to remove flash header?
    By ariel_cepeda in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 6 Sep 2009, 06:00 PM
  2. How about a flash menu in the header?
    By wacx in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 10 Apr 2008, 03:45 AM
  3. How to display flash header only on main page?
    By funksdaburn in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 18 Sep 2007, 07:59 PM

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