Scroll Motion Elements Shake When Using Anchors

When the browser window is narrower than the site, elements with scroll motion "shake", often severely, and sometimes change position when using links to jump to different anchors on the page. What causes this and is there a way to fix it?
Here is the site I'm working with. If you scroll using the scroll bars, there is no issue, it only happens when using the links in the bar at the top. Any ideas? Thanks.
http://cuberogroup.businesscatalyst.com/

Hi @Kydos 
Thank you for your reply.
I grasp that if you disable the graphic driver in device manager the issue is gone.
Here is a link to  Resolving Video and Graphics Issues that will assist with this.
Have you tried running the  HP Support Assistant  to look for any HP updates?
Here is a link to the  HP Envy 17t-1000 CTO Notebook Software & Drivers  to verify you have all the recommended updates.
You could also try reseating the card if that does not help.
Next would be to test the card. Testing for Hardware Failures (Windows 7, Vista)
Good Luck!
Sparkles1
I work on behalf of HP
Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
Click the “Kudos, Thumbs Up" on the bottom right to say “Thanks” for helping!

Similar Messages

  • I have just upgraded to Yosemite and now Photoshop Elements freezes when using spot healing or clone stamp, is there an update due?

    I have just updated to OSX10.10 Yosemite and now Elements freezes when using spot healing or clone stamp.

    If you are using track pad, please use mouse and see if your issue is resolved.
    Moreover, this issue has been resolved in PSE 13. You can give it atry as well.
    Thanks!!

  • Motion 3 crashes when using Track Points. (Add Behavior/Shape/Track Points)

    Please Help!!
    Motion 3 crashes when using Track Points.
    First I make a shape and apply the behavior.
    Clicking analyse shows its renderbar, but stops and motion crashes.
    Thank you.
    Huig
    Mac Pro/2.66 Ghz/3Gig/Aty Radeon X1900   Mac OS X (10.4.9)  
    Mac Pro/2.66 Ghz/3Gig/Aty Radeon X1900   Mac OS X (10.4.9)  

    Robert Kleindienst1 wrote:
    I have two objects moving in a video and want to attach a line shape between them....
    Have a look:
    two circles, a 'dot' applied to each, the dots are moved by a behavior to rotate....
    The line connecting them. is a bezier
    no Motion Tracking needed
    Just dragging the dot into the TrackPoint's dwell
    And:
    Select which points are tracked - see the red arrows:

  • Muse shifting scroll effect objects 20 px right when using anchors

    I am using anchor navigation in a single page website.  My objects with scroll effects applied to them are aligned correctly within muse but shift 20 pixels right when i view the site in the browser.  any one else having this issue and how do you fix it.
    site rabobio.businesscatalyst.com

    To somewhat deal with this problem i have taken the object with scroll effects on it and moved it 20 px left in muse to center it in browser.  i don't know why the shift is only occurring to abjects with scroll effects on them on pages where i use anchor navigation

  • Website Won't Scroll in Google Chrome When using Layers

    Hi there, this is starting to really get frustrating.
    I am building a site in Adobe Muse, and I so far have three layers: Header (contains header elements), Intro (Contains the first part of the page everyone sees when they load the browser), Our Details (Contains the second section of what will be the first of many when the site is done). In google chrome, clicking the "Find out why" link works fine and scrolls to the section, but using the mouse wheel or scroll bar at any point in the website doesn't work- it just makes everything flicker and sometimes returns you to the top of the page if you are already in the second section. This seems to be happening in some other peoples muse websites in chrome that I looked at too: it seems to be layers that are causing the issue when viewed in chrome. It seems to work flawlessly in Internet Explorer however....
    The Link to my site that I am building is here: http://niad.businesscatalyst.com
    My google chrome version is the newest (Version 29.0.1547.66 m) for Windows 8
    This does not happen however on google chrome (or safari) for mac.

    Hey- thanks but that isn't the issue. The problem occurs when trying to scroll using the scroll wheel on the mouse or using the scroll bar. Scrolling using the anchor tag links like "Learn Why" works fine. Again, this problem only seems to effect the google chrome browser- version 29.0.1547.76 m
    This is also happening on pretty much every adobe muse site I visit-when usng this browser.
    Thanks,
    Jaiden

  • Bug in HttpServletRequest.getParameter when using anchors (#)?

    When using
    response.sendRedirect("getParameterError_display.jsp?parm1=blurb&parm2=moreblurb#myanchor");
    to redirect to a jsp, a call to getParameter in that JSP for parm2 returns "moreblurb#myanchor" rather than "moreblurb".
    I thought originally that I was building the URL incorrectly but IE5 navigates correctly to the anchor point in my HTML.
    Is this a bug in getParameter or am I doing something wrong?
    Many Thanks, full code below.
    getParameterError.jsp
    <%@ page session="true"
    import="javax.servlet.*,
            java.util.*
    "%>
    <html>
    <head>
    <title>Illustrates problem with request.getParameter and anchors</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>
    <body bgcolor="#FFFFFF" text="#000000">
    <%
        String newURL = "getParameterError_display.jsp?parm1=blurb&parm2=moreblurb#myanchor";
        response.sendRedirect( response.encodeRedirectURL( newURL ) ) ;
    %>
    </body>
    </html>
    getParameterError_display.jsp
    <%@ page session="true"
    import="javax.servlet.*,
            java.util.*
    "%>
    <html>
    <head>
    <title>Illustrates problem with request.getParameter and anchors</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>
    <body bgcolor="#FFFFFF" text="#000000">
    <a href="getParameterError.jsp">try again</a>
    <br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
    <br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
    <a name="myanchor">here is myanchor</a>
    <a href="getParameterError.jsp">try again</a>
    <p>The paramaters are:</p>
    <%
            Enumeration e = request.getParameterNames();
            String name;
            String [] values;
            while( e.hasMoreElements() ) {
                name = (String)e.nextElement();
                values = request.getParameterValues(name);
                for(int i=0; i< values.length; i++) {
    %>
                    <%= name + " = " + values%><br>
    <%
    %>
    </body>
    </html>
    Output
    The paramaters are:
    parm2 = moreblurb#myanchor
    parm1 = blurb

    I get the same problem in Tomcat 4.0.1. Fixed it by terminating the param string with "&".
    e.g. instead of
    String newURL = "getParameterError_display.jsp?parm1=blurb&parm2=moreblurb#myanchor"; try
    String newURL = "getParameterError_display.jsp?parm1=blurb&parm2=moreblurb&#myanchor";This worked in IE6 and Netscape 6.2. Hope it works for you.

  • Why does consecutive figure numbering break when using anchored and in-lin objects

    I have an ID CC2014 document that contains graphics with figure numbers associated (using a defined paragraph style - numbered list - continue from previous) and when I place these into the flow of the document with a wrap associated to them they maintain the consecutive numbering that was set up in the figure style sheet. However when a table or graphic is placed in-line with the text (anchored graphic box or inserted table) the consecutive figure numbering doesn't continue, it restarts as #1. The next anchored or inserted item then sees this figure number and follows as if the list was restarted.  What is up?
    I have found that if all items are used as wrap graphics or separate text/table boxes the figure numbering functions as it should.
    Is this a glitch?

    I had that happen a month or so ago. What I discovered was there was another numbered list setting in the anchored frames. That's what was restarting the numbers. No glitch. User error.
    Sent from my iPhone
    So pardon the brevi

  • Org.xml.sax.SAXException: Invalid element    error when using code in view project

    I have a SOAP (RPC style) client bundled in a jar. It uses Axis1.4.
    I have created a ADFBC model project with programmatic view & entity objects that uses this soap client for CRUD operations.
    The Model project works fine when I run the Appmodule and a standalone java tester class.
    This model project is then deployed as a library and included in a different ADF web application.
    When running this application, I get the following exception for one method.
    Has anyone faced this issue? Any idea what's going on?
    Surprisingly, "dbAttributes" -the cause of the error is not even in the User class (or any other class in the entire application)!
    I am using JDeveloper 11.1.1.5. Issue occurs in integrated wls.
    AxisFault
    faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
    faultSubcode:
    faultString: org.xml.sax.SAXException: SomeClass - dbAttributes
    faultActor:
    faultNode:
    faultDetail:
      {http://xml.apache.org/axis/}hostname:localhost.localdomain
    org.xml.sax.SAXException: Invalid element in some.package.User - dbAttributes
      at org.apache.axis.message.SOAPFaultBuilder.createFault(SOAPFaultBuilder.java:222)
      at org.apache.axis.message.SOAPFaultBuilder.endElement(SOAPFaultBuilder.java:129)
      at org.apache.axis.encoding.DeserializationContext.endElement(DeserializationContext.java:1087)
      at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1359)
      at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:376)
      at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:322)
      at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:226)
      at weblogic.xml.jaxp.RegistryXMLReader.parse(RegistryXMLReader.java:173)
      at javax.xml.parsers.SAXParser.parse(SAXParser.java:395)
      at org.apache.axis.encoding.DeserializationContext.parse(DeserializationContext.java:227)
      at org.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.java:696)
      at org.apache.axis.Message.getSOAPEnvelope(Message.java:435)
      at org.apache.axis.handlers.soap.MustUnderstandChecker.invoke(MustUnderstandChecker.java:62)
      at org.apache.axis.client.AxisClient.invoke(AxisClient.java:206)
      at org.apache.axis.client.Call.invokeEngine(Call.java:2784)
      at org.apache.axis.client.Call.invoke(Call.java:2767)
      at org.apache.axis.client.Call.invoke(Call.java:2443)
      at org.apache.axis.client.Call.invoke(Call.java:2366)
      at org.apache.axis.client.Call.invoke(Call.java:1812)
      at some.package.ManagerSoapBindingStub.createUser(ManagerSoapBindingStub.java:879)
      at some.package.Proxy.createUser(Proxy.java:294)

    PROBLEM SOLVED.
    org.apache.axis.encoding.ser.BeanDeserializer.onStartChild(BeanDeserializer.java:258)
    org.xml.sax.SAXException: Invalid element in
    I think this is a very common problem, and the sad thing is there are so many forums with no answers. I was getting this error because I was using client stubs generated by wscompile instead of wsdl2java. Once i used the stubs from wsdl2java, the error vanished****. I think its because the wscompile classes do not have property descriptors for each field in the response class. an example of such descriptors would be:
            typeDesc.setXmlType(new javax.xml.namespace.QName("https://ns.ns.btu", "LoginResponseData"));
            org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
            elemField.setFieldName("sessionID");
            elemField.setXmlName(new javax.xml.namespace.QName("https://ns.ns.btu", "SessionID"));
            elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "int"));
            elemField.setNillable(false);
            typeDesc.addFieldDesc(elemField);The wsdl2java classes do have these descriptors for each field.
    Please also look at the following links if you still having problems:
    http://marc.info/?l=axis-user&m=103705794612785&w=2
    http://www.opensubscriber.com/message/[email protected]/1877996.html

  • Why can I no longer scroll with the mouse when using Pages?

    A few days ago, I realized that I am unable to scroll within a Pages document with the mouse.  The scroll bar is not there.  The scroll feature works fine, and after trying to figure this out myself with no success, I thought I'd ask here.  I have Pages '09 and I'm using OS X 10.9.5.

    Thanks.  That's not the problem.  Scrolling works in everything else except Pages.  I used to be able to scroll just by using my finger up or down on the mouse.  Now, I can't do that.  I tried setting the scroll bars to "Always", but then I have to physically click on the scroll bar and move it up and down.  Not like it's that much hassle, lol, but I got used to just scrolling with my finger on the mouse.

  • Missing element To when using SOAP 1.2 with WS Addressing 1.0 in Response

    Hi, 
    I'm developing WCF using  SOAP 1.2 with WS Addressing 1.0 between Windows Server 2012 and JAVA client Oracle JAX-WS 2.1.5.
    The Request from the client contains the element <To>, but the Response from the Server somehow will ignore that element, which is required for the client, even I tried to add manually.(refer to http://stackoverflow.com/questions/15808852/how-to-correctly-implement-custom-soap-1-2-headers-and-ws-addressing-in-a-wcf-se)
    Is this normal behavior that the Response will ignore the element <To>?
    And is there another way to add the element?
    Thanks.

    I'm developing server side service using .net framework 4.0.
    Microsoft Service Trace Viewer shows that in ServiceLevelReceiveRequest the element <To> is exist, but then it is gone in the following step, ServiceLevelSendReply, and TransportSend.
    Thanks.

  • Scroll bar in JPopupMenu when used in JList

    Hi,
    I want variable list (not combo box) where I can add multiple JMenuItems through JPopupMenu. I have created JList in JScrollPane and I have added multiple JMenuItems one by one but in output I am getting the list of JMenuItems without scrollbar. There is no way I can navigate to last JMenuItem in the JList. Could someone help me with integration of JList, JMenuItems, JPopupMenu with scroll bars?
    Below given is the sample code. GUI components have been added through Netbeans.
    public void updatePopUp()
    final JPopupMenu menu = new JPopupMenu();
    menu.setBorder(null);
    menu.setAutoscrolls(true);
    JMenuItem item = new JMenuItem("JMenuItem");
    item.addActionListener(this);
    menu.add(item);
    item = new JMenuItem("JMenuItem");
    menu.add(item);
    item = new JMenuItem("JMenuItem");
    menu.add(item);
    item = new JMenuItem("JMenuItem");
    menu.add(item);
    item = new JMenuItem("JMenuItem");
    menu.add(item);
    item = new JMenuItem("JMenuItem");
    menu.add(item);
    item = new JMenuItem("JMenuItem");
    menu.add(item);
    item = new JMenuItem("JMenuItem");
    menu.add(item);
    item = new JMenuItem("JMenuItem");
    menu.add(item);
    item = new JMenuItem("JMenuItem");
    menu.add(item);
    item = new JMenuItem("JMenuItem");
    menu.add(item);
    item = new JMenuItem("JMenuItem");
    menu.add(item);
    item = new JMenuItem("JMenuItem");
    menu.add(item);
    item = new JMenuItem("JMenuItem");
    menu.add(item);
    item = new JMenuItem("JMenuItem");
    menu.add(item);
    item = new JMenuItem("JMenuItem");
    menu.add(item);
    item = new JMenuItem("JMenuItem");
    menu.add(item);
    item = new JMenuItem("JMenuItem");
    menu.add(item);
    item = new JMenuItem("JMenuItem");
    menu.add(item);
    item = new JMenuItem("JMenuItem");
    menu.add(item);
    item = new JMenuItem("JMenuItem");
    menu.add(item);
    item = new JMenuItem("JMenuItem");
    menu.add(item);
    item = new JMenuItem("JMenuItem");
    menu.add(item);
    item = new JMenuItem("JMenuItem");
    menu.add(item);
    item = new JMenuItem("JMenuItem");
    menu.add(item);
    item = new JMenuItem("JMenuItem");
    menu.add(item);
    item = new JMenuItem("JMenuItem");
    menu.add(item);
    item = new JMenuItem("JMenuItem");
    menu.add(item);
    item = new JMenuItem("JMenuItem");
    menu.add(item);
    item = new JMenuItem("JMenuItem");
    menu.add(item);
    item = new JMenuItem("JMenuItem");
    menu.add(item);
    item = new JMenuItem("JMenuItem");
    menu.add(item);
    item = new JMenuItem("JMenuItem");
    menu.add(item);
    item = new JMenuItem("JMenuItem");
    menu.add(item);
    item = new JMenuItem("JMenuItem");
    menu.add(item);
    item = new JMenuItem("JMenuItem");
    menu.add(item);
    item = new JMenuItem("JMenuItem");
    menu.add(item);
    item = new JMenuItem("JMenuItem");
    menu.add(item);
    menu.setVisible(true);
    menu.pack();
    varList.add(menu);
    // Set the component to show the popup menu
    /* this.addMouseListener(new MouseAdapter() {
    public void mousePressed(MouseEvent evt) {
    if (evt.isPopupTrigger()) {
    menu.show(evt.getComponent(), evt.getX(), evt.getY());
    public void mouseReleased(MouseEvent evt) {
    if (evt.isPopupTrigger()) {
    menu.show(evt.getComponent(), evt.getX(), evt.getY());
    }

    I was going to say try setting the preferred (or maximum) size of the scrollpane to force it to be no larger than you want.
    But ...
    a) I don't see you putting menu items in a JList in that code. You are putting them directly into the popup menu (aka, the normal way to do things).
    b) Calling setAutoscrolls() on the JPopupMenu does not make it a "scrollable" menu. It is for supporting dragging of components in a scrollpane (usually). Read the API docs.

  • I have Photoshop elements 9, when using the cloning tool. It grabs something else and shoots it across photo ?

    ?

    Did it work in previous sessions? If so, suggest that you reset the tool.
    To do that, there should be a little arrow on the tool's option bar, top left. Click on it, then reset.

  • Content jittering in Safari when using linked anchors to scroll.

    I recently launched a preview version of the website I've been designing in Adobe Muse CC 2014.2: http://spudniksavannah.com/beta-0.1.html
    A ton of the feedback that I've been getting from Safari users is that content appearing on screen is very "shaky/jittery" initially as they navigate through the page using the menu (hyperlinked anchor buttons) or by scrolling (using this scroll wheel anchor widget, downloaded from: Use mouse scroll wheel to navigate between Muse anchors – Adobe Muse Widget Directory).
    At first I was concerned it was the widget that was causing the problem, but after removing it I noticed the problem still occurs when you use the out-of-the-box hyperlinked anchors from Adobe Muse.
    I'm a Google Chrome user first and foremost, and the scrolling looks fine in my browser.  I didn't know this problem even existed prior to receiving feedback from my testing group but apparently the site features a similar problem with Firefox browsers as well.
    Once the site is launched I expect all sorts of users with a variety of different experience levels (and browsers) to visit the page, so this could develop from a relatively minor annoyance to me, into a fairly significant distraction for others.
    Any suggestions/insight would be greatly appreciated.
    Thanks,
    Chris

    Please refer to similar thread here :
    https://forums.adobe.com/message/6416723
    Thanks,
    Sanjit

  • Rollover for element with Scroll Motion?

    Hey There, I'm having a problem where I can't apply a rollover function to a jpeg that already has parallax scrolling applied to it. The scroll motion is working just fine. But when add an effect, like a shadow, to the jpeg under the rollover state, the next time I preview or upload the html to my server the jpeg is gone altogether. I've tried a number of options but am racking my brain for a way to have both a rollover function and parallax scrolling on the same element.
    Thanks for any advice.

    Hi Justin, I realized that I could use the tooltip widget to utilize the rollover function with that and then put scroll motion on the widget itself and it seems to work just fine.

  • Why when using Adobe Bridge,  I apply a star rating,  the rating does not show up in Photoshop Elements? [tags]

    Why when using Adobe Bridge,  I apply a star rating,   the rating does not show up in Photoshop Elements.  I use Elements as my organizer and Bridge to view as it is much more user friendly.  Anyone any solutions??

    Most likely you have set the wrong file as the external editor. You don't want the obvious one; that's just a link to the welcome screen. Go back and choose this one, which is hidden away inside the folder Support Files:

Maybe you are looking for

  • Error in Personnel Information

    Dear Friends I'm getting a issue in production system where all users are unable to access their Personnel Information screens. Earlier the Issue was ST22 Dump: "ASSERTION_FAILED" " "                                                                   

  • New podcast in iTunes

    How long does it take for my new podcast, which I have confirmed has been submitted to iTunes, to actually show up in the iTunes store? Right now if I search for it, it doesn't come up. The title is L6 D1 Vocab, artist Kathy Lawrence.

  • Placing images into a multistate object

    Hey folks, Trying to figure out what's going on here. Thanks to some helpful folks here, I'm making inroads with JS programming, but I'm still hitting some bumps in the road. I've got a handful of graphics that I'm importing, and now I want to to tur

  • Neo2-FISR new bios wont post

    I just upgraded my bios to the "more stable" bios downloaded via MSI live update 3.0 Now my system will not even post! my system is intel p4 3.2 800fsb Kingston hyperX 2x512 420w PS 12v=13a 5v=32a 3v=26a video card Geforce FX 5200 Ultra Hard drive =

  • Slow Speeds, no phone for two months, extortionate...

    Last summer, in preparation for Infinity (or so we were told), work was carried out at our local cabinet.  Most houses in the street lost their phone for days, weeks or even months. Thankfully we have a second line in the house dating back to dial up