Mouse clicks, scrolling doesn't work in applications from start screen (let's call it "tile application")

Hello!
I need help.
2 days ago the mouse worked fine. Yesterday I noticed that the mouse scroll does not work in the "Book Bazaar Reader". Now I found that the right mouse button and left mouse button does not work in some applications, but scrolling work in these applications.
In mail application clicks work in some panels, scrolling doesn't work.
In desktop mode, the mouse works perfectly.
Please help!

Hi
Since at desktop mode everything fine, i suspected some application or 3rd party SW change your mouse setting
Go to run, msconfig, run as administrator, within the System Configuration dialogue box find startup tab, find KHALMNPR (if you using logitec mouse) and uncheck it
click ok and restart
or try to do clean boot to eliminate 3rd party SW issue

Similar Messages

  • JEditorPane - mouse click simulation doesn't work

    Hi all,
    I have a little problem with my JEditorPane. I want to implement the posibility to put signs on a document loaded in a jeditorpane and save them. One solution is to save the position of the scrollbar, but because the font size can be changed it will not be working. So I want to simulate a cmouse click on the first row of text from viewport to put there the caret and take after that his position. The problem is that the simulation for the mouse click donesn,t work. The event is simulated, but the caret position is not changing.
    I tried also using Robot class, but this implementation give me a serie a mouse events and it moves the cursor to the requested position and it's not the behaviour that I want.
    Here is my code:import java.awt.Color;
    import java.awt.Dimension;
    import java.awt.GridBagConstraints;
    import java.awt.GridBagLayout;
    import java.awt.Insets;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseListener;
    import javax.swing.JButton;
    import javax.swing.JEditorPane;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.text.BadLocationException;
    public class Reader {
         JEditorPane jEditorPane;
         JScrollPane editorScrollPane;
         private JFrame frame;
         private JPanel readerPane;
         private JPanel commandsPane;
          * @param args
         public static void main(String[] args) {
              new Reader();
         public Reader() {
              frame = new JFrame();
              createReader();
              createCommands();
              addPanes();
              frame.setSize(1000, 850);
              // frame.setExtendedState(frame.MAXIMIZED_BOTH);
              frame.setVisible(true);
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              loadHtml();
         private void addPanes() {
              GridBagLayout layout = new GridBagLayout();
              frame.setLayout(layout);
              GridBagConstraints c = new GridBagConstraints();
              c.fill = GridBagConstraints.BOTH;
              c.gridx = 1;
              c.gridy = 0;
              c.ipadx = 0;
              c.ipady = 0;
              c.weightx = 1;
              c.weighty = 2;
              frame.add(readerPane, c);
              c = new GridBagConstraints();
              c.fill = GridBagConstraints.HORIZONTAL;
              c.gridx = 1;
              c.gridy = 1;
              c.ipadx = 0;
              c.ipady = 10;
              c.weightx = 0;
              c.weighty = 0;
              c.gridwidth = 1;
              c.gridheight = 1;
              frame.add(commandsPane, c);
         private void createCommands() {
              commandsPane = new JPanel();
              commandsPane.setBackground(Color.white);
              JButton backButton = new JButton("PUSH");
              commandsPane.add(backButton);
              backButton.addMouseListener(new MouseListener() {
                   @Override
                   public void mouseClicked(MouseEvent e) {
                        // TODO Auto-generated method stub
                   @Override
                   public void mouseEntered(MouseEvent e) {
                        // TODO Auto-generated method stub
                   @Override
                   public void mouseExited(MouseEvent e) {
                        // TODO Auto-generated method stub
                   @Override
                   public void mousePressed(MouseEvent e) {
                        MouseEvent click = new MouseEvent(jEditorPane,
                                  MouseEvent.MOUSE_CLICKED, System.currentTimeMillis(),
                                  16, 10, 200, 1, false, 1);
                        MouseListener[] listeners = jEditorPane.getMouseListeners();
                        for (int i = 0; i < listeners.length; i++) {
                             listeners.mouseClicked(click);
                   @Override
                   public void mouseReleased(MouseEvent e) {
                        // TODO Auto-generated method stub
         private void createReader() {
              jEditorPane = new JEditorPane();
              jEditorPane.setEditable(false);
              jEditorPane.setSelectionColor(Color.green);
              jEditorPane.addMouseListener(new MouseListener(){
                   @Override
                   public void mouseClicked(MouseEvent e) {
                        System.out.println("clicked");
                        System.out.println("caret pos = "
                                  + jEditorPane.getCaretPosition());
                   @Override
                   public void mouseEntered(MouseEvent e) {
                        // TODO Auto-generated method stub
                   @Override
                   public void mouseExited(MouseEvent e) {
                        // TODO Auto-generated method stub
                   @Override
                   public void mousePressed(MouseEvent e) {
                        // TODO Auto-generated method stub
                   @Override
                   public void mouseReleased(MouseEvent e) {
                        // TODO Auto-generated method stub
              editorScrollPane = new JScrollPane(jEditorPane);
              editorScrollPane.setBorder(null);
              editorScrollPane.getVerticalScrollBar().setPreferredSize(
                        new Dimension(0, 0));
              readerPane = new JPanel();
              readerPane.setBackground(Color.black);
              readerPane.setLayout(new GridBagLayout());
              JPanel spacePane = new JPanel();
              spacePane.setBackground(Color.white);
              GridBagConstraints c = new GridBagConstraints();
              c = new GridBagConstraints();
              c.fill = GridBagConstraints.NONE;
              c.ipadx = 500;
              c.ipady = 650;
              c.weighty = 1;
              c.weightx = 1;
              c.gridx = 1;
              c.gridy = 1;
              c.gridwidth = 1;
              c.gridheight = 1;
              readerPane.add(spacePane, c);
              spacePane.setLayout(new GridBagLayout());
              c = new GridBagConstraints();
              c.fill = GridBagConstraints.BOTH;
              c.weighty = 1;
              c.weightx = 1;
              c.gridx = 0;
              c.gridy = 0;
              c.gridwidth = 1;
              c.gridheight = 1;
              c.insets = new Insets(20, 20, 20, 20);
              spacePane.add(editorScrollPane, c);
         private void loadHtml() {
              System.out.println("load html file");
              jEditorPane.setContentType("text/html");
              jEditorPane.setText("<html><body>" +
                        "<p>some text here for testing some text here for testing some text here for testing some text here for testing " +
                        "some text here for testing some text here for testing some text here for testing some text here for testing " +
                        "some text here for testing some text here for testing some text here for testing some text here for testing " +
                        "some text here for testing some text here for testing some text here for testing some text here for testing " +
                        "some text here for testing some text here for testing some text here for testing some text here for testing </p>" +
                        "</body></html>");
              jEditorPane.revalidate();
    If tou run this code you can observe that when the "PUSH" button is pressed the jeditorpane receives a mouseclick event, but the caret position is not changing.
    Strange is that when you click with the mouse over the editor pane the caret position is changed and I don't understand what is wrong.
    Can you help me please?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    You can use viewToModel() method to get caret position for x, y location. No need to click.
    Regards,
    Stas

  • Mouse misdetected, scroll doesn't work

    In the past couple of weeks, I've lost the ability to scroll with the mouse wheel (not a hardware fault - it's happening with more than one mouse). I'm running Gnome 3.12.
    Most apps (including mouse settings in Gnome) don't have any scrolling at all. In Chromium, scrolling produces a response, but the page always scrolls upwards regardless of the direction the mouse wheel is turned.
    Here's some system information, let me know if anything else would be useful:
    $ uname -a
    Linux arch-desktop 3.15.1-1-ARCH #1 SMP PREEMPT Tue Jun 17 09:32:20 CEST 2014 x86_64 GNU/Linux
    $ egrep "Name|Handlers" /proc/bus/input/devices
    N: Name="Logitech USB Optical Mouse"
    H: Handlers=event1 mouse0
    The mouse is a bog-standard Logitech two-button-plus-scroll-wheel USB mouse.
    Last edited by john_h (2014-07-01 21:06:44)

    I've renamed this thread as further investigation has helped narrow down the problem. It looks like the mouse is being misdetected:
    $ egrep "Name|Handlers" /proc/bus/input/devices
    N: Name="Logitech USB Optical Mouse"
    H: Handlers=event1 mouse0
    $ cat /var/log/Xorg.0.log | grep mouse
    [ 13.836] (==) RADEON(0): Silken mouse enabled
    [ 14.170] (--) evdev: Primax USB OPTICAL MOUSE: Found 9 mouse buttons
    [ 14.170] (II) evdev: Primax USB OPTICAL MOUSE: Configuring as mouse
    [ 14.172] (II) config/udev: Adding input device Primax USB OPTICAL MOUSE (/dev/input/mouse0)
    On our laptop (also running Arch), the mouse works and Xorg.0.log contains the following:
    $ cat /var/log/Xorg.0.log | grep mouse
    [ 19.661] (==) intel(0): Silken mouse enabled
    [ 22.059] (--) evdev: Logitech USB Optical Mouse: Found 12 mouse buttons
    [ 22.059] (II) evdev: Logitech USB Optical Mouse: Configuring as mouse
    [ 22.060] (II) config/udev: Adding input device Logitech USB Optical Mouse (/dev/input/mouse0)
    The Xorg setup is just the default setup as configured, including the following entry within /etc/X11/xorg.conf.d/10-evdev.conf:
    Section "InputClass"
    Identifier "evdev pointer catchall"
    MatchIsPointer "on"
    MatchDevicePath "/dev/input/event*"
    Driver "evdev"
    Option "HorizScrollDelta" "0"
    Option "VertScrollDelta" "0"
    EndSection
    I'm assuming a recent update has messed about with the Radeon driver or some other aspect of my setup, as the mouse used to work.
    Any ideas on how to reconfigure Xorg so that the mouse is detected/configured correctly? I tried adapting the instructions here, but then X didn't start at all.

  • When resuming from standby mouse-click/keyboard doesn't work.

    When resuming from standby about 80% of the time the mouse on my Macbook Pro (Early 2011) stops working. I think it is a software issue. It appears that the mouse will do a click or click and drag but will not let go when removing my fingers. The issue only happens within 5seconds of waking up. The issue is only fixed with a hard reboot. I can bring up the shutdown menu, but am unable to slect shut down as the mouse/keyboard won't give input. This issue was present in Lion and was gone for the first few months of Mavericks but appeared again this week.
    I can freely move around the mouse cursor and enter expose with three fingers but cannot select anything.
    Any help would be appreciated.
    Thanks.

    You can use viewToModel() method to get caret position for x, y location. No need to click.
    Regards,
    Stas

  • Horizontal scroll doesn't work.

    I have recently updated to the Firefox 5. After update my A4Tech X6 mouse horizontal scroll doesn't work in Firefox, but at the same time it works fine in other applications. I had no such problems with scrolling in Firefox 3.6.*. Please help me.

    sticksen,
    I'm glad that it is user specific. Now I only know of one file you are going to need to remove to fix this problem, but keep in mind some basic setting in other programs are going to be rest by the removal of this file, you will just have to change them back when you run across them. Example in My Mail program I had to turn of the show thread feature again.
    Ok here is what you have to due in order to delete the file. First off close all running programs including (System Preferences) but excluding (Safari). you will be perfectly fine having it running. The file is a hidden file so you need to show the hidden files on your computer to do so open (Terminal) and type in exactly as follows:
    defaults write com.apple.finder AppleShowAllFiles TRUE
    Hit return and then follow it by typing:
    killall Finder
    Hit return finder will reset and all you hidden files with show, after which Open finder and go into (Your User Name)/(Library)/(Preferences) and find the file named (.GlobalPreferenes.plist) and Delete it. Don't do anything after you delete this file just log out. Now log back in open Terminal and type exactly as follows:
    defaults write com.apple.finder AppleShowAllFiles FALSE
    killall Finder
    Now test to see if you can scroll horizontally. And just for your comfort I did this myself after disabling the Horizontal scroll and it toggles it back on. (I have a white macbook not the new unibody macbook).
    Do note that Mac keeps all settings files in (.plist)s and by removing them in your user folder will not harm your computer or the stability of your mac. These files are there just to hold settings files so that your experience can be the most pleasing for you.
    Hope that helps.

  • ITunes 10.4.1.10 how to stop downloads of free news pods?  (right click delete doesn't work) also can't scroll down list of downloads!

    (ITunes 10.4.1.10) How to stop downloads of free news pods?  (right click delete doesn't work)
    Also can't scroll down list of downloads so as to pause them.  Would like to delete them as ISP has download limit.
    Thanks in advance!  (this seems to be a dumb problem of the software having a life of its own!)

    I have been talking to Apple support about this very problem. So far they have asked me to disable both Firewall and Anti Virus software (Windows Firewall and ESAT NOD32 anti virus) - this didn't work. Rebuild my library - this didn't work. Un-install all Apple applications and re-install - this didn't work. I have created a second user account on my PC and from that account (both accounts set as Administrator) I can activate Genius. This suggests to me that the problem is possibly linked to my original User Account, which is the one I always use. I am waiting for the next update from Apple and will post an update if/when the problem is resolved.
    What I also notice is about 2 seconds in to Step 2 of the Genius activation, the progress diagonal lines bar stops, and then starts again. As soon as I see this short freeze I know that the activation will fail.

  • Scrolling doesn't work in Triggers tab

    Version 1.2.1 32.13
    Click on a Table in LHS tree (table must have 1+ triggers)
    Choose Triggers tab
    Adjust the height of the lower pane such that scroll bars exist
    Try scrolling either with arrow keys or scroll wheel of mouse
    Scrolling (using mouse or keyboard) doesn't work for me. Can anyone else reproduce this?
    Note that I can scroll using the scroll bar.
    Steve

    Yes, there are various areas affected by this bug (also inside the other tabs from the table);
    What happens is they create a set of scrollbars inside another set (which is really a pane inside a pane, I suppose). Sometimes this creates really weird situations, where you have to scroll both sets to be able to get to the bottom for example.
    Can anyone from the team verify this is still bugged?
    Thanks,
    K.

  • My iPod photo's click wheel doesn't work.

    My iPod photo's click wheel doesn't work? I can click it but cannot scroll with it...
    Any suggestions?

    That is a hardware issue.  Take the iPod Nano to an Apple store or an AASP.  Whichever is more convenient for you.  If you want to DIY - iPod Repair Tutorials

  • Horizontal scrolling doesn't work with ItemsStackPanel in ListView(GridView)

    Hi,
    In Win 8.1 App Store Project I have a ListView with fixed width and listen for ContainerContentChanging event because of performance issues.
    When ListView width is less than content width, horizontal scrolling doesn't work. If we change ItemsStackPanel to VirtualizingStackPanel, horizontal scrolling works fine. But ContainerContentChanging doesn't work with VirtualizingStackPanel.
    Is it possible to make horizontal scrolling work with ItemsStackPanel?
    Here simple example to reproduce this problem:
    <Page
    x:Class="App8.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:App8"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d">
    <Page.Resources>
    <DataTemplate x:Key="ContinuousViewItemTemplate">
    <Border Width="800"
    Background="Green"
    Margin="10"
    Padding="5">
    <Border x:Name="root" Height="800" Background="{Binding}"/>
    </Border>
    </DataTemplate>
    <Style x:Key="ListViewStyle1" TargetType="ListView">
    <Setter Property="ScrollViewer.HorizontalScrollBarVisibility" Value="Visible"/>
    <Setter Property="ScrollViewer.HorizontalScrollMode" Value="Enabled"/>
    <Setter Property="ItemTemplate" Value="{StaticResource ContinuousViewItemTemplate}"/>
    </Style>
    </Page.Resources>
    <Grid>
    <Grid.ColumnDefinitions>
    <ColumnDefinition Width="100"/>
    <ColumnDefinition Width="500"/>
    <ColumnDefinition/>
    <ColumnDefinition Width="500"/>
    <ColumnDefinition Width="100"/>
    </Grid.ColumnDefinitions>
    <ListView Style="{StaticResource ListViewStyle1}" Grid.Column="1">
    <SolidColorBrush Color="Red"/>
    <SolidColorBrush Color="Cyan"/>
    </ListView>
    <ListView Style="{StaticResource ListViewStyle1}" Grid.Column="3">
    <ListView.ItemsPanel>
    <ItemsPanelTemplate>
    <VirtualizingStackPanel/>
    </ItemsPanelTemplate>
    </ListView.ItemsPanel>
    <SolidColorBrush Color="Red"/>
    <SolidColorBrush Color="Cyan"/>
    </ListView>
    </Grid>
    </Page>

    Hi Mikhail Maksyuta,
    Welcome back!
    Yes, you are right! I have reproduced it on VS 2013 professional.
    I will report it as bug, Thanks for your valuable suggestions!
    If you have any other questions about this, please feel free let me know!
    Thanks again!
    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.

  • The touchpad scroll doesn't work in visual studio?

    Hello,
    As I mentioned in the title, the touchpad scroll doesn't work or affect visual studio community. The scrolling works very well with other software but it doesn't with visual studio community. This same button worked with VS 2010, VS 2012 (It stopped sometimes
    but still functioning correctly most of the time), and stopped with 2013 versions. Why? 
    Take a look at the video to see the problem in action: http://youtu.be/Qt20pM6ZQAo
    Thank you for your comments!

    Scroll button on what? Are you using a mouse with a scroll wheel, or is this a laptop touch pad?
    If the latter, please read here:
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/295553a2-80c0-4608-8b57-32c0422de3d4/visual-studio-2013-community-touchpad-scroll-doesnt-work?forum=visualstudiogeneral

  • The answer helped me.But still, what are the settings that I have to change for the behavior of the mouse pointer towards finder? Also the mouse pointer sometimes  doesn't accept my command and start clicking itself.what is the problem and how to fix it?

    The answer helped me.But still, what are the settings that I have to change for the behavior of the mouse pointer towards finder? Also the mouse pointer sometimes  doesn't accept my command and start clicking itself.what is the problem and how to fix it?

    If the mouse clicks something on its own then it looks like you have a hardware problem with the trackpad or possibly the battery that is right underneath the trackpad.
    I have read that the battery can swell and that would put pressure on the trackpad.

  • I just download mountain lion to my mac,  now microsoft office suite doesn't work....it says 'you can't open the application 'microsoft word' because PowerPC applications are no longer supported.  What does this mean and what do I have to do to fix it??

    I just download mountain lion to my mac,  now microsoft office suite doesn't work....it says 'you can't open the application 'microsoft word' because PowerPC applications are no longer supported.  What does this mean and what do I have to do to fix it?? HELP!!

    Install Snow Leopard on another boot partition, or upgrade Microsoft Office to a newer version, or use any number of better alternatives. Some of them are free.
    Consider
    LibreOffice (donation-supported)
    NeoOffice ($10)
    OpenOffice (completely free)
    In addition to the above I also recommend Apple's Pages ($19.99). I use OpenOffice and Pages and have been completely Microsoft - free for over a year now. Life is better without Microsoft.

  • I get this message when I try to open my google shared docs this week: "A browser error has occurred. Please hold the Shift key and click the Refresh button to try again." - but that click/refresh doesn't work either. What's up?

    # Question
    I get this message when I try to open my google shared docs this week: "A browser error has occurred. Please hold the Shift key and click the Refresh button to try again." - but that click/refresh doesn't work either. What's up?

    The backend end is in serious pain....on many levels.
    Try this: Connection Problems Form

  • My ipod scroll doesn't work at all. how do i fix it? do i have to send it in? how much would that cost?

    My ipod nano 4th gen. scroll doesn't work at all. how do i fix it? do i have to send it in? and how much would it cost?

    So it connected wirelessly at the Apple store where you took it for service? What kind of wireless router are you using and have you updated the firmware for it?

  • T410, Scrolling doesn't work at all

    Brand new (less than 2 months old) T410, like I said scrolling doesn't work. I have messed around with the ultranav utility, updated the latest trackpoint drivers, etc, scrolling actually works in the ultranav util "test scroll" but nowhere else. this is trackpad and trackpoint scrolling , in every combination of settings. Any ideas?

    hey sez,
    could you uninstall the Ultranav software and then reinstall it again ?
    If doing this does not resolve it, then I suggest calling Tech support via the number listed in the link below
    http://www.lenovo.com/contact/us/en/
    WW Social Media
    Important Note: If you need help, post your question in the forum, and include your system type, model number and OS. Do not post your serial number.
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"!
    Follow @LenovoForums on Twitter!
    Have you checked out the Community Knowledgebase yet?!
    How to send a private message? --> Check out this article.

Maybe you are looking for

  • Photoshop CS5 still chooses wrong monitor profile in dual monitor case?

    The folk lore has it that if you go to EDIT/COLOR SETTINGS and open the Working Spaces RGB drop down, then what it says near the top on the "Monitor RGB" line is the monitor profile that photoshop is actually using. If that is true, then I would expe

  • Nokia C3 chat - not receiving replies

    I just got a new nokia c3, the vendor activated the update menu service. I was able to use the chat service, logged in to my YM account and see almost the same layout of YM in PC. im using smart communications as my operator, and the network provides

  • Error: When importing a Webserive using AWS Model

    Hi Experts, The webservice is created in .NET and i am able to test the same. When i try to import the same into Webdynpro, i am getting the following error. Even i tried to import the webservice after saving it locally also, i am getting the followi

  • Oracle VM server RAM question

    I am running two vm servers both with 16GB of physical memory installed. When I go in to check the memory specs for the servers using "free -m" or "cat /proc/meminfo" it only show a total of 577MB of RAM. Now I know this can not be true because curre

  • Problem selecting ant target when too many targets

    JDev 9.0.3. We have an Ant buildfile with 49 targets, of which about 8 or so are "top-level" targets (all the others are internal targets). When I right-click on build.xml and bring up the "Build Target" menu, the entire target list is brought up in