Jumpy mouse movements on Asus netbook

Just installed FF 4.0 and using it on an Asus netbook 1101HA. Whenever I use the mouse on a website, the mouse moves erratically, noticeably erratic. This problem is not apparent in any other app. (I'm using the mouse pad and not an external mouse.)

Hi Rod,
we are working on this with our team, and here are some interesting things we found out:
We uploaded a non-scorm course  on Moodle and it works smoothly. In Captivate every page will  communicate with the LMS for bookmarking and reporting. Maybe for that  reason the animations are not smooth. With this observation we are  trying to play around with the layers in Captivate to see if it brings  any difference.
Here is the link to the non-scorm course: http://mytechschool.com/moodle/file.php/101/Multi%20Color%20Pen%20-%20v1.38.htm
The communication that occurs on each slide is causing the jumpy mouse /  slow mouse movements.  Is it possible to fix it by modifying / adding javascript  into the HTML wrapper so the SCORM package didn't send the results until  the end of the assessment?
How can we do this?
Here is the moodle post where they provided javascript  code to accomplish this task.  Unfortunately, when this code is used, it  doesn't record the results in the gradebook.  We could use help from  the Adobe community to modify this code so it records the results in the  gradebook while avoiding a jumpy mouse.
http://moodle.org/mod/forum/discuss.php?d=79349#p804524\
TIA.

Similar Messages

  • Jumpy Mouse in Moodle LMS

    Hi,
    we are making SCORM software simulations using Adobe Captivate 5.5.
    We  have an issue where the software simulations experience jumpy mouse  movements.  These mouse movements are ONLY jumpy when the SCORM package  is played within Moodle.  They are not jumpy when we play the same  package on the SAME server outside of moodle.
    We have tried multiple solutions but none of them work.
    Any help would be welcome.
    TIA.

    Hi Rod,
    we are working on this with our team, and here are some interesting things we found out:
    We uploaded a non-scorm course  on Moodle and it works smoothly. In Captivate every page will  communicate with the LMS for bookmarking and reporting. Maybe for that  reason the animations are not smooth. With this observation we are  trying to play around with the layers in Captivate to see if it brings  any difference.
    Here is the link to the non-scorm course: http://mytechschool.com/moodle/file.php/101/Multi%20Color%20Pen%20-%20v1.38.htm
    The communication that occurs on each slide is causing the jumpy mouse /  slow mouse movements.  Is it possible to fix it by modifying / adding javascript  into the HTML wrapper so the SCORM package didn't send the results until  the end of the assessment?
    How can we do this?
    Here is the moodle post where they provided javascript  code to accomplish this task.  Unfortunately, when this code is used, it  doesn't record the results in the gradebook.  We could use help from  the Adobe community to modify this code so it records the results in the  gradebook while avoiding a jumpy mouse.
    http://moodle.org/mod/forum/discuss.php?d=79349#p804524\
    TIA.

  • Area of focus turns totally black using ASUS netbook

    I have loved Firefox for years. Recently got an ASUS netbook (Windows 7 Starter)with lots of memory. Tried Firefox 4 beta and basically the whole screen would go black so totally unusable. Now with the released version of FF4 only the area of focus goes black (the slider, whatever portion of the screen my mouse is over, ...) Have gone back to FF3.6.
    Am running FF4 on my HP laptop (Windows 7) and Droid 2 phone with no problems. They even sync.

    Often laptop keyboards will integrate a number pad into the keyboard, to be used when the numlock shortcut is pressed.  You should see something like num lk printed underneath your insert key.  Use fn + insert to toggle numlock on your laptop.

  • I just created a new profile/user on my MacBook Pro. My pointer/mouse. It works fine in my older user profile, but when I go to the new profile my mac will not respond to clicks. Mouse moves but will not click. Already tried restarting and the pram zap.

    I just created a new profile/user on my MacBook Pro. My pointer/mouse on my trackpad. It works fine in my older user profile, but when I go to the new profile my mac will not respond to clicks. The Mouse moves but will not click. Already tried restarting and the pram zap. The problem starts when I log out of my main profile. I get to the login screen and my laptop stops responding to clicks. When I manage to make my way back to my main profile the mouse works perfectly.  Should I just delete the new profile and try again?

    If the modem is also a router, either use the modem in bridge and run pppoe client on the TC.. that is assuming ADSL or similar eg vdsl. If it is cable service.. and the modem is a router, then bridge the TC.. go to internet page and select connect by ethernet and below that set connection sharing to bridge.
    Please tell us more about the modem if the above gives you issues.

  • After sleep, retina MacBook Pro (Mid 2014) does not recognize usb connected mouse movement

    After sleep, retina MacBook Pro (Mid 2014, on 10.9.4) does not recognize usb connected mouse movement. I have tried a generic usb mouse and my Razer Deathadder usb mouse. Both mice work before sleep; but after sleep, the computer no longer recognizes mouse movement while still recognizing the mouse buttons when pressed. Any idea why this is occurring?

    Hello, chocotac0.  
    Thank you for visiting Apple Support Communities.
    Here are some troubleshooting steps that I would recommend when experiencing this issue.
    OS X Mavericks: Reset your computer’s PRAM
    http://support.apple.com/kb/ph14222
    Intel-based Macs: Resetting the System Management Controller (SMC)
    http://support.apple.com/kb/ht3964
    OS X Mavericks: If a USB device isn’t working
    http://support.apple.com/kb/PH13876
    Cheers,
    Jason H.

  • How to change the mouse cursor icon type when mouse moves out of client area ( propertysheet) WTL?

    I got stuck with an issue in property sheet .I want to load different cursor when the mouse position is within the client area and load another when moves out of the client area.
    In the porpetysheet I added four page. In the first page when I click next I am loading cursor of IDC_WAIT type and loading IDC_ARROW when the mouse moves out of the client area.
    In the page class I triggered the event for WM_MOUSEMOVE as follow:
        MESSAGE_HANDLER(WM_MOUSEMOVE, OnMouseMove)
    LRESULT OnMouseMove(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/)
    if(TRUE == m_bIsNextBtnClicked)
    ::SetCursor(LoadCursor(NULL, IDC_WAIT));
    else
    ::SetCursor(LoadCursor(NULL, IDC_ARROW));
    return TRUE;
    This event is getting triggered and absolutely had no issue with this. Similarly I tried adding `MESSAGE_HANDLER(WM_MOUSELEAVE, OnMouseLeave)` this event making an assumption that this will get triggered if the mouse moves out of the client area,  but
    this event did not get triggered at all.If this is not the mouse event to be triggered for mouseleave which event should I trigger?
    LRESULT OnMouseLeave(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/)
    ::SetCursor(LoadCursor(NULL, IDC_ARROW));
    return TRUE;
    Now when I click Next button , **I was actually calling a function which is taking sometime to return** . Before to this function I am loading IDC_WAIT cursor i.e., 
     `::SetCursor(LoadCursor(NULL, IDC_WAIT));` . 
    Now when move the mouse cursor on to the non-client area I want to load IDC_ARROW cursor i.e., 
        ::SetCursor(LoadCursor(NULL, IDC_ARROW)); 
    When the moves on to the non-client area I am handling the mouse event in sheet derived class as follows,
    MESSAGE_HANDLER(WM_NCMOUSEMOVE, OnNCMouseMove)
    LRESULT OnNCMouseMove(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/)
    ::SetCursor(LoadCursor(NULL, IDC_ARROW));
    return 0;
    This event is not getting triggered until unless the function in the Next button event is executed.
    I want both of them to be done in parallel i.e, click Next button now hover mouse on the client area, Busy icon should come and when mouse moves out of the client area then IDC_ARROW icon should come.
    LRESULT OnWizardNext()
    ::SetCursor(LoadCursor(NULL, IDC_WAIT));
    m_bIsNextBtnIsClicked = TRUE;
    BOOL bRet = MyFun();
    m_bIsNextBtnIsClicked = FALSE;
    //Until this function(MyFun()) is executed **WM_NCMOUSEMOVE**
    //event is not getting triggered.But this event should get triggered and I
    //should be able to see the change of cursor within and out of client area.
    Can anyone kindly help me to solve this issue.
    SivaV

    Hello
    sivavuyyuru,
    For this issue, I am trying to involve someone to help look into, it might take some time and as soon as we get any result, we will tell you.
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • On my Cinema Display the screen is blurry and shifts with mouse movement.

    I have had this screen for a year and a half and only use it once a week in my remote office. This morning I noticed blurring on the screen and the whole screen shifts up/down, left/right with mouse movement. Please help. I am getting a headache.
    Thanks In Advance,
    Rob

    Press Command-Option-8 once or twice.
    You have Zoom on. It is controlled in "Seeing" in "Universal Access" system preference, and by Control-Scrollwheel.

  • Flash video performance poor in Firefox 3 and other newer Gecko-based browsers; fails to detect mouse movement in full-s

    Regardless of configuration, I have found Flash video
    performance on Firefox 3 to be severely sub-par. Numerous visual
    lags occur throughout a typical Youtube video as it cannot seem to
    manage to maintain a steady frame rate. When in full-screen, mouse
    movement is not detected, forcing me to click in a full-screen
    Vimeo video in order to display its controls when I should have
    only needed to move the mouse. I was informed that the technical
    explanation for this is that Flash isn't triggering MouseEvents
    other than MouseEVENT.CLICK.
    In my tests, this behavior also occurred in Flashplayers 9
    and 10 as well as with recent versions of other browsers that also
    use the Gecko rendering engine, namely Camino, Flock and Songbird,
    but not in Firefox 2. I was told by a Mozilla employee that this
    issue can only be solved by Adobe.
    This has forced me to use the Safari browser as my only
    available work-around. I implore that these issues get resolved as
    quickly as possible.

    guys, im exactly experience the same issue here.. any
    solution guys? tks in advantage..

  • Every keystroke and mouse movement, I get an audio notice that I need to shut off. In Safari, the cursor cycles thru every link and metadata field and I get a verbal/audio notice of what it is.  How do I shut this option off???

    Every keystroke and mouse movement, I get an audio notice that I need to shut off. In Safari, the cursor cycles thru every link and metadata field and I get a verbal/audio notice of what it is.  How do I shut this option off???

    Press the key combination command-F5 to deactivate VoiceOver. If that doesn't work, proceed as follows.
    For OS X 10.7: From the menu bar, select
     ▹ System Preferences ▹ Universal Access ▹ Seeing ▹ VoiceOver: Off
    For OS X 10.8 or later: Select
     ▹ System Preferences ▹ Accessibility ▹ VoiceOver ▹ Enable VoiceOver: Off

  • Premiere Elements 13 issue with the mouse on When I select a clip of video and move to a different place in my time line, Premiere Elements 13, will not release the clip rom the mouse.    The clip follows my mouse movements and goes to other places in my

    Premiere Elements 13 issue with the mouse on MAC OSX Yosemite 10.10.1
    When I select a clip of video and move to a different place in my time line, Premiere Elements 13, will not release the clip from the mouse.
    The clip follows my mouse movements and goes to other places in my time line.
    I try to delete these extra insertions, but the mouse will not release the clip.
    Action I’ve taken: I’ve re-installed Premiere Elements 13. Problem remains.
    This issue has consumed too much of my time and does not go away.  It ruins my video.
    Help please.
    Thanks

    I tried using the Guest Account on my Mac. In the Guest Account, Illustrator works perfect!
    Then I started wondering what processes (tools/tweaks) I run by default on my account. Turned out the problem was called by a little background tool called RightZoom. RightZoom let's the green 'zoom' button always maximize your current window.
    So thanks! Problem solved!

  • How can I stop coalescing of mouse move/drag events in jdk1.6 ?

    Hello all,
    My application uses a [pen-based tablet|http://en.wikipedia.org/wiki/Graphics_tablet] to draw lines/curves. But the problem is: when I run my application, due to java’s default behavior of discarding the mouse events which occurs during the repaint call, the curves results in the set of joined straight lines.
    To overcome this problem, when searched over net, came across below link:
    [http://forums.sun.com/thread.jspa?messageID=10811388]
    I tried the option provided at the above URL i.e. overriding the below method of Component.java file:
    protected AWTEvent coalesceEvents(AWTEvent existingEvent,AWTEvent newEvent);
    But later found that, overriding this method worked fine for me for jdk1.5 but this solution did not work in case of jdk1.6. When reviewed the source of Component.java and EventQueue.java files in jdk1.6, found that this method is not having any implementation and simply returns “null” and the complete handling of coalescing of events occurs within EventQueue.java file’s local method which is mentioned below:
    private boolean coalesceEvent(AWTEvent e, int priority);
    As this method is part of EventQueue.java and also it is a private method, I am not finding any way to stop the coalescing of mouse move/drag events in jdk1.6.
    The main problem is that my application is purely based on jdk1.6 only.
    Can anybody help me out to solve this problem by providing any option of preventing the coalescing of mouse move/drag events in case of jdk1.6.
    Thank you.

    Look at the link I posted, you aren't double buffering correctly.
    I saw the other post you mistakenly made before you edited it. Not really a big deal, I was just wondering why you did that.

  • XY graph "mouse move" event stops generating when click on cursor

    Hello All
    When the mouse is moving freelly inside the XY graph control, the "mouse movement" event is fired.
    The same happens when muse clicks anywhere in the graph with the exception of cursors.
    hen mouse clicks on cursors the "mouse move" event is NOT generated even though the mouse is phisically moved.
    Is there any explanation to this.
    I enclose the example.
    regards
    Pawel

    Just today I had the same problem -> my solution:
    set event timeOut to some value(I have it at 1ms) then
    add to globalVariables some BOOL variable that will signal if mouse is down or up (set the flag in appropriate event),
    then add a case in the timeOut event which will read this
    global variable(flag) -> if it's TRUE then change the needed parameter.
    So even if the mouse move event isn't fired the main timeout event is.
    Not a perfect solution, but better than nothing.
    Peace
    Waldemar

  • CS3 Ext. Vista 64 jerky mouse movement

    Hi there,
    I have a huge problem with my 32 Bit Photoshop CS3 Extended under the operating system Windows Vista Business 64 Bit and don't know if this is a known problem or has to do with the 64 Bit or something. I don't know what to do more so I ask here in hope of some help.
    The problem: When I use the f-key to switch to a mode where the image uses the whole space behind the tool paletts and use the space-key to switch temporarily to the move tool to move the image around, my next mouse movements with click actions will be really jerky.
    To explain this further more imagine you are on a deep zoom level inside an image, using the polygon lasso to mark an object exactely, there's often the situation where you come to the border of what you can still see and what you can't see anymore. Here you'd use space and move the window a bit in the direction you want to continue marking the object. When I do that (in fact after the first time i do that) I see that the whole processing of generating those marking points with the lasso gets really jerky as if the pc is studdering. It is not possible to work fluently and/or fast this way. As you can see from my speccs (see further down for details) pc speed is no real issue here. Other things like GPU-heavy games (e.g. Crysis) don't show any studdering.
    Things I already tried to no success:
    1) deactivated version cue
    2) bumped the memory that Photoshop may use from 2.5 GB to the maximum of about 3.5 GB. Windows still has plenty of memory left for itself as Photoshop seems to have a border here that windows itself hasn't.
    3) deactivated GPU-Support temporarily
    Some more information:
    1) Windows and Photoshop are on their newest versions/patches.
    2) There is no emulation software and no Nero installed.
    3) The file I'm testing this with is newly made (ctrl-n) in a resolution of 1280x1024 @ 300 dpi plain white. This shouldn't be extremely large.
    4) Computer speccs: Intel Core i7 920 @ 4000 MHz, 6GB DDR3-1600, Geforce GTX 285 Black Edition, Watercooling for processor and north-/south-bridge and condensators. The whole system resides on 2 500GB Samsung Spinpoint F1's that run in raid 0 mode for speed purposes. Partitioning is done so that the operating system, programs, data, temp-files, photoshop swap file, windows swap file (and some more partitions) are each on separate partitions.
    5) CPU/GPU temperatures are on nice levels (about 50°C each) and at least what I see from the CPU usage all 4 CPU-cores are getting bored during all this (less than 10% usage each).
    6) This is nothing that is limited to the polygon lasso tool: If i use the clone stamp tool or a brush I get the same problem after moving the image around with the move tool on a higher zoom level.
    7) I didn't have this problem on my old pc with Athlon 64 4000+ single core with 2 MB RAM and Windows XP Prof. 32 Bit. Furthermore I haven't seen my new pc without that problem so far. So the problem exists from the beginning.
    Any help is much appreciated! I hope I made myself as clear as possible. If there are questions on your side please ask.
    Kind Regards
    Steve

    Yes, of course the guarantee is solely on the vendor's part. They give 5 years of guarantee on the hardware as they build them together.
    That is an interesting information with CS3 and multi-core-systems. I shall google that and see what information I find about it. Thanks for the remark.
    I'd be more than happy if some folks here could bring some more light in the 64Bit-RAM-size-scratch-disk-issue and how it affects CS3-behavior. Would be really helpful.
    Right now it should be (almost) like this: Vista gets about 2.5GB of RAM, Photoshop gets about 3.5GB of RAM, that is if Photoshop would take it (I'm not sure if it does although I configured it to do so). Being able to use the whole 6GB of RAM was the reason to use a 64Bit OS.
    EDIT: I found a test with dual-core and quad-core systems with Photoshop CS3. The operating system seems to be 32 Bit though. It seems that CS3 doesn't scale very well with 4 cores. It uses 2 apparently but cannot make use of more. But anyway as I said: My old PC with a speed of 2.4GHz (single core Athlon 64 4000+) whose clock-speed is not directely comparable to my i7's 4GHz because of efficiency did the job without studdering. It had only one core that was much (!) slower than any single core on my i7. Even if the multi-core cannot be used from CS3 one would think that it had to run faster with the i7. In my opinion it must have something to do with either the 64 Bit OS or the raid0. The partions were no issue on the old machine (although I used multiple HDDs in the past so Windows and Photoshop were on the same HDD on different partitions but the scratch disks were on another).

  • Mouse moves won't click on anything, can't get into computer

    My mouse moves aaround but will not click on anything.  Cannot get into the computer. Have tried taking battery out and then puttiing it back in.  Computer will start and go to desktop.

    My mouse moves aaround but will not click on anything.  Cannot get into the computer. Have tried taking battery out and then puttiing it back in.  Computer will start and go to desktop.

  • How to record mouse movements?

    Hello,
    I have the most updated version of Mac OS on my 2014 Macbook Air. Is there a program I can use to record my mouse strokes and clicks? I am doing a repetitive task and would like for the mouse to move on its own and make the same exact movements and clicks. Is this possible on automator and if so how? And if not, what free program is available which can achieve this?
    Thanks for the input!

    When Automator is started, it normally asks for the kind of document that you want to create. Select "work flow". Then near to the upper right corner of the automator window there will be a red button labeled "record". from that point on all the mouse movements and clicks will be stored in the workflow until you click on the stop recording button that shows on a special floating window that automator displays while your mouse actions are recorded.

Maybe you are looking for

  • Payment document cleared partially

    Hi Friends, When we are creating Invoice through VF01. Accounting document is generated. After clearing document the status of the document is states as Accounting document partiallly cleared. Appreciate your help. Regards, Srinivas Muthyala

  • Fields of Quality management table....

    Hi, I am unable to find the various fields in the QM related table. I have been given the Descriptions of the field and not the specific table where I can find the field. The fields are CT Priority,Quality Category,Present supplier,New supplier,Part

  • BI Reporting for BPM and TWB

    Hello Gurus, I am trying (in fact slogging) to get BI reports for BPM and TWB. 1. BI content activation DONE. 2. Scheduling Daily Extractor for TWB BI Reports DONE. (Log in SLG1 for object TWB_ST) shows '0 records transfered to data loader') this is

  • Fios Internet limited connectivity for vista

    I am so frustrated with verizon support, after they switched me from dsl to fios, I am not able tonconnect my desktop to Internet neither by wireless nor by Ethernet cable. Can someone please have some solutions I can try Solved! Go to Solution.

  • Oracle Array Update and sqlerrd[2] in PROC/C++ HELP!!!!!!!!!!!

    Coding an array update in Pro C/C++ in an Oracle 8.0.5 environment (don't ask...). Having trouble when errors occur in one of the updates... If I have an array of 5 updates, (EXEC SQL FOR 5...), with the first update on a non-existant row, I expect O