Why my pdf is hanged to my mouse

Good evening,
I have trange issue, Two colleague told me, some time when they move a pdf to an adob application (to open it), the pdf stay hanged to the mouse.
It does not open but follow the mouse. It's trange. It does not happen all the time and I am not each day to her office, si I could not see the problem. But they reported it to me several time.
I have no idea why it happen. Did you have an experience with this?
Any idea would be helpfull
They are working o iMac 10.8
Cheers

It sounds like they somehow accidentally activated some feature of the Accessibility  (Universal Access) System Preference. Have them open the Accessibilty System Preferences and check the Mouse & Trackpad section to see if Mouse Keys is checked, or Switch Control, or Keyboard's Sticky Keys or Slow Keys.

Similar Messages

  • The download selected responses as PDF is hanging and not responding

    The download selected responses as PDF is hanging and not responding on certain machines. Any suggestions?  I've tried from 4 different machines and only 1 works.  I can't find the common dinominator though as to why the other 3 wont.  It just hangs and never builds the form for download.  I need to be able to download it from any of my desks though, so need to find a solution and not sure even where to start looking.

    We do support IE 7/8/9 and 10, this should be working in all...
    Are the computers all on the same network?
    On the machines where you cannot save the response as PDF can you "save/export" anything else?  Can you try, from the File menu "Export Responses" and see if you can export an Excel file of the responses?  Can you try an alternative web browser (Firefox or Chrome) on the machine/s that are not working?
    When it does not work you are seeing a progress bar that never completes?  When you cancel that and try again you have the same result?
    Thanks,
    Josh

  • Why does PDF Optimizer no longer reduce size after CS4 upgrade?

    I've been able to successfully reduce the size of the PDFs created from my Illustrator files for years using Advanced> PDF Optimizer in Acrobat Pro. Upgraded to CS4 last week. Now it seems to have reduced everything, but the files are still huge. When I check Space Audit 96% or more is taken up by "piece information".
    I've tried changing the Adobe PDF presets, the Document Raster Effects settings, and outlining all text in Illustrator to see if that made a difference. Nothing. The frustrating thing is i've done this for years with no problem. HELP?!?!

    From: Riannosda <[email protected]>
    Reply-To: <[email protected]>
    Date: Wed, 22 Jul 2009 07:06:34 -0600
    To: Pamela Myhre <[email protected]>
    Subject: Why does PDF Optimizer no longer reduce size
    after CS4 upgrade?
    Hi, I've found the solution because today it happened to me as well.
    Just go to "PDF Optimizer", then click to "Discard user data" and finally to
    "Discard private data from other applications": in this way you delete any
    information left by Illustrator and your file's size will get reduced.
    It works.
    Good luckThanks so much! That works like a charm!!
    Pamela

  • Why are pdf files opened automatically in iPad email. I need to save the pdf file itself.

    Why are pdf files opened automatically in iPad email?  I need to save the pdf file itself, so I can re-read them for later.  ANy fix.  Some pdf files I send are saved as pdf files unopened.

    I have no idea how an iPad works.
    [topic moved to iOS subforum]

  • Why is my applet hanging?

    Can anyone give me some insight as to why my applet is hanging? I just get the grey rectangle and no output in the java plugin console as to any kind of errors. I think it may have to do with hte ContentPane in both the main() and init() but I am not sure. I have been struggling with this problem for a couple of days now and I am not sure how to resolve it. Thanks in advance
    import java.awt.*;
    import java.lang.*;
    import java.io.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.filechooser.*;
    import javax.swing.event.*;
    import javax.swing.border.*;
    import java.awt.image.*;
    import javax.swing.text.*;
    import com.tpg.base.MileMessages;
    public class BlackBoxUIApplet extends JApplet implements ActionListener{
         public static int WIDTH = 800;
         public static int HEIGHT = 450;
         private boolean inAnApplet = true;
         //public static String TITLE = "Turnpike BlackBoxUI";
         //public static String input;
         Container frameContainer;
         JPanel[] panels = new JPanel[4];
         JMenuBar menuBar = new JMenuBar();
         JMenu fileMenu = new JMenu("File");
         JMenuItem fileExit = new JMenuItem("Exit");
         //Icon openIcon = new ImageIcon("C:\\Dave\\Java Swing\\open.gif");
         JLabel statusLabel = new JLabel();
         //Icon statusIcon = new ImageIcon("flashing_red_button.gif");
         JButton pushButton1 = new JButton("Process File");
         JButton pushButton2 = new JButton("Process Folder");
         JButton pushButton3 = new JButton("One More Button");
         JButton openButton = new JButton("Open a File");
         //JLabel pbLabel = new JLabel("Processing.....");
         JTextArea textArea = new JTextArea(30,90); //rows,cols
         JScrollPane areaScrollPane = new JScrollPane(textArea);          
         JTextField inputFile = new JTextField(32);
         JTextField status = new JTextField(20);
         JTextField status1 = new JTextField(20);
         //JProgressBar pb = new JProgressBar();
         PipedInputStream piOut;
    PipedOutputStream poOut;
         String inputValue;
         MileMessages messages;
         //pb.setIndeterminate(true);
         //to avoid message about system event access
         public BlackBoxUIApplet() throws IOException
              this(true);
         //public BlackBoxUIApplet(boolean inAnApplet)
         public BlackBoxUIApplet(boolean inAnApplet) throws IOException
         //super(TITLE);
         //input = inputValue;
         this.inAnApplet = inAnApplet;
              if(inAnApplet)
                   getRootPane().putClientProperty("defeatSystemEventQueueCheck",
                                                                                              Boolean.TRUE);
                   // Set up System.out
    piOut = new PipedInputStream();
    poOut = new PipedOutputStream(piOut);
                        messages = new MileMessages();
    System.setOut(new PrintStream(poOut, true));
                        // Create reader threads
    new ReaderThread(piOut).start();
         public void init()
         setContentPane(buildGUI());
         //addWindowListener(new WindowHandler());
         fileExit.addActionListener(new MenuItemHandler());
         pushButton1.addActionListener(this);
         pushButton2.addActionListener(this);
         pushButton3.addActionListener(this);
         openButton.addActionListener(this);
         //setupEventHandlers();
         setSize(WIDTH, HEIGHT);
         setBackground(Color.darkGray);
         inputValue = JOptionPane.showInputDialog("Please input your ctxURL: (eg. //localhost:8080/main/InboundXMLServlet)");
         messages.runMilesMessages(inputValue);
         //show();
         public void actionPerformed(ActionEvent e)
              String cmd = e.getActionCommand();
              System.out.println("Command is: " + cmd);
              if(cmd.equals("Process File"))
                   textArea.append("I am processing!" + "\n");
                   System.out.println("ctxURL is: " + inputValue);
                   //status.setText("Currently processing " + inputValue + "....");
              else if(cmd.equals("Open a File"))
                        //final JFileChooser fc = new JFileChooser(new File(System.getProperty("user.dir"))); //goes up two levels from invoking directory
                        //final JFileChooser fc = new JFileChooser("../.."); //goes up two levels from invoking directory
                        final JFileChooser fc = new JFileChooser("../..");
                        fc.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
                        int returnVal = fc.showOpenDialog(this);
                        if (returnVal == JFileChooser.APPROVE_OPTION)
                             File file = fc.getSelectedFile();
                             inputFile.setText(file.getPath());
              else if(cmd.equals("Process Folder"))
              else if(cmd.equals("One More Button"))
         public Container buildGUI()
              setupMenuBar();
              Container tempContainer = layoutComponents();
              return (tempContainer);
         void setupMenuBar()
              fileMenu.add(fileExit);
              menuBar.add(fileMenu);
              setJMenuBar(menuBar);
         public Container layoutComponents()
              for(int i=0; i<panels.length;++i)
                   panels[i] = new JPanel();
                   panels[0].setBorder(new TitledBorder("Push Buttons"));
                   //panels[0].setBorder(BorderFactory.createEtchedBorder());
                   panels[0].setLayout(new FlowLayout(1, 10, 90)); //center with horz gap of 10 and vert gap of 60
                   //panels[0].setLayout(new BorderLayout());
                   //panels[0].setLayout(new GridLayout(3,1));
                   //use setPreferredSize(Dimension) to change size of each panel
                   //panels[0].setAlignmentX((float) 20);
                   pushButton1.setMargin(new Insets(5,10,5,10));
                   pushButton1.setVerticalTextPosition(AbstractButton.CENTER);
                   pushButton1.setHorizontalTextPosition(AbstractButton.LEFT);
                   pushButton1.setToolTipText("Process a File");
                   pushButton2.setMargin(new Insets(5,10,5,10));
                   pushButton2.setVerticalTextPosition(AbstractButton.CENTER);
                   pushButton2.setHorizontalTextPosition(AbstractButton.LEFT);
                   pushButton2.setToolTipText("Process a Folder");
                   pushButton3.setMargin(new Insets(5,10,5,10));
                   pushButton3.setVerticalTextPosition(AbstractButton.CENTER);
                   pushButton3.setHorizontalTextPosition(AbstractButton.LEFT);
                   pushButton3.setToolTipText("Tip3");
                   //panels[0].add(Box.createVerticalStrut(2));
                   panels[0].add(pushButton1);
                   //panels[0].add(pushButton1, BorderLayout.NORTH);
                   //panels[0].add(Box.createVerticalStrut(2));
                   panels[0].add(pushButton2);
                   //panels[0].add(pushButton2, BorderLayout.CENTER);
                   //panels[0].add(Box.createVerticalStrut(2));
                   panels[0].add(pushButton3);
                   //panels[0].add(pushButton3, BorderLayout.SOUTH);
                   panels[1].setBorder(new TitledBorder("Status"));
                   panels[1].setLayout(new FlowLayout(1,10,60));
                   //panels[1].setBorder(BorderFactory.createEtchedBorder());
                   //panels[1].setLayout(new GridLayout(2,1));
                   status.setEditable(false);
                   status1.setEditable(false);
                   //statusLabel.setIcon(statusIcon);
                   panels[1].add(statusLabel);
                   status.setText("Server is OK.");
                   status1.setText("File is OK.");
                   panels[1].add(status);
                   panels[1].add(status1);
                   //panels[1].add(pbLabel);
                   //pb.setIndeterminate(true);
                   //panels[1].add(pb);
                   //pb.setValue(0);
                   //pb.setStringPainted(true);
                   panels[2].setBorder(new TitledBorder("File Input"));
                   //panels[2].setBorder(BorderFactory.createEtchedBorder());
                   //panels[2].setLayout(new BoxLayout(panels[2], BoxLayout.X_AXIS));
                   panels[2].setLayout(new FlowLayout(1,50,20));
                   //panels[2].setLayout(new GridLayout(1,2));
                   //panels[2].add(Box.createHorizontalStrut(5));
                   panels[2].add(inputFile);
                   //panels[2].add(Box.createVerticalStrut(5));
                   panels[2].add(openButton);
                   //panels[2].add(Box.createHorizontalStrut(15));
                   panels[3].setBorder(new TitledBorder("Output"));
                   //panels[3].setBorder(BorderFactory.createEtchedBorder());
                   panels[3].setLayout(new GridLayout(1,1));
                   textArea.setFont(new Font("Serif", Font.PLAIN, 16));
                   textArea.setMargin(new Insets(5,5,5,5));
                   textArea.setLineWrap(true);
                   textArea.setWrapStyleWord(true);
                   textArea.setEditable(false);
                   areaScrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
                   areaScrollPane.setPreferredSize(new Dimension(50, 50));
                   panels[3].add(areaScrollPane);
                   frameContainer = getContentPane();
                   frameContainer.setLayout(new GridLayout(2,2));
                   //frameContainer.setLayout(new FlowLayout());
                   for(int i=0;i<panels.length;++i)
                        frameContainer.add(panels);
                        //frameContainer.add(Box.createHorizontalStrut(5));
                   return (frameContainer);
         //void setupEventHandlers()
              //addWindowListener(new WindowHandler());
              //fileExit.addActionListener(new MenuItemHandler());
              //pushButton1.addActionListener(new ButtonHandler());
              //pushButton2.addActionListener(new ButtonHandler());
              //pushButton3.addActionListener(new ButtonHandler());
              //openButton.addActionListener(new OpenHandler());
              //inputFile.setActionCommand(textFieldString);
              //inputFile.addActionListener(new TextHandler());
              //cmdField.addAncestorActionListener(new TextAreaHandler());
              //status.addAncestorActionListener(new TextAreaHandler());
         public static void main(String[] args)
              JFrame frame = new JFrame();
              frame.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
    System.exit(0);
              try
                   BlackBoxUIApplet app = new BlackBoxUIApplet(true);
              frame.setContentPane(app.buildGUI());
              frame.pack();
              frame.setVisible(true);
              catch (IOException e)
         public class MenuItemHandler implements ActionListener
              public void actionPerformed(ActionEvent e)
                   String cmd = e.getActionCommand();
                   if(cmd.equals("Exit")) System.exit(0);
         class ReaderThread extends Thread {
    PipedInputStream pi;
    ReaderThread(PipedInputStream pi) {
    this.pi = pi;
    public void run() {
    final byte[] buf = new byte[1024];
    try {
    while (true) {
    final int len = pi.read(buf);
    if (len == -1) {
    break;
    SwingUtilities.invokeLater(new Runnable() {
    public void run() {
    textArea.append(new String(buf, 0, len));
    // Make sure the last line is always visible
    textArea.setCaretPosition(textArea.getDocument().getLength());
    // Keep the text area down to a certain character size
    int idealSize = 100000;
    int maxExcess = 500;
    int excess = textArea.getDocument().getLength() - idealSize;
    if (excess >= maxExcess) {
    textArea.replaceRange("", 0, excess);
    } catch (IOException e) {

    I think I figured out why the applet is hanging. It is right after I call messages.MileMessage(inputValue). That method search the drive for a certain file type. the only problem is that I want to repaint the applet after that method is called and I don't understand how the method is called before I input hte "inputValue" variable! Is there any way to stall the method call until after everything is painted and the inputValue is entered? Sorry, but you hve to look to the previous post for the code.
    -Dave

  • Why some PDF docs displayed are garbled and others are not?

    I've had this love hate relationship with adobe for the past few days.  I'm so frustrated since I can't seem to figure why other pdf docs display information correctly while others are garbled. It looks as if the letters/text overlap.  I 'm loosing sleep over this.  I'm at my wits end. Can someone please help? I appreciate any assistance you can provide.
    Thanks,
    C

    Hi Allegria11,
    Don't lose sleep over Adobe! Let's see what we can figure out. But I have lots of questions to get us started:
    Are you creating the PDFs yourself, or viewing PDFs from different sources?
    What are you using to view the PDFs (Reader, Acrobat, and what versions)?
    Do these PDFs all use the same fonts, or different ones?
    Do you know whether the fonts are embedded/subsetted in the PDFs? (You can check by choosing File > Properties and clicking the Fonts tab.
    Let's start there, and we will dig deeper if none of these shed any light on the problem.
    Best,
    Sara

  • Why does my login screen when scrolling mouse over appear pixalated (has small squares wherver the mouse scrolls until the entire page has been scratched like a lotto ticket:) ?

    Why does my login screen when scrolling mouse over appear pixalated (has small squares wherver the mouse scrolls until the entire page has been scratched like a lotto ticket:) ?

    OS X Lion: Login window partially appears, cursor movement redraws screen

  • PDF Viewer Hangs

    Using Live Cycle and user completes the process of creating a PDF form, wants to preview and PDF Viewer "hangs"
    Any ideas?
    -jP

    I had Adobe Acrobat ver. 5 which I was unable to uninstall due to some corrupt files.
    Then I tried to install Adobe Acrobat Professional ver 8 . It popped up an error message that You already have a version of adobe which is to be removed. Hence I formatted my C: drive and then successfully installed Adobe Professional Ver 8 . It was a trial version for 30 days.
    But when I tried opening Adobe Live Cycle which comes with it, a message popped up saying that Grace Period is over . Please download e-license. My friends who earlier had installed Adobe Professional from the CD are not getting any messages .
    Any Ideas to solve the problem.
    P

  • Why cant pdf portfolios be converted

    why cant pdf portfolios be converted?

    They can be, but it's a bit of a work-around, you must have Acrobat Pro:
    Portfoilio to pdf:
    Open Portfolio
    Beside the layout button there is a Files button - Click Files Button
    Go to EDIT>SELECT ALL
    Control Right click - Extract from Portfolio
    Save files in a new folder.
    FILE>CREATE>COMBINE FILES INTO A SINGLE PDF

  • Why are PDFs blurry on my ipad 2.  I am using PDF expert.

    Why are PDFs blurry on my ipad 2.  I am using PDF expert.

    As it turned out, no adobe reader installed.  Now that it has been installed, the PDFs are crystal clear!  Thanks!!

  • Why do I have to click the mouse so hard?

    Why do I have to click the mouse so hard? Whether I'm using a Bluetooth or a wired mouse, I find I have to click really hard to make it work when selecting text (in any application). This is not good for my wrist. Is anyone else experiencing this?

    two types: an old and excellent Apple wired mouse (not mighty) and a Bluetooth mouse (not mighty).

  • Why does PDF file size increase each time I "save" tagging tasks?

    Why does PDF file size increase each time I "save" tagging tasks?
    Given:
    1) I'm running Acrobat Pro 11.0.07 (this is most current version)
    2) My file size starts at 750mb and ends up 15mb when finished tagging.
    3) Only certain documents experience this increase, i.e., no visible pattern of document characteristics
    4) PDF's are not full of images...in fact, mostly <H1> <H2> <H3> <P> <Figure> alt text, ect.
    5) Occurs with text PDF's and/or fillable forms (again, does not happen to all documents...only some)
    6) File increase occurs incrementally as tagging tasks are performed; i.e., each new save increases file size a few megabytes.
    7) Occurs whether I "save" or "save as"
    8) Difficult to optimize these files without corruption
    9) I'm running Mac OS 10.9.4 (this is most current version)

    Thank you so much for responding! I've been experimenting with the SAVE AS vs. SAVE for the past few days...and you are correct. It's funny because I've been tagging files for 2 years and never noticed this. Probably b/c I use both methods depending on the tagging tasks...some are more complicated than others and should not be overwritten. In those cases I SAVE AS new file.
    I love this forum...thank you again!

  • PDF Maker hangs

    Hi All,
    I have been experiencing an ongoing problem with Adobe Acrobat Standard 8 every since I originally installed the program. The problem is that PDF Maker hangs when I try to create a PDF file from Word.
    This only occurs when I am signed-in as “John” (with Administrator rights) on my Laptop. It doesn’t occur when I’m signed-in as the built-in Administrator, although an error dialog appears and then disappears in Windows 8 when I create a PDF.
    Details of exactly what I am running are as follows:
    - HP Pavilion DV-7 Laptop (originally with Windows Vista).
    - Windows 8 (64-bit).
    - Adobe Acrobat Standard 8.
    - Microsoft Word 2003.
    I have worked around this in the past by signing-in as the Administrator, but can no longer do this as Windows 8 will not open most Apps as the built-in Administrator.
    I was planning to upgrade to the current version of Acrobat, but am hesitant to do so until I can resolve this issue.
    Any help or advice on a solution would be greatly appreciated.
    Regards,
    John.

    Bill,
    Thanks for the response.
    I have AA8 ver8.0.0 installed at present. I have recently re-installed it after upgrading to Windows 8.
    I will look into updating to 8.1 or later – although the release note don’t mention this issue.
    Regards,
    John.

  • Why will PDF not open from email?

    I recently modified my Adobe Reader 9.1 (with instructions from the bank) to be able to electronically sign documents.
    Since then I can not open any PDF documents from email.  I went back and reversed the changes I made. I uninstalled Adobe and reinstalled it. No luck.
    I have to save the documents and open them from Windows Explorer.
    Any Ideas?

    A fast workaround for PDF problem (See my original post)
    In Firefox:
    Open Tools > Options > Under Main tab click Save files to > click Browse
    Scroll up or down to find where you want it to go (I put mine under Documents because it's the easiest to find).
    Click New folder and label it something you will quickly recognize.
    Now when you click on a PDF attachment it will automatically be sent to that file and you can double click or open
    it in Adobe Reader
               ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    (Note) If I use Internet Explorer (I have not used IE in years) I can open PDF's from Hotmail with out a problem.
    I like Firefox better so I will continue to use the quick workaround until somebody finds a fix.
    If you use IE, here are the instructions for saving PDF files.
    Click
    to open Windows Mail.
    Open a message that contains an attachment by double-clicking it
    in the message list.
    In the message window, click the File menu,
    and then click Save Attachments.
    Select the folder where you want to save the attachments.
    By default,
    Windows Mail saves attachments in your
    Documents folder. If you want to save the attachments to a different folder,
    click Browse, and then select a folder.
    Select the attachments that you want to save, and then click Save.
    Date: Thu, 3 Sep 2009 08:45:23 -0600
    From: [email protected]
    To: [email protected]
    Subject: Why will PDF not open from email?
    How are you guys working your way around the issue for now?
    >

  • Why do PDF files in email open in safari with a quick time logo but only one page shows and I can't scroll through the following pages?

    Why do PDF files in email open in safari with a quick time logo but only one page shows and I can't scroll through the following pages?

    Try a system reset.  It cures many ills and it's quick, easy and harmless...
    Hold down the on/off switch and the Home button simultaneously until the screen blacks out or you see the Apple logo.  Ignore the "Slide to power off" text if it appears.  You will not lose any apps, data, music, movies, settings, etc.

Maybe you are looking for

  • How to restrice ananymous user access to portal link /irj/servlet/prt/portal/prtroot/com.sap.portal.navigation.portallauncher.default?

    Hi experts, We had an issue with portal access. I wonder if portal is venerable for security threats? Could you please let me how to restrict the unauthorized users (anonymous user) to the portal URL. https://HOST:50001//irj/servlet/prt/portal/prtroo

  • Help in Controller Code-Urgent

    Navigation: By Clicking on HR UAE Employee SelfService responsibility, We get Professional Details In the Professional Details, we have to Click Competence Profile. By clicking on Competence Profile, it will navigate another page. In that Screen .the

  • Populating a combo box using values in a table

    I am trying to populate a drop down box with values from a table. I have got so far. The combo box is populated however the values in the box are blank. Can some suggest the necessary modifications? $query="select distinct(house_type) from tbl_accomm

  • Windows 8.1 Enterprise N Build 9600 skype app crash

    Hello when i open skypeapp i see the skype logo screen then the app crash and return to desktop with no errors but i check the event log viewer and here is the log - <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event"> - <System>   <

  • Sites As File

    Hi There, I am thinking about starting a small web design business just as a kind of "productive hobby" for now. My question is this... Can I create the website on iweb, save it as a File (instead of publishing to .me), and then send it to the custom