Results 1 to 10 of 29

Hybrid View

  1. #1

    Default Re: Flash header help please

    hi misty, he has just emailed me back the height and width of the swf file do i need anything else from him to create the swf code

    790 x 153

    rgds
    Chas

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

    Default Re: Flash header help please

    Try
    Code:
    <div id="headerWrapper">
    <!--bof-branding display-->
        <script type="text/javascript" src="includes/templates/Series_12_Camera/jscript/swfobject.js"></script>
    	<div id="flashcontent">
    	  <center>
    	  <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
    	    codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,0,0"
    	    id="header" width="790" height="153">
    	    <param name="movie" value="header.swf">
    	    <param name="quality" value="high">
    	    <param name="bgcolor" value="#FFFFFF">
    	    <embed name="header" src="header.swf" quality="high" bgcolor="#FFFFFF"
    	      width="790" height="153"
    	      type="application/x-shockwave-flash"
    	      pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">
    	    </embed>
    	  </object>
    </center>
    	<script type="text/javascript">
    	   var so = new SWFObject("includes/templates/Series_12_Camera/images/flash/header.swf", "YOUR_HEADER", "790", "153", "7", "#FFFFFF");
    	   so.write("flashcontent");
    </script>
    </div>
    <!--eof-branding display-->

  3. #3

    Default Re: Flash header help please

    Thanks for the help misty, just a quick question before i start, is tpl_header.php the only file i have to add the codes too, do i have to remove any code to stop the old header showing?

    thanks again and sorry if im being a pain

    Chas

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

    Default Re: Flash header help please

    tpl_header.php the only file i have to add the codes too
    You should have that file in includes/templates/Series_12_Camera/common/
    and code I laid out in previous post, goes into that tpl_header.php file.
    As always, BACK UP any files BEFORE altering...

  5. #5

    Default Re: Flash header help please

    all added as you posted misty, but main page is still showing the old header for some reason. below is the full file incase i have replaced/changed something i shouldnt have

    <?php
    /**
    * Common Template - tpl_header.php
    *
    * this file can be copied to /templates/your_template_dir/pagename<br />
    * example: to override the privacy page<br />
    * make a directory /templates/my_template/privacy<br />
    * copy /templates/templates_defaults/common/tpl_footer.php to /templates/my_template/privacy/tpl_header.php<br />
    * to override the global settings and turn off the footer un-comment the following line:<br />
    * <br />
    * $flag_disable_header = true;<br />
    *
    * @package templateSystem
    * @copyright Copyright 2003-2006 Zen Cart Development Team
    * @copyright Portions Copyright 2003 osCommerce
    * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    * @version $Id: tpl_header.php 4813 2006-10-23 02:13:53Z drbyte $
    */
    ?>

    <?php
    // Display all header alerts via messageStack:
    if ($messageStack->size('header') > 0) {
    echo $messageStack->output('header');
    }
    if (isset($_GET['error_message']) && zen_not_null($_GET['error_message'])) {
    echo htmlspecialchars(urldecode($_GET['error_message']));
    }
    if (isset($_GET['info_message']) && zen_not_null($_GET['info_message'])) {
    echo htmlspecialchars($_GET['info_message']);
    } else {

    }
    ?>


    <!--bof-header logo and navigation display-->
    <?php
    if (!isset($flag_disable_header) || !$flag_disable_header) {
    ?>

    <div id="headerWrapper">
    <!--bof-navigation display-->
    <div id="navMainWrapper">
    <div id="navMain">
    <ul class="back">
    <li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><?php echo HEADER_TITLE_CATALOG; ?></a></li>
    <?php if ($_SESSION['customer_id']) { ?>
    <li><a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGOFF; ?></a></li>
    <li><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a></li>
    <?php
    } else {
    if (STORE_STATUS == '0') {
    ?>
    <li><a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGIN; ?></a></li>
    <?php } } ?>

    <?php if ($_SESSION['cart']->count_contents() != 0) { ?>
    <li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a></li>
    <li><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a></li>
    <?php }?>
    </ul>
    </div>
    <div id="navMainSearch"><?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?></div>
    <br class="clearBoth" />
    </div>
    <!--eof-navigation display-->

    <div id="headerWrapper">
    <!--bof-branding display-->
    <script type="text/javascript" src="includes/templates/Series_12_Camera/jscript/swfobject.js"></script>
    <div id="flashcontent">
    <center>
    <object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000"
    codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,0,0"
    id="header" width="790" height="153">
    <param name="movie" value="header.swf">
    <param name="quality" value="high">
    <param name="bgcolor" value="#FFFFFF">
    <embed name="header" src="header.swf" quality="high" bgcolor="#FFFFFF"
    width="790" height="153"
    type="application/x-shockwave-flash"
    pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">
    </embed>
    </object>
    </center>
    <script type="text/javascript">
    var so = new SWFObject("includes/templates/Series_12_Camera/images/flash/header.swf", "YOUR_HEADER", "790", "153", "7", "#FFFFFF");
    so.write("flashcontent");
    </script>
    </div>
    <!--eof-branding display-->

    <!--eof-header logo and navigation display-->

    <!--bof-optional categories tabs navigation display-->
    <?php require($template->get_template_dir('tpl_modules_categories_tabs.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_categories_tabs.php'); ?>
    <!--eof-optional categories tabs navigation display-->

    <!--bof-header ezpage links-->
    <?php if (EZPAGES_STATUS_HEADER == '1' or (EZPAGES_STATUS_HEADER == '2' and (strstr(EXCLUDE_ADMIN_IP_FOR_MAINTENANCE, $_SERVER['REMOTE_ADDR'])))) { ?>
    <?php require($template->get_template_dir('tpl_ezpages_bar_header.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_ezpages_bar_header.php'); ?>
    <?php } ?>
    <!--eof-header ezpage links-->
    </div>

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

    Default Re: Flash header help please

    Visited site at www.inkandcables.co.uk
    View source in browser... none of the code I gave you is shown, so
    which tpl_header.php file did you alter??

  7. #7

    Default Re: Flash header help please

    /www/includes/templates/Series_12_Camera/common/

 

 

Similar Threads

  1. Flash in header banner help please
    By chalfontgifts in forum General Questions
    Replies: 5
    Last Post: 20 Sep 2008, 09:09 AM
  2. Flash Header won't work? Please Help
    By craigpowell in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 16 Sep 2008, 01:00 PM
  3. Flash Header -- help!!
    By gshibs in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 14 Jun 2007, 01:13 AM
  4. help with flash header
    By wizzard in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 1 Jun 2007, 05:58 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