Easy Rotator Z-index.

I'm trying to get a division to sit on top of an Easy Rotator slider, but the images are always at the the top of the stack no matter what the z-index settings are. Any advice about how I might work it all out?
Thanks.

Try
z-index:9999999
Yes, seven nines!!!!!

Similar Messages

  • Link thumbnails in separate page to specific images in Easy Rotator?

    Hello.
    I have a a web page with a grid of 16 thumbnail images.
    I have a separate web page running an Easy Rotator Slideshow.
    I want to be able to click on a thumbnail and have Easy Rotator start with it's corresponding image rather than from the start.
    Thanks in advance for any help!

    Thanks for your reply!
    I'm sorry, but I don't have hosting yet. I copied and pasted the code below
    from the Easy Rotator Website. I'm able to open the Rotator (on a separate
    webpage), but only from the beginning. That's as far as I've been able to
    get.
    I don't understand the following instructions (below the code).
    I can't figure out how to link thumbnails to their corresponding images in
    the rotator. I also have multiple thumbs that I need to link.
    Thanks in advance for any help you can give based on what I've been able to
    send.
    Then, to link to a specific photo in the rotator, link to that rotator's
    page using er_col in the querystring. The er_col value should be the
    zero-base numeric index of the slide. For example, if you want to link to
    the third slide (index 2) in the rotator in gallery.html, use the following
    link:
    gallery.html?er_col=2
    When the gallery.html page loads, the rotator will jump to the third slide.
    If your rotator has multiple image categories, you can link to a specific
    category via the er_row parameter. As with er_col, er_row should be the
    zero-base index of the category. Building on our previous example, let's
    suppose you want to link to the third photo in the second category. Here's
    the link you would use:
    gallery.html?er_row=1&er_col=2
    Thank you!
    Lisa
    On Fri, Mar 8, 2013 at 10:20 PM, Sudarshan Thiagarajan <

  • White border around images in Easy Rotator

    I would like for there to be a small white border around my images when i put them into easy rotator.  I really just want there to be about a 5 px space around them that is really just the background.  I cant seem to find the right place in the code to make the div that holds the background color... which is white...to make it have like a 5 px padding..
    or even make a 5 px margin around all images.
    I even tried to place the border around my images when placing them in the rotator but the top still pushed all the way up and there was only the white space on the left right and obviously the bottom where the dots are that shows which number slide I am on.
    Where in the code will I find this so I can manipulate it... thanks again for always helping
    avery

    Without a link, it's all guesswork. 
    Use Chrome or Firefox to preview your page.  Right Click and select Inspect Elements.  This should give you some idea of which CSS selectors are used by Easy Rotator.
    Nancy O.

  • Easy Rotator Help

    When I insert an easy rotator on 4 of my 5 pages, it shows up like this :
    I need it to show normally.
    Anyone know what to do? Thank you.

    Here is the link : http://cortekxhgl.com/acumaticaerp.php
    This is what it should look like in dreamweaver. Thank you.

  • Easy rotator is moving when someone is zooming page

    Hello , I have recently opened new website and i have some problems with it...the link may show some errors because i just bought domain and it is still in propagation phase here is link:        http://www.designmansion.org                         Ok so the problem is i installed easy rotator on the site and it works perfectly but when someone zooms the page it is not moving with the page it is moving left or right and it is very bad...like for example if i zoom the page easy rotator goes to the right and i only see the half of it and the text and other images are moving correctly...so how to fix that pls help?  Thanks

    Your code is a total mess.  Use the validation tools below and fix reported errors before you try to tackle the layout issues.
    Code Validation Tools
    CSS - http://jigsaw.w3.org/css-validator/
    HTML - http://validator.w3.org/
    When your code is straightened out, upload your page again and post back.  Basically you just need to center your page with CSS and then apply a relatively positioned #wrapper division around your EasyRotator div.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • How to install a free Easy Rotator slider builder when the extension manager do not install it?

    I have found a free easy Rotator slider from DWuser.com to be used to my online portfolio but cannot install it. What to do? Any suggestion?
    Thanks

    Please send us a screenshot of the error message in Extension Manager.

  • Easy Rotator

    Anybody have issues with colors changing in the EasyRotator?  I've had issues with images changing color or intensity in my EasyRotator.  Is there a solution.  I most likely missed something...
    Thanks in advance

    I assume you mean this from the Exchange
    EasyRotator - Free jQuery Rotator / Slider Builder
    http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&extid=2396529
    In which browsers are you seeing this?
    Which operating system do you have?
    Can you post a link to your problem page?
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Easy question about indexes

    Hello,
    I have a table of 100000 rows:
    MyTable
    MyID number(4,0),
    Otherfields ,
    Name varchar2(30),
    LastName varchar(35),
    If I query and just select 60 rows from a total of 100000 rows:
    SELECT MyID, OtherFields, Name,LastName
    FROM MyTable
    WHERE MyID=11
    ORDER BY LastName,Name
    Actually I need an index for MyID field. But would I need an index for LastName and Name? I think I don't, because I'm not using those fields for filtering. Am I correct?
    Thanks!

    With this you could see more in detail the issues to consider at the time to index a table.
    SQL>
    SQL> create table mytable
      2  (
      3  myid number(4,0),
      4  name varchar2(30),
      5  lastname varchar(35));
    Table created.
    SQL>
    SQL> explain plan for
      2  select * from
      3  mytable where
      4  myid=11
      5  order by lastname, name;
    Explained.
    SQL> select * from table ( dbms_xplan.display );
    PLAN_TABLE_OUTPUT
    | Id  | Operation            |  Name       | Rows  | Bytes | Cost  |
    |   0 | SELECT STATEMENT     |             |       |       |       |
    |   1 |  SORT ORDER BY       |             |       |       |       |
    |   2 |   TABLE ACCESS FULL  | MYTABLE     |       |       |       |
    Note: rule based optimization, 'PLAN_TABLE' is old version
    10 rows selected.
    SQL> create index i1 on mytable(myid);
    Index created.
    SQL> explain plan for
      2  select * from
      3  mytable where
      4  myid=11
      5  order by lastname, name;
    Explained.
    SQL> select * from table ( dbms_xplan.display );
    PLAN_TABLE_OUTPUT
    | Id  | Operation                    |  Name       | Rows  | Bytes | Cost  |
    |   0 | SELECT STATEMENT             |             |       |       |       |
    |   1 |  SORT ORDER BY               |             |       |       |       |
    |   2 |   TABLE ACCESS BY INDEX ROWID| MYTABLE     |       |       |       |
    |   3 |    INDEX RANGE SCAN          | I1          |       |       |       |
    Note: rule based optimization, 'PLAN_TABLE' is old version
    11 rows selected.
    SQL>
    SQL>
    SQL> create index i2 on  mytable(myid,lastname, name);
    Index created.
    SQL> explain plan for
      2  select * from
      3  mytable where
      4  myid=11
      5  order by lastname, name;
    Explained.
    SQL> select * from table ( dbms_xplan.display );
    PLAN_TABLE_OUTPUT
    | Id  | Operation                    |  Name       | Rows  | Bytes | Cost  |
    |   0 | SELECT STATEMENT             |             |       |       |       |
    |   1 |  SORT ORDER BY               |             |       |       |       |
    |   2 |   TABLE ACCESS BY INDEX ROWID| MYTABLE     |       |       |       |
    |   3 |    INDEX RANGE SCAN          | I1          |       |       |       |
    Note: rule based optimization, 'PLAN_TABLE' is old version
    11 rows selected.
    SQL>
    SQL> drop index i1;
    Index dropped.
    SQL>
    SQL> explain plan for
      2  select * from
      3  mytable where
      4  myid=11
      5  order by lastname, name;
    Explained.
    SQL> select * from table ( dbms_xplan.display );
    PLAN_TABLE_OUTPUT
    | Id  | Operation            |  Name       | Rows  | Bytes | Cost  |
    |   0 | SELECT STATEMENT     |             |       |       |       |
    |   1 |  SORT ORDER BY       |             |       |       |       |
    |   2 |   INDEX RANGE SCAN   | I2          |       |       |       |
    Note: rule based optimization, 'PLAN_TABLE' is old version
    10 rows selected.
    SQL>Creating the index i1 you will have pros and cons regarding to the creation of the index i2 and viceversa. If you want to what are them, you could reply
    Joel Pérez
    http://www.oracle.com/technology/experts

  • Image rotation working in template, but nowhere else

    Hi,
    I'm relatively new to Dreamweaver.
    I have a page with some rotating images, created following a Communitymx recommendation (http://www.communitymx.com/content/article.cfm?cid=651FF).
    The website template (http://www.johnaverill.com/templates/main_template.dwt) seems to rotate images perfectly; however, image rotation on index.html and the others will not work.
    Any help or recommendations would be greatly appreciated.  Thanks, Paul

    osgood_
    ah, you are correct.  sorry, I didn't catch that I was i am just posting the same old apparent bad code (index.html).
    I did create index_2.html and rename it to index.html per your instructions of Mar 5 (i've actually done it twice now). Pictures not rotating with the index_2 or the new index.html either.  
    Also noticed recreating the index continues to get me the extra:
    function randomImages(){
    if(counter == (imgs.length)){
    counter = 0;
    the template seems to be putting this in there new index for some reason.
    New index here:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/main_template.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>John Averill - Welcome</title>
    <!-- InstanceEndEditable -->
    <style type="text/css">
    <!--
    body {
    background: #000;
    margin: 0;
    padding: 0;
    color: #000;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 100%;
    font-weight: normal;
    /* ~~ Element/tag selectors ~~ */
    ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
    padding: 0;
    margin: 0;
    h1, h2, h3, h4, h5, h6, p {
    margin-top: 0;  /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
    padding-right: 15px;
    padding-left: 15px;
    a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
    border: none;
    /* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
    a:link {
    color: #000;
    text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
    a:visited {
    color: #000;
    text-decoration: none;
    a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
    text-decoration: underline;
    /* ~~ this fixed width container surrounds the other divs ~~ */
    .container {
    width: 960px;
    background: #FFF;
    margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
    /* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
    .header {
    background: #000;
    /* ~~ This is the layout information. ~~
    1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.
    .content {
    font-size: 100%;
    /* ~~ The footer ~~ */
    .footer {
    padding: 10px 0;
    background: #FFF;
    margin: 20px;
    /* ~~ miscellaneous float/clear classes ~~ */
    .fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
    float: right;
    margin-left: 8px;
    .fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
    float: left;
    margin-right: 8px;
    .clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
    clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
    -->
    </style>
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    #maincontent {
    width:915px;
    height:auto;
    z-index:1;
    left: 114px;
    top: 351px;
    margin: 20px auto 0px;
    .container .footer table tr td h6 {
    color: #FFF;
    </style>
    <script type="text/javascript">
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_swapImgRestore() { //v3.0
      var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    /* pw - removed old code
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    function MM_swapImgRestore() { //v3.0
      var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    // Comma separated list of images to rotate
    var imgs = new
    Array('_images/1.jpg','_images/2.jpg','_images/3.jpg','_images/4.jpg');
    // delay in milliseconds between image swaps 1000 = 1 second
    var delay = 3000;
    var counter = 0;
    function preloadImgs(){
       for(var i=0;i<imgs.length;i++){
         MM_preloadImages(imgs[i]);
    function randomImages(){
       if(counter == (imgs.length)){
         counter = 0;
       MM_swapImage('rotator', '', imgs[counter++]imgs[i]);
    function randomImages(){
       if(counter == (imgs.length)){
         counter = 0;
       MM_swapImage('rotator', '', imgs[counter++]);
       setTimeout('randomImages()', delay);
    </script>
    <!-- InstanceBeginEditable name="head" -->
    <!-- InstanceEndEditable -->
    </head>
    <body onload="preloadImgs();randomImages();">
    <div class="container">
      <div class="header">
        <div align="center"><!-- InstanceBeginEditable name="header_image" -->
    <img src="_images/1.jpg" name="rotator" width="960" height="300" id="rotator" /><!-- InstanceEndEditable -->
          <ul id="MenuBar1" class="MenuBarHorizontal">
            <li><a href="index.html">Home</a></li>
            <li><a href="about.html">About</a></li>
    <li><a href="partners.html">Our Underwriters</a></li>
      <li><a href="claims.html">Claims</a></li>
    <li><a href="markets.html">Industry Focus</a></li>
      <li><a href="assignments.html">Assignments</a></li>
      <li><a href="_clienttestimonials/testimonials.html">Client Testimonials</a></li>
      <li><a href="resources.html">Resources</a></li>
          </ul>
        </div>
        <!-- end .header -->
      </div>
      <div class="content">
    <h1> </h1>
    <!-- InstanceBeginEditable name="main_content" -->
    <div id="maincontent">
      <p><img src="_images/john_averill_bw.jpg" alt="" width="98" height="122" align="right" /></p>
      <p> </p>
      <h1><img src="_images/johncaverill.jpg" alt="" width="313" height="80" id="Image3" /></h1>
      <h3>Insurance  and Risk Management for Aircraft/Aerospace and Defense Companies</h3>
      <p align="justify">Welcome, this is an online bio for John C. Averill.  This site also has a description of my capabilities, services offered and successes</p>
      <p align="justify">FIDUCIARY ROLE</p>
      <p align="justify">My team and I take our  fiduciary role as insurance brokers and risk consultants seriously. I am held  accountable to a select group of risk management professionals who have an  enormous amount of wisdom and knowledge about the property and casualty insurance  world, providing my team and me consistent guiding principles. Due to our  fiduciary role, we do not publicize our clients list but we do have several letters  from clients on file as part of this site, see Client Testimonials.</p>
      <p align="justify">CONFIDENCE IN THE PROCESS</p>
      <p align="justify">The process of  designing a risk management strategy and purchasing insurance should be  comprehensive. The focus should be on pre-engineering claims payments. You should have  total confidence in your broker and insurance company. After a claim has  occurred is not the time to second guess the dollars you spent on insurance  premiums and the commissions or fees you paid a broker. </p>
      <p align="justify">PHILOSOPHY</p>
      <p align="justify">Our philosophy and  goal is to never have a client have an uncovered claim that he / she failed to insure. We have developed   processes and procedures to determine exposures, forecast claims and efficiently  purchase the needed insurance coverage.</p>
      <p align="justify"><strong>SERVICES OF AEROSPACE AND DEFENSE DIVISION</strong></p>
      <p>Insurance Brokerage</p>
      <p>Risk Analysis  (Internal Risk Resource Data Base)</p>
      <p>Travel Risk Management  analysis</p>
      <p>Global Travelers Group </p>
      <p>Submission Preparation</p>
      <p>Benchmarking Analysis</p>
      <p>Contractual Review</p>
      <p>Loss Control</p>
      <p>Direct Access to all  major insurance companies</p>
      <p>Internal claims  adjustors</p>
      <p>Quarterly Newsletter </p>
      <h1> </h1>
    </div>
    <!-- InstanceEndEditable -->
    <h1> </h1>
      </div>
      <div class="footer">
        <table border="0" align="center">
          <tr>
            <td width="906" height="5" bgcolor="#004C90"><h6>Aviation News</h6></td>
            <td width="906" height="5" bgcolor="#004C90"><h6>News on John</h6></td>
            <td width="906" height="5" bgcolor="#004C90"><h6>Quick Help</h6></td>
          </tr>
          <tr>
            <td width="906" height="25" valign="top"><h5 align="left">
              <script language="JavaScript" src="http://feed2js.org//feed2js.php?src=http%3A%2F%2Fwww.aero-news.net%2Fnews%2Frssfeed.xml&am p;num=3&amp;utf=y"  charset="UTF-8" type="text/javascript"></script>
              <noscript>
              <a href="View" _mce_href="http://feed2js.org//feed2js.php?src=http%3A%2F%2Fwww.aero-news.net%2Fnews%2Frs sfeed.xml&amp;num=3&amp;utf=y&amp;html=y">View">http://feed2js.org//feed2js.php?src=http%3 A%2F%2Fwww.aero-news.net%2Fnews%2Frssfeed.xml&amp;num=3&amp;utf=y&amp;html=y">View RSS feed</a>
              </noscript>
            </h5>
            <p align="left">  </p></td>
            <td width="906" height="25" valign="top"><h5>Averill speaks at 2011 Risk and Insurance Management  Society annual conference in Vancouver on Aviation Loss Control.  </h5>
            <h5>Averill appointed to National Business Aviation  Association Insurance Committee. </h5></td>
            <td width="906" height="25" valign="top"><!-- InstanceBeginEditable name="quick_help" -->
              <h5 align="left"><a href="claims.html">Claims Information</a></h5>
    <h5 align="left"><a href="contacts.html">Contact Me</a></h5>
            <!-- InstanceEndEditable --></td>
          </tr>
        </table>
        <p><img src="_images/ioa_aerospace_logo.jpg" width="150" height="70" alt="ioa_logo" /></p>
    </div>
      <!-- end .container --></div>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    <!-- InstanceEnd --></html>

  • How to limit rotation around an axis

    Hello!
    I am using Mouse Rotate to rotate an object around it's axis:
    MouseRotate mouseRotate = new MouseRotate();
    mouseRotate.setTransformGroup( sectionTransform );
    mouseRotate.setSchedulingBounds( new BoundingSphere() );
    mouseRotate.setFactor( 0, 0.3 );
    Currently it rotates 360 degrees, but I would like to be able to limit the rotation angle to say 180. Could you please help me out?
    Thanks!
    Anna.

    You might want to consider creating your own behaviour. It depends on your implementation, but if you have a Transform group above the object, you can get the transform and get the rotation values from that transform. It will take a bit of math, but here's a primer to get you started...
    http://www.martinb.com/maths/geometry/rotations/conversions/index.htm
    http://www.martinb.com/maths/geometry/rotations/conversions/matrixToEuler/index.htm
    so if you calculate the angle around a particular axis from that transform and it is "greater" than the limit, then you can just set the transform's rotation angle to the limit by reconstructing a new transform and placing that transform in the transform group.
    Anyway, I dont know if that helps. It really depends on what you have as far as implementation thus far. My best suggestion is to try to create your own rotation behaviour.
    Cheers,
    Greg

  • Index items to text file

    Hi scripters,
    I have index entries in my indesign file. I want to save the index text into separate text file.
    How I can do this?
    thanks in advance
    regards
    a r u l

    What do you mean by "the index text"? The result of running the index? Or the contents of the entries in some kind of form?
    The former is easy: run the index, export the index story.
    The latter is more challenging, but still do-able.
    Dave

  • Populate videos in a circle

    Hey
    I have a bit of a question, I've done som images in Illustrator (see picture below), which im now trying to do with moving images in after effects.
    I've go a bit of green screen footage, keyed out the background, and chopped of anything unwanted.
    For making these pictures in Illustrator it's quite easy you just have 2 mirrored pictures opposite each other, with both marked you go to rotate, tell illustrator how much you want the picture to rotate and then say "copy". Is there any way to do the same in After effects, with video footage?

    Here's a guy who is good at duplication:
    http://youtu.be/GAvS1ndtEKg
    But on the serious side, you can only do it with vector shape layers in any sort of automated way. 
    But with expressions you could set up a composition to calculate the necessary angle rotations as you duplicate the layer:
    With only the layer that you want to duplicate in the comp, put this expression on the rotation value:
    index*360/thisComp.numLayers
    Duplicate it once then put this expression on each anchorPoint value except the top one which you will change to adjust the radius of the circle:
    thisComp.layer(index-1).anchorPoint
    Then duplicate as many times as you would like and adjust the anchorPoint of the top layer.
    Using this method you'll have to create different compositions for each ring of pictures you want to make since the expression is dependent on then number of layers in the comp.

  • Overlapping Scripts?

    Hi so I have a webpage i'm trying to fiddle around with and so far I've added both a sprymenu (for navigation throughout the site) and an easy rotator. both are javascript functions but when I go to load the page i see my sprymenu for a brief second until it is covered up by the easy rotator. I'm wondering if I need to write a function to re position the easy rotator perhaps? Or maybe there's another method. Does anyone have any ideas?

    hello nancy thank you for your timely response, I don't currently have the website online yet. Is there another way you can view the code?
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <style type="text/css">
    <!--
    body {
    background-color: #A0A0AD;
    -->
    </style><p><a href="index.html"><img src="Actionable Perspectives/Actionable Perspectives.jpg" width="590" height="90" /></a></p>
    <hr align="left" width="1000" />
    <p>
    </head>
    <body>
    <script src="Actionable Perspectives/SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    </p>
    <link href="Actionable Perspectives/SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css">
    <ul id="MenuBar1" class="MenuBarHorizontal">
      <li><a class="MenuBarItemSubmenu" href="#">Capabilities</a>
        <ul>
          <li><a href="Staff.html">Staff</a></li>
          <li><a href="Locations.html">Locations</a></li>
          <li><a href="Business Models.html">Business Models</a></li>
        </ul>
      </li>
      <li><a href="#" class="MenuBarItemSubmenu">Solutions</a>
        <ul>
          <li><a href="Industries.html">Industries</a></li>
          <li><a href="Strategies.html">Strategies</a></li>
          <li><a href="Big Data.html">Big Data</a></li>
          <li><a href="Cloud Computing.html">Cloud Computing</a></li>
          <li><a href="Product Development.html">Product Development</a></li>
          <li><a href="Outsourcing.html">Outsourcing</a></li>
        </ul>
      </li>
      <li><a class="MenuBarItemSubmenu" href="#">Innovations</a>
        <ul>
          <li><a href="White Papers.html">White Papers</a>      </li>
          <li><a href="Appearances.html">Appearances</a></li>
          <li><a href="Press Releases.html">Press Releases</a></li>
        </ul>
      </li>
    </ul>
    <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"Actionable Perspectives/SpryAssets/SpryMenuBarDownHover.gif", imgRight:"Actionable Perspectives/SpryAssets/SpryMenuBarRightHover.gif"});
    //-->
    </script>
    <!-- Begin DWUser_EasyRotator -->
    <script type="text/javascript" src="http://c520866.r66.cf2.rackcdn.com/1/js/easy_rotator.min.js"></script>
    <div class="dwuserEasyRotator" style="width: 800px; height: 600px; position:relative; text-align: left;" data-erconfig="{autoplayEnabled:true, autoplayDelay:3000, lpp:'102-105-108-101-58-47-47-47-67-58-47-85-115-101-114-115-47-74-37-50-48-77-105-99-104 -97-101-108-47-68-111-99-117-109-101-110-116-115-47-69-97-115-121-82-111-116-97-116-111-11 4-80-114-101-118-105-101-119-47-112-114-101-118-105-101-119-95-115-119-102-115-47', wv:1}" data-ername="Actionable Perspectives">
      <div data-ertype="content" style="display: none;">
        <ul data-erlabel="Main Category">
          <li> <img class="main" src="Actionable Perspectives/TurkeyControl5.jpg" /> <img class="thumb" src="Actionable Perspectives/TurkeyControl5.jpg" /> </li>
          <li> <img class="main" src="Actionable Perspectives/TurkeyControl4.jpg" /> <img class="thumb" src="Actionable Perspectives/TurkeyControl4.jpg" /> </li>
          <li> <img class="main" src="Actionable Perspectives/TurkeyControl3.JPG" /> <img class="thumb" src="Actionable Perspectives/TurkeyControl3.JPG" /> </li>
          <li> <img class="main" src="Actionable Perspectives/TurkeyControl2.JPG" /> <img class="thumb" src="Actionable Perspectives/TurkeyControl2.JPG" /> </li>
          <li> <img class="main" src="Actionable Perspectives/TurkeyControl1.JPG" /> <img class="thumb" src="Actionable Perspectives/TurkeyControl1.JPG" /> </li>
          <li> <img class="main" src="Actionable Perspectives/Shanghai3.JPG" /> <img class="thumb" src="Actionable Perspectives/Shanghai3.JPG" /> </li>
          <li> <img class="main" src="Actionable Perspectives/Shanghai2.JPG" /> <img class="thumb" src="Actionable Perspectives/Shanghai2.JPG" /> </li>
          <li> <img class="main" src="Actionable Perspectives/Shanghai1.JPG" /> <img class="thumb" src="Actionable Perspectives/Shanghai1.JPG" /> </li>
          <li> <img class="main" src="Actionable Perspectives/NYSE3.jpg" /> <img class="thumb" src="Actionable Perspectives/NYSE3.jpg" /> </li>
          <li> <img class="main" src="Actionable Perspectives/NYSE2.jpg" /> <img class="thumb" src="Actionable Perspectives/NYSE2.jpg" /> </li>
          <li> <img class="main" src="Actionable Perspectives/NYSE1.jpg" /> <img class="thumb" src="Actionable Perspectives/NYSE1.jpg" /> </li>
          <li> <img class="main" src="Actionable Perspectives/MCIS-Minister-Valerian-Vreme-with-Frank-and-Steve.jpg" /> <img class="thumb" src="Actionable Perspectives/MCIS-Minister-Valerian-Vreme-with-Frank-and-Steve.jpg" /> </li>
          <li> <img class="main" src="Actionable Perspectives/MCIS - Cloud Computing meeting.jpg" /> <img class="thumb" src="Actionable Perspectives/MCIS - Cloud Computing meeting.jpg" /> </li>
          <li> <img class="main" src="Actionable Perspectives/CloudPMI.JPG" /> <img class="thumb" src="Actionable Perspectives/CloudPMI.JPG" /> </li>
          <li> <img class="main" src="Actionable Perspectives/ChinaLab3.JPG" /> <img class="thumb" src="Actionable Perspectives/ChinaLab3.JPG" /> </li>
          <li> <img class="main" src="Actionable Perspectives/ChinaLab2.JPG" /> <img class="thumb" src="Actionable Perspectives/ChinaLab2.JPG" /> </li>
          <li> <img class="main" src="Actionable Perspectives/ChinaLab1.JPG" /> <img class="thumb" src="Actionable Perspectives/ChinaLab1.JPG" /> </li>
        </ul>
      </div>
      <div data-ertype="layout" data-ertemplatename="NONE" style="">
        <div class="erimgMain" style="position: absolute; left:0;right:0;top:0;bottom:70px;" data-erconfig="{___numTiles:3, scaleMode:'fillArea', imgType:'main', __loopNextButton:false, arrowButtonMode:'rollover'}">
          <div class="erimgMain_slides" style="position: absolute; left:0px; top:0; bottom:0; right:0px;">
            <div class="erimgMain_slide">
              <div class="erimgMain_img" style="position: absolute; left: 0; right: 0; top: 0; bottom: 0;"></div>
              <div class="erhideWhenNoText" style="background: #000; background: rgba(0,0,0,0.85); position: absolute; left: 0; right: 0; bottom: 0; padding: 5px; color: #FFF; font-family: Arial; font-size: 12px;">
                <p class="erimgMain_title" style="padding: 0; margin: 0 0 3px 0; font-weight: bold;"></p>
                <p class="erimgMain_desc" style="padding: 0 0 10px 0; margin: 0;"></p>
              </div>
            </div>
          </div>
          <div class="erimgMain_arrowLeft" style="position:absolute; left: 10px; top: 50%; margin-top: -15px;" data-erconfig="{image:'circleSmall', image2:'circleSmall'}"></div>
          <div class="erimgMain_arrowRight" style="position:absolute; right: 10px; top: 50%; margin-top: -15px;"></div>
        </div>
        <div class="erimgMain rotatorTileNav" style="position: absolute; left:0;right:0;bottom:0;height:80px;" data-erconfig="{numTiles:-1, scaleMode:'fillArea', imgType:'thumb', loopNextButton:false, arrowButtonMode:'rollover', __slideLinkEvent:'rollover'}">
          <div style="position: absolute; left: 0; top: 10px; right: 0; bottom: 0; background: #FFF;"></div>
          <div class="erimgMain_slides" style="position: absolute; left:0px; top:0; bottom:0; right:0px;">
            <div class="erimgMain_slide">
              <div class="erimgMain_img" style="position: absolute; left: 0; right: 0; top: 10px; bottom: 0; margin: 2px 1px;"></div>
              <!-- <div class="" style="background: #555; position: absolute; left: 1px; right: 1px; top: 10px; bottom: 0; padding: 5px; color: #FFF; font-family: Arial; font-size: 12px; text-align: center;">
    <p class="erimgMain_title" style="padding: 5px; margin: 0 0 3px 0; font-weight: bold;"></p>
    </div> -->
              <div class="selectionArrow visibleWhenSelected" style="position: absolute; top: 0; left: 50%; margin-left: -10px; width: 20px; height: 10px; background-image: url('http://easyrotator.s3.amazonaws.com/1/i/rotator/FFF_arrow10_export.png');"></div>
            </div>
          </div>
          <div class="erimgMain_arrowLeft" style="position:absolute; left: 60px; top: 50%; margin-top: -10px;" data-erconfig="{image:'circleSmall', image2:'circleSmall'}"></div>
          <div class="erimgMain_arrowRight" style="position:absolute; right: 60px; top: 50%; margin-top: -10px;"></div>
        </div>
        <div class="erabout erFixCSS3" style="color: #FFF; text-align: left; background: #000; background:rgba(0,0,0,0.93); border: 2px solid #FFF; padding: 20px; font: normal 11px/14px Verdana,_sans; width: 300px; border-radius: 10px; display:none;"> This <a style="color:#FFF;" href="http://www.dwuser.com/easyrotator/" target="_blank">jQuery slider</a> was created with the free <a style="color:#FFF;" href="http://www.dwuser.com/easyrotator/" target="_blank">EasyRotator</a> software from DWUser.com. <br />
          <br />
          Use WordPress? The free <a style="color:#FFF;" href="http://www.dwuser.com/easyrotator/wordpress/" target="_blank">EasyRotator for WordPress</a> plugin lets you create beautiful <a style="color:#FFF;" href="http://www.dwuser.com/easyrotator/wordpress/" target="_blank">WordPress sliders</a> in seconds. <br />
          <br />
          <a style="color:#FFF;" href="#" class="erabout_ok">OK</a> </div>
        <noscript>
          Rotator powered by <a href="http://www.dwuser.com/easyrotator/">EasyRotator</a>, a free and easy jQuery slider builder from DWUser.com.  Please enable JavaScript to view.
        </noscript>
        <script type="text/javascript">/*Avoid IE gzip bug*/(function(b,c,d){try{if(!b[d]){b[d]="temp";var a=c.createElement("script");a.type="text/javascript";a.src="http://easyrotator.s3.amazonaws.com/1/js/nozip/easy_rotator.min.js";c.getElementsByTagName("head")[0].appendChild(a)}}catch(e){alert("EasyRotator fail; contact support.")}})(window,document,"er_$144");</script>
      </div>
    </div>
    <!-- End DWUser_EasyRotator -->
    </body>
    </html>

  • Drop down menu hidden behind javascript slider

    I have a js slider that is sitting in front of my drop down menu.
    I tried the x-index in my css file using position as absolute and nothing...
    Can anyone help..I am new to this. I am using Easy Rotator for the slider
    Thanks
    .servicesdropped {
        display: none;
        text-align: left;
        position: absolute;
        background: #172323;
        font-size: 12px;
        width: 590px;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        border: 1px solid #000;
        margin: 10px 0 0 20px;
        padding: 10px 20px 20px;
        z-index: 40000;
    http://99.98.44.183/TEST_WEB/index2.html#

    64 errors is not acceptable.  You still have non-working menus owing to the malformed lists and your slider doesn't work.
    I'm trying to be constructive when I say this site is seriously overdue for a re-build.  The table layout with a gazillion spacer.gifs is a relic from 1990's web design.  Practically speaking, this site belongs in a museum.  In the long run, it would be better to re-build it with CSS layouts and modern web practices See Responsive Web Design.
    Nancy O.

  • How to automatically allow blocked plug-in in Internet Explorer

    Hi,
    I'm using an 'easy rotator' slideshow plug in on the home page of my site i'm building which works fine in chrome but gets blocked when I preview it in Internet Explorer unless i click 'Allow blocked content'. Is there anyway to bypass this block and have it apppear automatically to viewers as it does in chrome?
    Thank you.

    In a word... No. It's an end user setting to allow ActiveX and javascript content.
    Let's say for a moment that you COULD disable the script warning in IE with code in your page... An unsuspecting surfer using IE hits your site and the warning is disabled without their knowledge or consent. THEN they accidentally stumble onto a phishing site, and all of their business banking information is sent to an ID thief and they're cleaned out. It may take a while to trace the cause but if they do and discover that your page was the source... guess who's liable for that because of a slideshow?

Maybe you are looking for

  • How do I transfer a purchase to a new iTunes on a new computer

    I purchased a sond on one PC through Itunes. Now I want that song on my macbook, but I don't have an Ipod. How do I see that song in the itunes on the new computer? Itunes immediately synchronized the ballance in dollar amount ( surprize-surprize), b

  • "An Album List" View in ""Purchased on iPhone" Playlist

    I just found out that "a album list" view button (2nd button from the left of 4 buttons) located upper right corner is not available with "Purchased on iPhone" playlist. It is available within a regular "Purchased" playlist. Does anyone have the same

  • How do I export my data from iphone 3g onto my new PC??

    My last pc got the blue screen of death, now I have a new laptop and couldnt find within the forums how to export my pictures and back up my new contacts so I can do an update on my iphone; its been bugging out since my last update back in october. A

  • New mid 09 macbook pro weak speaker problem

    I just got a mid 09 macbook pro 15''. and notice the full volume on the speaker is just about 60-70% of the late 08 macbook pro when turn to full 100%. anyone notice this? not sure is this a defect or apple did something to the mid 09 model maybe add

  • Third party  scenario with Excise

    Hi Friends, I have come acoss  a scenario where I have to give my inputs on various third party scenario and also associated CIN settings and procedures. Out of the proposals being put forward, then the client will decide which one go in for. 1. Good