3 replies
  • WEB DESIGN
  • |
Hi all

I was looking around and I happen to come across something that owuld be really nice to add to one of my sites.

I want to know if any of you Warriors now how this was done. If you now the exact tool / plug-in or tool to get this exact look.

Not similar, but exactly...

Have a look at this site : MarketingDotCom.com

See the very nice rotating images at the top inside the image box. How it only moves one place when you push the button.

I have found a number of carousels based on jquery, but they just are not smooth or move so fast that they make my head spin after a few minutes... The one above has a very nice feel to it for me.

I think this is based upon JQuery or MooTools, but for the life of me I can't find the thing on the net.

Any assistance would be greatly appreciated.

Have a Great Day!
  • Profile picture of the author Nitro
    It`s made with Flash
    Signature
    {{ DiscussionBoard.errors[1166069].message }}
    • Profile picture of the author Susan Hope
      I just viewed source and picked out this:

      "AC_RunActiveContent.js." from the source code.

      Then went and put that into google search and got this set of results

      "Google Search"

      This is the piece I got it from in the source code:
      HTML Code:
      <script language="javascript">
          if (AC_FL_RunContent == 0) {
              alert("This page requires AC_RunActiveContent.js.");
          } else {
              AC_FL_RunContent(
                  'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0',
                  'width', '885',
                  'height', '277',
                  'src', '3DRotateCarousel',
                  'quality', 'high',
                  'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
                  'align', 'middle',
                  'play', 'true',
                  'loop', 'true',
                  'scale', 'showall',
                  'wmode', 'window',
                  'devicefont', 'false',
                  'id', '3DRotateCarousel',
                  'bgcolor', '#171717',
                  'name', '3DRotateCarousel',
                  'menu', 'false',
                  'allowFullScreen', 'false',
                  'allowScriptAccess','sameDomain',
                  'movie', '3DRotateCarousel',
                  'salign', ''
                  ); //end AC code
          }
      </script>
      Hope that helps
      Sue
      Signature
      One-to-One WordPress Coaching Service Available at Low Hourly Rate - Let the frustration end now! WordPress Installs, Theme Design, Site Tweaks & other WordPress services available
      Find me on Pinterest: PINTEREST
      {{ DiscussionBoard.errors[1166088].message }}
      • Profile picture of the author Richard Whyte
        Hey Susanne

        Yea, I saw those lines and that is a standard one used by
        Flash so that it auto plays and the person viewing the site
        does not need to press the Play button to start the Flash
        moving working.

        The ones I am more interested in are the MooTools, accordion
        scripts.

        I think this is a combination of Flash and MooTools code to do this.

        <script src="js/mootools.js" type="text/javascript"></script>
        <script src="js/accordion.js" type="text/javascript"></script>
        <script src="js/main.js" type="text/javascript"></script>
        <script language="javascript">AC_FL_RunContent = 0;</script>
        <script src="AC_RunActiveContent.js" language="javascript"></script>

        Have a Great Day!

        Richard


        Originally Posted by SusanneUK View Post

        I just viewed source and picked out this:

        "AC_RunActiveContent.js." from the source code.

        Then went and put that into google search and got this set of results

        "Google Search"

        This is the piece I got it from in the source code:
        HTML Code:
        <script language="javascript">
            if (AC_FL_RunContent == 0) {
                alert("This page requires AC_RunActiveContent.js.");
            } else {
                AC_FL_RunContent(
                    'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0',
                    'width', '885',
                    'height', '277',
                    'src', '3DRotateCarousel',
                    'quality', 'high',
                    'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
                    'align', 'middle',
                    'play', 'true',
                    'loop', 'true',
                    'scale', 'showall',
                    'wmode', 'window',
                    'devicefont', 'false',
                    'id', '3DRotateCarousel',
                    'bgcolor', '#171717',
                    'name', '3DRotateCarousel',
                    'menu', 'false',
                    'allowFullScreen', 'false',
                    'allowScriptAccess','sameDomain',
                    'movie', '3DRotateCarousel',
                    'salign', ''
                    ); //end AC code
            }
        </script>
        Hope that helps
        Sue
        {{ DiscussionBoard.errors[1167451].message }}

Trending Topics