Screen frozen on cube. Please Advise

  • 6 posts
  1. Hi, I have searched this forum and it seems that a lot of people have had the same problem in the past with cu3er getting stuck at the logo. I have tried the different path setting from relative to absolute, but I am still having issues with it. Here is my code:

    config.xml

    [code]<?xml version="1.0" encoding="utf-8" ?>
    <cu3er>
    <settings>

    <prev_button>
    <defaults round_corners="5,5,5,5"/>
    <tweenOver tint="0xFFFFFF" scaleX="1.1" scaleY="1.1"/>
    <tweenOut tint="0x000000" />
    </prev_button>

    <prev_symbol>
    <tweenOver tint="0x000000" />
    </prev_symbol>

    <next_button>
    <defaults round_corners="5,5,5,5"/>
    <tweenOver tint="0xFFFFFF" scaleX="1.1" scaleY="1.1"/>
    <tweenOut tint="0x000000" />
    </next_button>

    <next_symbol>
    <tweenOver tint="0x000000" />
    </next_symbol>

    </settings>

    <slides>

    <slide>
    <url>http://www.nationalfitnesspro.com/Images/slide_1.jpg</url>
    </slide>
    <!-- changing transition between first & second slide -->
    <transition num="3" slicing="vertical" direction="down"/>
    <slide>
    <url>http://www.nationalfitnesspro.com/Images/slide_2.jpg</url>
    </slide>
    <!-- changing transition between second & third slide -->
    <transition num="4" direction="right" shader="flat" />
    <slide>
    <url>http://www.nationalfitnesspro.com/Images/slide_3.jpg</url>
    </slide>
    <!-- transitions properties defined in transitions template -->
    <slide>
    <url>http://www.nationalfitnesspro.com/Images/slide_4.jpg</url>
    </slide>
    <transition num="6" slicing="vertical" direction="up" shader="flat" delay="0.05" z_multiplier="4" />
    <slide>
    <url>http://www.nationalfitnesspro.com/Images/slide_5.jpg</url>
    </slide>

    </slides>
    </cu3er>[code]

    My script in my index page:
    [code]<!-- STEP ONE: insert path to SWFObject JavaScript -->
    <script type="text/javascript" src="http://www.nationalfitnesspro.com/js/swfobject/swfobject.js"></script>

    <!-- STEP TWO: configure SWFObject JavaScript and embed CU3ER slider -->
    <script type="text/javascript">
    var flashvars = {};
    flashvars.xml = "config.xml";
    flashvars.font = "font.swf";
    var attributes = {};
    attributes.wmode = "transparent";
    attributes.id = "slider";
    swfobject.embedSWF("cu3er.swf", "cu3er-container", "600", "200", "9", "expressInstall.swf", flashvars, attributes);
    </script>[code]

    and my body:

    [code]<div id="header_wrapper">
    <div id="header"><div id="logo_header"><div id="cu3er-container">
    </div></div></div>
    </div>[code]

    Thank you! I know this is a redundant question!

  2. i should point out the script is in the <head>

  3. I also changed the "I" in images to "i".

    my site

    http://www.nationalfitnesspro.com

  4. Hi,

    check your XML on the site ... images are defined like:

    /cu3er/images/slide_1.jpg

    so obviously CU3ER can't find images:

    http://www.nationalfitnesspro.com/cu3er/images/slide_1.jpg

    Thanks.

  5. that worked! thanks.

  6. adickr

    1 month ago

    Hi, great post Stefan! This slideshow is great!
    I have managed to get this working in my aspx page within master page. The image path is crucial!


Reply

You must log in to post.