J Query Question - but could be CSS and its IE 7

Ok so I know this is not Adobe specific but in my experience there are lots and lots of clever people about on this forum so I am hoping someone can help me out.
Basically I have built a photo gallery using JQuery (which is outside of my comfort zone - so have basically just robbed something from the net - legally I might add lol).
In IE 7 the last image in the thumbnail strip is wrapping itself around to the bottom of the strip and looks out of sequence.
Anyway here is the code.
                                    The White Lion at Alvanley - Village Pub & Dining                                
HOME
HISTORY
FOOD & DRINK
GARDEN
EVENTS
GALLERY
COAL BUSINESS
LOCATION
                                                                                            White Lion, Manley Road, Alvanley, Cheshire WA6 9DD
Tel: 01928 722 949                        Sign up for our Newsletter                                                                                                                 
and for extra goodies here is the CSS
.ad-gallery {   width: 850px; } .ad-gallery, .ad-gallery * {   margin: 0;   padding: 0; }   .ad-gallery .ad-image-wrapper {     width: 100%;     height: 400px;     margin-bottom: 10px;     position: relative;     overflow: hidden;   }     .ad-gallery .ad-image-wrapper .ad-loader {       position: absolute;       z-index: 10;       top: 48%;       left: 48%;       border: 1px solid #CCC;     }     .ad-gallery .ad-image-wrapper .ad-next {       position: absolute;       right: 0;       top: 0;       width: 25%;       height: 100%;       cursor: pointer;       display: block;       z-index: 100;     }     .ad-gallery .ad-image-wrapper .ad-prev {       position: absolute;       left: 0;       top: 0;       width: 25%;       height: 100%;       cursor: pointer;       display: block;       z-index: 100;     }     .ad-gallery .ad-image-wrapper .ad-prev, .ad-gallery .ad-image-wrapper .ad-next {       /* Or else IE will hide it */       background: url(non-existing.jpg)\9     }       .ad-gallery .ad-image-wrapper .ad-prev .ad-prev-image, .ad-gallery .ad-image-wrapper .ad-next .ad-next-image {         background: url(ad_prev.png);         width: 30px;         height: 30px;         display: none;         position: absolute;         top: 47%;         left: 0;         z-index: 101;       }       .ad-gallery .ad-image-wrapper .ad-next .ad-next-image {         background: url(ad_next.png);         width: 30px;         height: 30px;         right: 0;         left: auto;       }     .ad-gallery .ad-image-wrapper .ad-image {       position: absolute;       overflow: hidden;       top: 0;       left: 0;       z-index: 9;     }       .ad-gallery .ad-image-wrapper .ad-image a img {         border: 0;       }       .ad-gallery .ad-image-wrapper .ad-image .ad-image-description {         position: absolute;         bottom: 0px;         left: 0px;         padding: 7px;         text-align: left;         width: 100%;         z-index: 2;         background: url(opa75.png);         color: #000;       }       * html .ad-gallery .ad-image-wrapper .ad-image .ad-image-description {         background: none;         filter:progid:DXImageTransform.Microsoft.AlphaImageLoader (enabled=true, sizingMethod=scale, src='opa75.png');       }         .ad-gallery .ad-image-wrapper .ad-image .ad-image-description .ad-description-title {           display: block;         }   .ad-gallery .ad-controls {     height: 20px;   }     .ad-gallery .ad-info {       float: left;     }     .ad-gallery .ad-slideshow-controls {       float: right;     }       .ad-gallery .ad-slideshow-controls .ad-slideshow-start, .ad-gallery .ad-slideshow-controls .ad-slideshow-stop {         padding-left: 5px;         cursor: pointer;       }       .ad-gallery .ad-slideshow-controls .ad-slideshow-countdown {         padding-left: 5px;         font-size: 0.9em;       }     .ad-gallery .ad-slideshow-running .ad-slideshow-start {       cursor: default;       font-style: italic;     }   .ad-gallery .ad-nav {     width: 100%;     position: relative;   }     .ad-gallery .ad-forward, .ad-gallery .ad-back {       position: absolute;       top: 0;       height: 100%;       z-index: 10;     }     /* IE 6 doesn't like height: 100% */     * html .ad-gallery .ad-forward, .ad-gallery .ad-back {       height: 100px;     }     .ad-gallery .ad-back {       cursor: pointer;       left: -20px;       width: 13px;       display: block;       background: url(ad_scroll_back.png) 0px 22px no-repeat;     }     .ad-gallery .ad-forward {       cursor: pointer;       display: block;       right: -20px;       width: 13px;       background: url(ad_scroll_forward.png) 0px 22px no-repeat;     }     .ad-gallery .ad-nav .ad-thumbs {       overflow: hidden;       width: 100%;     }       .ad-gallery .ad-thumbs .ad-thumb-list {         float: left;         width: 9000px;         list-style: none;       }         .ad-gallery .ad-thumbs li {           float: left;           padding-right: 5px;         }           .ad-gallery .ad-thumbs li a {             display: block;           }             .ad-gallery .ad-thumbs li a img {      display: block;             }             .ad-gallery .ad-thumbs li a.ad-active img {               border: 3px solid #a7907f;;             } /* Can't do display none, since Opera won't load the images then */ .ad-preloads {   position: absolute;   left: -9000px;   top: -9000px; }
However after a bit of validation action on the CSS it appears there are a couple of errors although not sure if this is what is effecting the page.
Any thoughts.
G

Persist.
I don't regret one bit taking the time to learn jQuery. Also, I generally find that errors I get with jQuery are usually just errors in the way browsers execute CSS or Javascript (mostly IE6 & 7!). jQuery is a brilliantly written resource.
I got an error the other day when I had blocks that appeared on click, but identified them with ids ( $("#someidhere").click() ). On older versions of internet explorer, it refuses to handle more than one element with an ID, so it would only let me show/hide one of my blocks. Don't be fooled though, that's a javascript error rather than a jQuery error (although it is seriouly bad practice to have more than one element with the same ID!).

Similar Messages

  • SQL Query to get All AD Groups and its users in Active Directory

    Hi,
       Is there any query to get all AD groups and its user in an instance of a SQL server?

    Check this blog.
    http://www.mikefal.net/2011/04/18/monday-scripts-%E2%80%93-xp_logininfo/
    It will give you more than what is required. If you dont want the extra information,then you can try this.. I took the query and removed the bits that you might not require.
    declare @winlogins table
    (acct_name sysname,
    acct_type varchar(10),
    act_priv varchar(10),
    login_name sysname,
    perm_path sysname)
    declare @group sysname
    declare recscan cursor for
    select name from sys.server_principals
    where type = 'G' and name not like 'NT%'
    open recscan
    fetch next from recscan into @group
    while @@FETCH_STATUS = 0
    begin
    insert into @winlogins
    exec xp_logininfo @group,'members'
    fetch next from recscan into @group
    end
    close recscan
    deallocate recscan
    select
    u.name,
    u.type_desc,
    wl.login_name,
    wl.acct_type
    from sys.server_principals u
    inner join @winlogins wl on u.name = wl.perm_path
    where u.type = 'G'
    order by u.name,wl.login_name
    Regards, Ashwin Menon My Blog - http:\\sqllearnings.com

  • I forgot my passcode, so now its disabled and it said i need to connect to itunes. But now i connected and its saying it can't open my ipod because it's locked. What do I do?

    I forgot my passcode to my ipod, so it said ineeded to connect it to iTunes because it's disabled. So, i connected to itunes and it said "Ipod cannot be used because it's being locked with a passcode. Unlock passcode and try again". Well i dont know my passcode and its disabled so i can't do anyhting. Now what do i do??

    Try connecting your iPod Touch to iTunes in recovery mode, allowing you to bypass the need to enter in the forgotten passcode.  See this article for instructions on getting your iPod into recovery mode.
    http://support.apple.com/kb/ht1808
    B-rock

  • WLS running but could not connect and browser now showing console

    Hi All
    We ran the Application Developer installation on a standalone WLS 10.3.6
    After installation, we started WLS and saw
    <May 3, 2012 6:39:02 PM PDT> <Notice> <WebLogicServer> <BEA-000331> <Started WebLogic Admin Server "AdminServer" for domain "Optimize" running in Development Mode>
    <May 3, 2012 6:39:02 PM PDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RUNNING>
    <May 3, 2012 6:39:02 PM PDT> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>
    But Admin console is not showing up at http://<hostname>:7001/
    We then tried
    [root@hostname config]# java weblogic.Admin -url t3s://<hostname>:7001 -username weblogic -password xxxxxxx PING
    Exception in thread "main" java.lang.NoClassDefFoundError: weblogic/Admin
    Caused by: java.lang.ClassNotFoundException: weblogic.Admin
    at java.net.URLClassLoader$1.run(URLClassLoader.java:217)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:205)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:321)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:294)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:266)
    Could not find the main class: weblogic.Admin. Program will exit.
    We also tried commeting out listener address in config.xml and it still doesnt work.
    1- What else can we do to get it running ?
    2- Is there an Oracle doc that describes troubleshooting and workaround to these issues ?
    Any help is appreciated
    Thanks

    Hi 862372
    thanks for responding, we don't see any cache files in Op/servers/AdminServer/data/
    [root@host domains]# locate nodemanager
    /lib/modules/2.6.32-300.3.1.el6uek.x86_64/kernel/fs/ocfs2/cluster/ocfs2_nodemanager.ko
    /lib/modules/2.6.32-300.3.1.el6uek.x86_64.debug/kernel/fs/ocfs2/cluster/ocfs2_nodemanager.ko
    /lib/modules/2.6.39-100.5.1.el6uek.x86_64/kernel/fs/ocfs2/cluster/ocfs2_nodemanager.ko
    /lib/modules/2.6.39-100.5.1.el6uek.x86_64.debug/kernel/fs/ocfs2/cluster/ocfs2_nodemanager.ko
    /scratch/software/Oracle/Middleware/modules/com.bea.core.nodemanager.plugin_1.3.0.0.jar
    /scratch/software/Oracle/Middleware/modules/com.oracle.core.nodemanager.process_1.0.0.0.jar
    /scratch/software/Oracle/Middleware/modules/com.oracle.core.nodemanager.process_1.1.0.0.jar
    /scratch/software/Oracle/Middleware/user_projects/domains/Op/bin/nodemanager
    /scratch/software/Oracle/Middleware/user_projects/domains/Op/bin/nodemanager/wlscontrol.sh
    /scratch/software/Oracle/Middleware/user_projects/domains/Op/config/nodemanager
    /scratch/software/Oracle/Middleware/user_projects/domains/Op/config/nodemanager/nm_password.properties
    /scratch/software/Oracle/Middleware/user_projects/domains/Op/bin/nodemanager
    /scratch/software/Oracle/Middleware/user_projects/domains/Op/bin/nodemanager/wlscontrol.sh
    /scratch/software/Oracle/Middleware/user_projects/domains/Op/config/nodemanager
    /scratch/software/Oracle/Middleware/user_projects/domains/Op/config/nodemanager/nm_password.properties
    /scratch/software/Oracle/Middleware/wlserver_10.3/common/nodemanager
    /scratch/software/Oracle/Middleware/wlserver_10.3/common/nodemanager/nodemanager.domains
    /scratch/software/Oracle/Middleware/wlserver_10.3/server/lib/unix/nodemanager.sh
    /scratch/software/Oracle/Middleware/wlserver_10.3/server/native/linux/i686/libnodemanager.so
    /scratch/software/Oracle/Middleware/wlserver_10.3/server/native/linux/x86_64/libnodemanager.so
    [root@slc01fjt domains]# Op/servers/AdminServer/data/
    ldap/ store/
    We'll update more if we get new information

  • I have downloaded CC desktop on mac but could not open and install apps

    I have paid for annual subscription today and downloaded CC desktop. It shows in my desktop but i could not install apps.

    Spinge do you receive any specific error message?

  • HT3529 I am in Chinese, but somehow I could not send text message to UK or US now, but could call Uk and US phone number successfully. Is there anyone could help this, thanks!!!

    I am using iphone 4, and upgraded the system to IOS6 already. but I found I could not send test message to UK and US, I could call phone number in UK or US successfully. Could someone to help me to fix up this issue. I guess the problem probably came from the format of UK or US phone number in my Iphone address book. Due there is some blank space between the phone number for iphone phone number format. I ever try andro phone, no blank space there, so could send test message to UK and UK without problem.

    Hi Iansally,
    I can take at the billing of your account. Please can you send me in your details using the link found in the "About Me" section of my profile?
    Thanks
    PaddyB
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry but we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)

  • Black Screen, but Could See Expose and Desktop

    I am not sure if this is the correct forum to talk about this, but I have been having some strange things happen to my Macbook Pro 13.
    Last night, I was watching a show on my computer and all of sudden the fans started to run loudly. Next thing I know, the screen turns black, but I am still able to launch expose and see my desktop. However, when I went into expose the windows would multiply. I tried shutting down the computer, but Microsoft Word wouldn't quit, and I couldn't reach the force quit button and didn't know the shortcut. I kind of thought that perhaps the computer could have overheated, since my Mac was sitting on my bed and the vents must have bee blocked, but I called Apple this morning and I told them the situation and they thought that it was really weird that that happened. However, they told me how to force quit through a shortcut and low and behold, everything returned to normal.
    The representative said that it could be something to deal with my software or possibly a hardware issue. But what I'd like to know is has anyone had something similar like this happen to them before? Or do you have any inclination as to what may have caused this? Its starting to bother me, because Macs are supposed to "just work" and mine which is six months old is starting to cause some problems. Additionally, I had to call Apple two days ago because my screen had turned blue after I was forced to restart my computer due to a freeze. I'm starting to get frustrated!
    Thanks for all your comments and advice in advance!

    Below is what my console said, I don't really know what these sentences mean.
    10-01-31 12:24:48 AM [0x0-0x1c41c4].org.videolan.vlc[5422] mel[milevel] == NULL
    10-01-31 12:24:48 AM [0x0-0x1c41c4].org.videolan.vlc[5422] arrrrrrrrrrrrrg Up cannot escape itself
    10-01-31 12:24:48 AM [0x0-0x1c41c4].org.videolan.vlc[5422] mel[milevel] == NULL
    10-01-31 12:24:48 AM [0x0-0x1c41c4].org.videolan.vlc[5422] arrrrrrrrrrrrrg Up cannot escape itself
    10-01-31 12:24:49 AM [0x0-0x1c41c4].org.videolan.vlc[5422] [0x2109aa8] a52 decoder: A/52 channels:6 samplerate:48000 bitrate:448000
    10-01-31 12:24:50 AM [0x0-0x1c41c4].org.videolan.vlc[5422] No accelerated IMDCT transform found
    10-01-31 12:24:55 AM ShakesPeer[5428] got init completion level 25
    10-01-31 12:24:55 AM ShakesPeer[5428] got init completion level 50
    10-01-31 12:24:56 AM ShakesPeer[5428] applicationDidFinishLaunching: checking for recent sphubd crashes
    10-01-31 12:24:56 AM ShakesPeer[5428] applicationDidFinishLaunching: checking for recent sphashd crashes
    10-01-31 12:24:56 AM ShakesPeer[5428] applicationDidFinishLaunching: checking for recent gui crashes
    10-01-31 12:24:56 AM ShakesPeer[5428] got init completion level 6
    10-01-31 12:24:56 AM ShakesPeer[5428] got init completion level 100
    10-01-31 12:24:57 AM ShakesPeer[5428] got init completion level 200
    10-01-31 12:25:03 AM ShakesPeer[5428] download folder not found or not a directory: /Users/sharraelyon-moncrieffe/Downloads/Shakespeer Downloads
    10-01-31 12:26:08 AM com.apple.backupd-auto[5437] Not starting scheduled Time Machine backup - time machine destination not resolvable.
    10-01-31 12:33:13 AM ShakesPeer[5457] got init completion level 25
    10-01-31 12:33:13 AM ShakesPeer[5457] got init completion level 50
    10-01-31 12:33:14 AM ShakesPeer[5457] applicationDidFinishLaunching: checking for recent sphubd crashes
    10-01-31 12:33:14 AM ShakesPeer[5457] applicationDidFinishLaunching: checking for recent sphashd crashes
    10-01-31 12:33:14 AM ShakesPeer[5457] applicationDidFinishLaunching: checking for recent gui crashes
    10-01-31 12:33:14 AM ShakesPeer[5457] got init completion level 6
    10-01-31 12:33:14 AM ShakesPeer[5457] got init completion level 100
    10-01-31 12:33:14 AM ShakesPeer[5457] got init completion level 200
    10-01-31 12:33:17 AM ShakesPeer[5457] download folder not found or not a directory: /Users/sharraelyon-moncrieffe/Downloads/Shakespeer Downloads
    10-01-31 12:34:50 AM [0x0-0x11011].org.mozilla.firefox[157] Unloading library for plugin 'com.divx.streamengine.plugin.CoreAudioOutput'
    10-01-31 12:35:05 AM [0x0-0x11011].org.mozilla.firefox[157] Sun Jan 31 00:35:05 EST 2010 JEP creating applet NinjaVideoApplet (http://www.ninjavideo.net/)
    10-01-31 12:35:41 AM [0x0-0x11011].org.mozilla.firefox[157] Unloading library for plugin 'com.divx.streamengine.plugin.CoreAudioOutput'
    10-01-31 12:36:17 AM [0x0-0x11011].org.mozilla.firefox[157] WARNING: SFSPARSEFILE not yet supported for linux
    10-01-31 12:36:18 AM [0x0-0x11011].org.mozilla.firefox[157] WARNING: SFSPARSEFILE not yet supported for linux
    10-01-31 12:36:42 AM [0x0-0x11011].org.mozilla.firefox[157] Unloading library for plugin 'com.divx.streamengine.plugin.CoreAudioOutput'
    10-01-31 12:36:55 AM SystemUIServer[108] CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    10-01-31 12:36:55 AM SystemUIServer[108] CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    10-01-31 12:36:55 AM SystemUIServer[108] CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    10-01-31 12:36:55 AM SystemUIServer[108] CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    10-01-31 12:37:19 AM [0x0-0x11011].org.mozilla.firefox[157] WARNING: SFSPARSEFILE not yet supported for linux
    10-01-31 12:37:19 AM [0x0-0x11011].org.mozilla.firefox[157] WARNING: SFSPARSEFILE not yet supported for linux
    10-01-31 1:26:08 AM com.apple.backupd-auto[5558] Not starting scheduled Time Machine backup - time machine destination not resolvable.
    10-01-31 1:34:42 AM [0x0-0x1d71d7].backupd-helper[5577] Not starting Time Machine backup after wake - failed to resolve alias to backup volume
    10-01-31 2:34:46 AM [0x0-0x1db1db].backupd-helper[5601] Not starting Time Machine backup after wake - failed to resolve alias to backup volume
    10-01-31 3:51:00 AM [0x0-0x1e01e0].backupd-helper[5677] Not starting Time Machine backup after wake - failed to resolve alias to backup volume
    10-01-31 12:24:48 PM com.apple.Dock.agent[107] Sun Jan 31 12:24:48 sharrae-lyons-macbook-pro.local Dock[107] <Error>: kCGErrorIllegalArgument: CGSSetWindowTransformsAtPlacement: Failed
    10-01-31 12:24:48 PM com.apple.Dock.agent[107] Sun Jan 31 12:24:48 sharrae-lyons-macbook-pro.local Dock[107] <Error>: kCGErrorIllegalArgument: CGSSetWindowTransformAtPlacement: Failed
    10-01-31 12:24:48 PM com.apple.Dock.agent[107] Sun Jan 31 12:24:48 sharrae-lyons-macbook-pro.local Dock[107] <Error>: kCGErrorIllegalArgument: CGSSetWindowTransformsAtPlacement: Failed
    10-01-31 12:24:48 PM com.apple.Dock.agent[107] Sun Jan 31 12:24:48 sharrae-lyons-macbook-pro.local Dock[107] <Error>: kCGErrorIllegalArgument: CGSSetWindowTransformAtPlacement: Failed
    10-01-31 12:24:48 PM com.apple.Dock.agent[107] Sun Jan 31 12:24:48 sharrae-lyons-macbook-pro.local Dock[107] <Error>: kCGErrorIllegalArgument: CGSSetWindowTransformsAtPlacement: Failed
    10-01-31 12:24:48 PM com.apple.Dock.agent[107] Sun Jan 31 12:24:48 sharrae-lyons-macbook-pro.local Dock[107] <Error>: kCGErrorIllegalArgument: CGSSetWindowTransformAtPlacement: Failed
    10-01-31 12:24:48 PM com.apple.Dock.agent[107] Sun Jan 31 12:24:48 sharrae-lyons-macbook-pro.local Dock[107] <Error>: kCGErrorIllegalArgument: CGSSetWindowTransformsAtPlacement: Failed
    10-01-31 12:24:48 PM com.apple.Dock.agent[107] Sun Jan 31 12:24:48 sharrae-lyons-macbook-pro.local Dock[107] <Error>: kCGErrorIllegalArgument: CGSSetWindowTransformAtPlacement: Failed
    10-01-31 12:24:48 PM com.apple.Dock.agent[107] Sun Jan 31 12:24:48 sharrae-lyons-macbook-pro.local Dock[107] <Error>: kCGErrorIllegalArgument: CGSSetWindowTransformsAtPlacement: Failed
    10-01-31 12:24:48 PM com.apple.Dock.agent[107] Sun Jan 31 12:24:48 sharrae-lyons-macbook-pro.local Dock[107] <Error>: kCGErrorIllegalArgument: CGSSetWindowTransformAtPlacement: Failed
    10-01-31 12:24:48 PM com.apple.Dock.agent[107] Sun Jan 31 12:24:48 sharrae-lyons-macbook-pro.local Dock[107] <Error>: kCGErrorIllegalArgument: CGSSetWindowTransformsAtPlacement: Failed
    10-01-31 12:24:48 PM com.apple.Dock.agent[107] Sun Jan 31 12:24:48 sharrae-lyons-macbook-pro.local Dock[107] <Error>: kCGErrorIllegalArgument: CGSSetWindowTransformAtPlacement: Failed
    10-01-31 12:24:48 PM com.apple.Dock.agent[107] Sun Jan 31 12:24:48 sharrae-lyons-macbook-pro.local Dock[107] <Error>: kCGErrorIllegalArgument: CGSSetWindowTransformsAtPlacement: Failed
    10-01-31 12:24:48 PM com.apple.Dock.agent[107] Sun Jan 31 12:24:48 sharrae-lyons-macbook-pro.local Dock[107] <Error>: kCGErrorIllegalArgument: CGSSetWindowTransformAtPlacement: Failed
    10-01-31 12:24:48 PM com.apple.Dock.agent[107] Sun Jan 31 12:24:48 sharrae-lyons-macbook-pro.local Dock[107] <Error>: kCGErrorIllegalArgument: CGSSetWindowTransformsAtPlacement: Failed
    10-01-31 12:24:48 PM com.apple.Dock.agent[107] Sun Jan 31 12:24:48 sharrae-lyons-macbook-pro.local Dock[107] <Error>: kCGErrorIllegalArgument: CGSSetWindowTransformAtPlacement: Failed
    10-01-31 12:24:48 PM com.apple.Dock.agent[107] Sun Jan 31 12:24:48 sharrae-lyons-macbook-pro.local Dock[107] <Error>: kCGErrorIllegalArgument: CGSSetWindowTransformsAtPlacement: Failed
    10-01-31 12:24:48 PM com.apple.Dock.agent[107] Sun Jan 31 12:24:48 sharrae-lyons-macbook-pro.local Dock[107] <Error>: kCGErrorIllegalArgument: CGSSetWindowTransformAtPlacement: Failed
    10-01-31 12:24:48 PM com.apple.Dock.agent[107] Sun Jan 31 12:24:48 sharrae-lyons-macbook-pro.local Dock[107] <Error>: kCGErrorIllegalArgument: CGSSetWindowTransformsAtPlacement: Failed
    10-01-31 12:24:48 PM com.apple.Dock.agent[107] Sun Jan 31 12:24:48 sharrae-lyons-macbook-pro.local Dock[107] <Error>: kCGErrorIllegalArgument: CGSSetWindowTransformAtPlacement: Failed
    This continues until about 12:31 pm on January 31st.

  • I'm trying to download apps but it is asking me for my sercurity questions but I forgot them and it is sending the reset link to the wrong email, I have changed my iTunes email address how long does it take to update?  HELP ME

    Please help me?

    Hi
    To reset your security questions you will need to contact apple either by phone or email, many people have asked this question before and most have all ended up contacting apple
    Hope this helps

  • I want to buy apps, and to do that, I need to submit my security questions, but I forgot them, and also the email to change the questions. What can I do?

    Please, tell me how can I change the email to change the security questions.

    Look here for help. You will more than likely need to contact iTunes support by email. the instructions are in this user tip.
    Some Solutions for Resetting Forgotten Security Questions: Apple ...

  • HT5570 I am unable to change my security questions,  what do you do if you have forgotten your security questions, but your apple id and password are correct

    Please help me change my security questions for my apple id.  i have forgotten my security question answers

    Reset Security Questions
    http://support.apple.com/kb/ht5312
    If you still have problem, call Apple to help reset your Security Question.
    http://support.apple.com/kb/HT5699

  • White screen with a folder and a question mark on the folder and its blink?

    I was on my computer and it was basically frozen so I turned it offf manually. Then I tried to turn it back on and it it made the noise like it was turning on, but then there was a white screen. Then I turned it off again and it did the same thing exept that now it has a little blinking folder with a question mark in it. Then I turned it off again and it did the same thing as it didi the 1st time......HELP ME !!!
    (oh now it just turned itself off)

    You can try starting up while holding the 'Option' key down. This will hopefully present you with your drive to select from. If not, insert your Install DVD and restart with the 'C' key down. This is called booting to the DVD. When the topmenu appears, launch Disk Utility and then verify/repair both permissions and the drive itself.
    If the drive does not appear in Disk Utility ...you may have one of the faulty Seagate drives. If you are still within you standard 1 year warranty (or have Applecare) then that drive will be replaced.
    Do you have things backed up?

  • Cant update only certain apps, gets linked to a random apple ID that isnt mine, but checked app store and its signed in with my ID. HELP =[

    Im trying to update the facebook app on my iphone 4s, but when i click update .. an apple ID that doesnt belong to me shows up and asks for the password.
    Ive checked that im logged in with my own apple ID in the apps store but somehow it shows up with a different apple ID when i click update.
    I only have one apple ID and therefore could not be the old / new apple ID problem and phone is completely new ...
    Heeelp ><" the bug in the facebook app is very annoying and not being able to update for a month is horrible =[

    How to delete an app ? Press and hold any of the apps and after a couple of seconds or so they should start to shake. Then press the 'x' in the left corner to delete the ones that you don't want, and when you've finished deleting press the home button so as to stop the shaking. If you don't get the 'x' on any of the apps that you've downloaded (you can't delete built-in apps) then check that Settings > General > Restrictions > Deleting Apps isn't set 'off'. Then buy and download the app with your own account.
    Or how to do something else ?

  • Question on Installing Reporting Services and its Databases ReportServer and ReportServerTempDB

    Is it possible to have the Reporting Services installed on one server\machine and the databases ReportServer and ReportServerTempDB on a different server\machine?
    I have always installed both on the same machine but this architecture is being suggested.
    I know that you can install the services without the databases on an instance but how do you install just the databases without the services on an instance?
    lcerni

    Hi Icerni,
    Based on the current description, I understand that you want to install Reporting Services on one machine, and install Report Server and ReportServerTempDB databases on another machine.
    I think it’s not supported that installing only the databases related to Reporting Services on an instance without Reporting Services. From the document: Create a Report Server Database, we can need the Reporting Services Configuration Manager tool to create
    Report Server databases.
    In Reporting Services, there is scale-out deployment which refers to two or more report server instances that share a single report server database. They are used to increase scalability of report servers to handle more concurrent users and larger report execution
    loads. And it can also be used to dedicate specific servers to process interactive or scheduled reports.
    References:
    Scale-out Deployment (Native Mode Report Server)
    Configuring Reporting Services for Scale-Out Deployment
    Regards,
    Heidi Duan
    If you have any feedback on our support, please click
    here.
    Heidi Duan
    TechNet Community Support

  • I tried to send myself a password reset but it did send and its been 2 days!

    Well two days ago I forgot my password and so I went to reset it but I did not recivethe email and so I tried again but still no email. So I decide to make a new account and it was all ok until the varification email because I still dindt recieve it and it still did not send me any of the emails.
    And yes I checked my junk in both account and please dont say wait beacause today is day three of waiting!

    What should i do?
    Get a SIM card for your iPhone and activate the SIM card with the carrier.
    http://support.apple.com/kb/TS4268
    Activation and registration
    iPhone automatically registers your phone number for use with FaceTime and iMessage during activation.

  • I have just set up my iphone 4s but there know signal and its saying my number is unknown???

    i have set up my phone but cant call out for some reason? there is also no signal and on the phone setting it say my number unknown? can anyone help me?

    The following is from this Apple document: iCloud: Backup and restore overview.
    iCloud automatically backs up the most important data on your device using iOS 5 or later. Once you have enabled Backup on your iPhone, iPad, or iPod touch .....
    What is backed up
    You get unlimited free storage for:
    Purchased music, movies, TV shows, apps, and books
    Notes: Backup of purchased music is not available in all countries. Backups of purchased movies and TV shows are U.S. only. Previous purchases may not be restored if they are no longer in the iTunes Store, App Store, or iBookstore.
    Some previously purchased movies may not be available in iTunes in the Cloud. These movies will indicate that they are not available in iTunes in the Cloud on their product details page in the iTunes Store. Previous purchases may be unavailable if they have been refunded or are no longer available in the iTunes Store, App Store, or iBookstore.
    You get 5 GB of free iCloud storage for:
    Photos and videos in the Camera Roll
    Device settings (for example: Phone Favorites, Wallpaper, and Mail, Contacts, Calendar accounts)
    App data
    Home screen and app organization
    Messages (iMessage, SMS, and MMS)
    Ringtones
    Visual Voicemails
    OT

Maybe you are looking for

  • On outer Join Query

    Hi All, I have a outer join query which is creating bottlenecks and increasing the cost of the query, the plan of the query is pretty awkward with multiple nested outer loop joins. Though its the requirement for me to write such a query. I would like

  • ITunes using 50% CPU

    I need some help. It seems that iTunes is taking up over 50% of my CPU and is fragging everything ese to a massive slow down. I have tried all of the suggestions on the iTunes support page, to no avail. Has anyone been abel to resolve this? It seems

  • RMI Server : GUI

    Is it possible to have the Server side be a GUI application? All of the examples I have seen are just command line applications. I tried creating a GUI in my Server class but it seems to never create the gui. Does anybody know what I am doing wrong?

  • Static imports in 1.5

    same static variable and same static method exists in two diffrent classes, while importing these two in my own implementation class follwing different output is coming why? Using j2se version1.5 while using variable imports like import static packag

  • HT1918 I would like to reset my Apple ID's security questions/anwers

    I forget my Apple ID's security answers, I want to reset them