How to post an Event (mouse left click) to JTree node

Hi,
I am using JTree for my application just like the windows explorer tree. By default, Jtree node will got focus using left click. But, I'd like that my tree will detect a right click so that I can copy any file to the Jtree. I've added a mouselistener to it but the node is not selected by the right click. Anyboby can teach me how to post a mouse left click event to the Jtree so that it will become selected using left click.
Thanks a million

See if this is useful
public void mouseClicked(MouseEvent event)
Object object = event.getSource();
if (object == mTree)
mTree_mouseClicked(event);
private void mTree_mouseClicked(MouseEvent event)
if(event.getModifiers()==event.BUTTON3_MASK)
//your logic goes here
}//close method

Similar Messages

  • How to post an Event (mouse left click) to JTree

    Hi,
    I am using JTree for my application just like the windows explorer tree. By default, Jtree node will got focus using left click. But, I'd like that my tree will detect a right click so that I can copy any file to the Jtree. I've added a mouselistener to it but the node is not selected by the right click. Anyboby can teach me how to post a mouse left click event to the Jtree so that it will become selected using left click.
    Thanks a million

    Hi
    In the class JTree there is a method getClosestPathForLocation(int, int). The parameters are the coordinates which you can get from the MouseEvent. If you have this TreePath you can select the Node.
    This should solve your problem.
    Regards
    Dieter

  • Magic mouse left click works like right click

    magic mouse left click works like left click and at times right click.

    Read this: http://magicmousehelp.com/change-primary-click-magic-mouse/

  • USB Mouse Left Click not working, DV6700

    I have been using 2 hands to operate the simplist functions on my laptop.
    I move the mouse around with my right hand but if I want to click something I have to use the left button under the mouse-pad.
    HP support gave me a solution that worked for about an hour (Reset BIOS to default) .
    The right click on the mouse (ANY USB mouse) works fine. Its just the select button.
    I hate this!
    HELP!!!

    To CLARIFY:
    ANY USB Mouse that I plug into my (DV6700 HP Pavillion) Laptop--- the left click button doesnt work unless I hold it down for over a minute and move it around clicking on and off over and over. It can take 2 minutes before it actually clicks. So, I use the left button under the touch pad. That means its impossible to use this computer for games AND dragging and dropping is weird because I never got used to doing it with a touchpad.
    I doubt I will ever buy another HP because of this. I HATE IT!!!
    Other USB products act weird too.
    I have also deleted all USB components in Control Panel and had windows reinstall them with the wizard.
    It worked briefly (couple minutes) then was corrupted again.
    Am I supposed to just throw this thing away?

  • How do I fix a nonresponsive left click?

    My daughter's macbook, circa 2008, is not left clicking easily anymore. Is there a simple fix for this aside from an external mouse?  Thank you!

    Welcome to Apple Support Communities.
    You could try turning the unit off, turning it upside down and shaking it gently to see if there is anything lodged underneath the button. A blast of compressed air might also dislodge anything preventing the button from working. If that doesn't help, the external or wireless mouse is the next option. After that, a replacement trackpad/keyboard, called a 'topcase' in MacBook-speak, would be a solution.
    If the leading edges of the topcase have cracked (Apple calls it 'chipping') where they contact the edges of the top/screen when closed, you might get a free replacement topcase from an Apple Store.
    There are a number of reports in these forums where free replacements occurred, with or without extended AppleCare coverage, as well as reports where a free replacement was denied. Mine was replaced at no charge out-of-warranty about two years ago for the chipping issue, not because of any problem with the button.

  • Mac wireless mouse left click not working on macbook pro laptop

    I think I found a couple of solutions, but they have been temporary,,,,would welcome more ideas.
    it happens when I travel. when you switch Wifi connections in different locations.
    all of a sudden the left click on the mouse stops working, and you can only right click.
    these are the only things that have worked so far to correct the issue:
    rebooting (not always works)
    hitting the escape key (worked at first)
    making sure the mouse batteries are not low, and that no other track pads are interfering with it…(works sometimes)
    the last fix was right clicking on the apple and putting it to sleep.  then return by hitting escape and the problem was fixed (at least for now)
    this happens all the time now, especially when I switch wifis….
    c

    Mystery solved! The one thing I did not try was to actually print... which works! Even while the Mac OS X W-Fi icon still shows the 'connecting' animation or the 'problem' exclamation mark.
    Possibly Mac OS X just signals that the Wi-Fi does not connect to the internet or the likes. The Wi-Fi connection per se does work, also with password and with IPv6 enabled.

  • Parse and display xml doc when click on JTree node?

    Ok so here is the code that I have now. You will have to make alot of html files to run the program, but they can be empty for now. What you can do is just put the same exact html file to be displayed in each node element. for example.
    DefaultMutableTreeNode n1_node1_b1 =
                        new DefaultMutableTreeNode(new ModuleInfo("Device", "device.html"));could be changed to
    DefaultMutableTreeNode n1_node1_b1 =
                        new DefaultMutableTreeNode(new ModuleInfo("Device", "status.html"));And just keep adding the status.html page to each one of the nodes.
    anyway.
    For now when I click on the node, the html file is displayed in the JScrollPane rPane = new JScrollPane(htmlPane); and the htmlPane is a JEditorPane
    what I need it to do.
    When I click on the JTree node. I would like to go out to an xml file, parse the information in it, and display it to the pane.
    I will need to later, be able to add, edit, or delete information on the xml through the pane later.
    import java.util.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.tree.*;
    import javax.swing.JTree;
    import javax.swing.JPanel;
    import javax.accessibility.*;
    import javax.swing.UIManager;
    import javax.swing.JComponent;
    import javax.swing.JEditorPane;
    import javax.swing.tree.TreeSelectionModel;
    import javax.swing.event.TreeSelectionEvent;
    import javax.swing.event.TreeSelectionListener;
    import javax.swing.tree.DefaultTreeCellRenderer;
    import javax.swing.ImageIcon;
    import java.net.URL;
    import java.io.IOException;
    import java.awt.Dimension;
    * @author orozcom
    public class Example extends JFrame implements TreeSelectionListener
        private JEditorPane htmlPane;
        private URL helpURL;
        private static boolean DEBUG = false;
        private JTree tree;
        public Example()
            super("Example");
            setSize(1200,900);
            setDefaultCloseOperation(EXIT_ON_CLOSE);
            JMenuBar jmb = new JMenuBar();
            JMenu fileMenu = new JMenu("File");
            JMenuItem openItem = new JMenuItem("Open");
            JMenuItem saveItem = new JMenuItem("Save");
            JMenuItem exitItem = new JMenuItem("Exit");
            exitItem.addActionListener(new ActionListener()
                public void actionPerformed(ActionEvent ae)
                    System.exit(0);
            fileMenu.add(openItem);
            fileMenu.add(saveItem);
            fileMenu.add(new JSeparator());
            fileMenu.add(exitItem);
            jmb.add(fileMenu);
            setJMenuBar(jmb);
            //  **************** start JTree ******************//       
            JPanel lPane =new JPanel();       
            lPane.setLayout(new BorderLayout());
            DefaultMutableTreeNode top = new DefaultMutableTreeNode(new ModuleInfo("Devices","splashScreen.html"));
            DefaultMutableTreeNode branch1 =
                    new DefaultMutableTreeNode(new ModuleInfo("Module 1", "module1.html"));
            DefaultMutableTreeNode branch2 =
                    new DefaultMutableTreeNode(new ModuleInfo("Module 2", "module2.html"));
            //DefaultMutableTreeNode branch3 =
                    //new DefaultMutableTreeNode(new ModuleInfo("Module 3", "module3.html"));
            //adding to the topmost node
            top.add(branch1);
            top.add(branch2);
            //top.add(branch3);
             *          BRANCH 1           *
            //adding to the First branch
            DefaultMutableTreeNode node1_b1
                    =new DefaultMutableTreeNode(new ModuleInfo("Status", "status.html"));
            //branch1.add(node1_b1);
                DefaultMutableTreeNode n1_node1_b1 =
                        new DefaultMutableTreeNode(new ModuleInfo("Device", "device.html"));
                DefaultMutableTreeNode n2_node1_b1 =
                        new DefaultMutableTreeNode(new ModuleInfo("Network", "network.html"));
                DefaultMutableTreeNode n3_node1_b1 =
                        new DefaultMutableTreeNode(new ModuleInfo("Chassis", "chassis.html"));
                DefaultMutableTreeNode n4_node1_b1 =
                        new DefaultMutableTreeNode(new ModuleInfo("Resources", "resources.html"));
                node1_b1.add(n1_node1_b1);
                node1_b1.add(n2_node1_b1);
                node1_b1.add(n3_node1_b1);
                node1_b1.add(n4_node1_b1);    
            DefaultMutableTreeNode node2_b1 =
                    new DefaultMutableTreeNode(new ModuleInfo("Project Editor", "projedit.html"));
            DefaultMutableTreeNode node3_b1 =
                    new DefaultMutableTreeNode(new ModuleInfo("Project Manager", "projmngt.html"));
            DefaultMutableTreeNode node4_b1 =
                    new DefaultMutableTreeNode(new ModuleInfo("Administration", "administration.html"));
            DefaultMutableTreeNode n1_node4_b1 =
                    new DefaultMutableTreeNode(new ModuleInfo("Device", "device.html"));
            DefaultMutableTreeNode n2_node4_b1 =
                    new DefaultMutableTreeNode(new ModuleInfo("Network", "network.html"));
            DefaultMutableTreeNode n3_node4_b1 =
                    new DefaultMutableTreeNode(new ModuleInfo("Users", "users.html"));
            node4_b1.add(n1_node4_b1);
            node4_b1.add(n2_node4_b1);
            node4_b1.add(n3_node4_b1);
            DefaultMutableTreeNode node5_b1 =
                    new DefaultMutableTreeNode(new ModuleInfo("Logging", "logging.html"));
            branch1.add(node1_b1);
            branch1.add(node2_b1);
            branch1.add(node3_b1);
            branch1.add(node4_b1);
            branch1.add(node5_b1);
             *          BRANCH 2           *
            //adding to the Second branch
            DefaultMutableTreeNode node1_b2 =
                    new DefaultMutableTreeNode(new ModuleInfo("Status", "status.html"));
                DefaultMutableTreeNode n1_node1_b2 =
                        new DefaultMutableTreeNode(new ModuleInfo("Device", "device.html"));
                DefaultMutableTreeNode n2_node1_b2 =
                        new DefaultMutableTreeNode(new ModuleInfo("Network", "network.html"));
                DefaultMutableTreeNode n3_node1_b2 =
                        new DefaultMutableTreeNode(new ModuleInfo("Chassis", "chassis.html"));
                DefaultMutableTreeNode n4_node1_b2 =
                        new DefaultMutableTreeNode(new ModuleInfo("Resources", "resources.html"));
                node1_b2.add(n1_node1_b2);
                node1_b2.add(n2_node1_b2);
                node1_b2.add(n3_node1_b2);
                node1_b2.add(n4_node1_b2);
            DefaultMutableTreeNode node2_b2=
                    new DefaultMutableTreeNode(new ModuleInfo("Project Editor", "projedit.html"));
            DefaultMutableTreeNode node3_b2=
                    new DefaultMutableTreeNode(new ModuleInfo("Project Manager", "projmngt.html"));
            DefaultMutableTreeNode node4_b2=
                    new DefaultMutableTreeNode(new ModuleInfo("Administration", "administration.html"));
                DefaultMutableTreeNode n1_node4_b2=
                        new DefaultMutableTreeNode(new ModuleInfo("Device", "device.html"));
                DefaultMutableTreeNode n2_node4_b2=
                        new DefaultMutableTreeNode(new ModuleInfo("Network", "network.html"));
                DefaultMutableTreeNode n3_node4_b2=
                        new DefaultMutableTreeNode(new ModuleInfo("Users", "users.html"));
                node4_b2.add(n1_node4_b2);
                node4_b2.add(n2_node4_b2);
                node4_b2.add(n3_node4_b2);
            DefaultMutableTreeNode node5_b2=
                    new DefaultMutableTreeNode(new ModuleInfo("Logging", "logging.html"));
            branch2.add(node1_b2);
            branch2.add(node2_b2);
            branch2.add(node3_b2);
            branch2.add(node4_b2);
            branch2.add(node5_b2);
             *          BRANCH 3           *
            //adding to the Third branch
            DefaultMutableTreeNode node1_b3=new DefaultMutableTreeNode("Status");
            DefaultMutableTreeNode n1_node1_b3=new DefaultMutableTreeNode("Device");
            DefaultMutableTreeNode n2_node1_b3=new DefaultMutableTreeNode("Network");
            DefaultMutableTreeNode n3_node1_b3=new DefaultMutableTreeNode("Chassis");
            DefaultMutableTreeNode n4_node1_b3=new DefaultMutableTreeNode("Resources");
            node1_b3.add(n1_node1_b3);
            node1_b3.add(n2_node1_b3);
            node1_b3.add(n3_node1_b3);
            node1_b3.add(n4_node1_b3);
            DefaultMutableTreeNode node2_b3=new DefaultMutableTreeNode("Project Editor");
            DefaultMutableTreeNode node3_b3=new DefaultMutableTreeNode("Project Manager");
            DefaultMutableTreeNode node4_b3=new DefaultMutableTreeNode("Administration");
            DefaultMutableTreeNode n1_node4_b3=new DefaultMutableTreeNode("Device");
            DefaultMutableTreeNode n2_node4_b3=new DefaultMutableTreeNode("Network");
            DefaultMutableTreeNode n3_node4_b3=new DefaultMutableTreeNode("Users");
            node4_b3.add(n1_node4_b3);
            node4_b3.add(n2_node4_b3);
            node4_b3.add(n3_node4_b3);
            DefaultMutableTreeNode node5_b3=new DefaultMutableTreeNode("Logging");
            branch3.add(node1_b3);
            branch3.add(node2_b3);
            branch3.add(node3_b3);
            branch3.add(node4_b3);
            branch3.add(node5_b3);
            tree=new JTree(top,true);
            //tree.getSelectionModel().setSelectionMode(TreeSelectionModel.SINGLE_TREE_SELECTION);
            tree.getSelectionModel().setSelectionMode(TreeSelectionModel.CONTIGUOUS_TREE_SELECTION);
            //Set the icon for leaf nodes.       
            ImageIcon deviceIcon = createImageIcon("/device.gif");       
            if (deviceIcon != null)
                DefaultTreeCellRenderer renderer = new DefaultTreeCellRenderer();
                renderer.setLeafIcon(deviceIcon);
                tree.setCellRenderer(renderer);
            else
                System.err.println("Leaf icon missing; using default.");
            //Listen for when the selection changes.
            tree.addTreeSelectionListener(this);
            //Create the scroll pane and add the tree to it.
            //JScrollPane treeView = new JScrollPane(tree);
            tree.setToolTipText(" and ");
            lPane.add(tree);
            getContentPane().add(lPane);
            //  ****************  end  JTree  ******************//
            htmlPane = new JEditorPane();
            htmlPane.setEditable(false);       
            initHelp();
            JScrollPane rPane = new JScrollPane(htmlPane);
            JSplitPane jsp = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, lPane, rPane);
            jsp.setDividerLocation(180);
            getContentPane().add(jsp, BorderLayout.CENTER);
            JPanel bPane = new JPanel();
            JButton okButton = new JButton("Ok");
            JButton applyButton = new JButton("Apply");
            JButton clearButton = new JButton("Clear");
            bPane.add(okButton);
            bPane.add(applyButton);
            bPane.add(clearButton);
            getContentPane().add(bPane, BorderLayout.SOUTH);
            setVisible(true);
        /** Required by TreeSelectionListener interface. */
        public void valueChanged(TreeSelectionEvent e)
            DefaultMutableTreeNode node = (DefaultMutableTreeNode)
            tree.getLastSelectedPathComponent();
            if (node == null) return;
            Object nodeInfo = node.getUserObject();
            if (node.isLeaf())
                ModuleInfo module = (ModuleInfo)nodeInfo;
                displayURL(module.moduleURL);
                if (DEBUG)
                    System.out.print(module.moduleURL + ":  \n    ");
            else
                displayURL(helpURL);
            if (DEBUG)
                System.out.println(nodeInfo.toString());
        private class ModuleInfo
            public String deviceName;
            public URL moduleURL;
            public ModuleInfo(String device, String filename)
                deviceName = device;
                moduleURL = (URL)Example.class.getResource("/" + filename);
                if (moduleURL == null)
                    System.err.println("Couldn't find file: "
                            + filename);
            public String toString()
                return deviceName;
        private void initHelp()
            String s = "YFDemoHelp.html";
            helpURL = Example.class.getResource("/" + s);
            if (helpURL == null)
                System.err.println("Couldn't open help file: " + s);
            else if (DEBUG)
                System.out.println("Help URL is " + helpURL);
            displayURL(helpURL);
        private void displayURL(URL url)
            try
                if (url != null)
                    htmlPane.setPage(url);
                else
                { //null url
                    htmlPane.setText("File Not Found");
                    if (DEBUG)
                        System.out.println("Attempted to display a null URL.");
            catch (IOException e)
                System.err.println("Attempted to read a bad URL: " + url);
        /** Returns an ImageIcon, or null if the path was invalid. */
        protected static ImageIcon createImageIcon(String path)
            java.net.URL imgURL = Example.class.getResource(path);
            if (imgURL != null)
                return new ImageIcon(imgURL);
            else
                System.err.println("Couldn't find file: " + path);
                return null;
        public static void main(String args[])
            new Example();
            //new AssistiveExample();
    }Thanks orozcom

    yes i can at the time of MIRO u can see both
    go in SU01 for and user
    in Parameters enter IVFIDISPLAY in Parameter ID and X in Paramater Value
    thus for that user u will be able to c Invoice number and accounting number after saving MIRo
    u will get message like
    Invoice document 5105608893 was posted ( Accountng Documnt: 5100000000 )
    hope this helps

  • How to get the event on double click the Matrix(#)?

    There is a <b>#</b> on Matrix(0,0) in most SBO Form, I want to double click it, then it will respond with a dialog box, I don't know how to do in VB6, who have some code sample? thank you.

    Hello Adele,
       No, I did not add a breakpoink in my coding, I try to wake up the double click events, but as below sample, I also remove the <b>Case et_CLICK:</b>, could not get the double clikc event either, I don't know why?
      Select Case pVal.EventType
                '// every event will open a message box with the event
                '// name and the form UID how sent it
    <b>            Case et_CLICK:
                '// Specifies Mouse Up on editable item.
                    SBO_Application.MessageBox _
                    "An et_CLICK has been sent by a form with the unique ID: " + FormUID</b>
                Case et_DOUBLE_CLICK:
                '// Specifies Mouse Up on editable item in time interval define by
                '// SAP Business One as double-click.
                    SBO_Application.MessageBox _
                    "An et_DOUBLE_CLICK has been sent by a form with the unique ID: " + FormUID

  • HT202731 mouse left click not working

    Mouse not working properly.  Not sure if it is related to new operating system Yosemite that I downloaded but issue started after that. 
    Left mouse click either doesn't work at all, or starts working then grabs and won't release what I am clicking on.  Rt mouse click works ok.  Any others with this issue?  I have tried magic mouse and regular mouse, same issue. 

    If you go to System Preferences > Mouse & Keyboard and select the Mouse tab you'll see an option of the right side for the primary button. make sure the left is selected.

  • Magic Mouse Left Click Problem

    I got a Magic Mouse for Christmas this morning and set up with my Macbook Pro. The setup went quickly and well. I was able to move the cursor around my screen with the Magic Mouse.
    However, the click buttons don't work. I have tried left and right clicking and nothing happens.
    Is there a problem with my mouse or did I miss something in the setup?
    Thanks.

    I had the same problem this evening. Is it possible that you had your USB or trackpad mouse buttons reversed when you switched to the Bluetooth mouse?
    I normally reverse my mouse buttons (like for left handed people). My index finger naturally rests on the upper right corner of the mouse. When I try to use the normal button config, my hand and forearm fatigue in no time. Reversing the buttons allows me keep my index finger relaxed for all the normal mouse clicking, then I reach left for the "right" button.
    It also discourages others from using my computer!
    Anyhow... When I connected to the Magic Mouse, the buttons didn't work. I turned it off and connected the USB mouse, returned it to "right-handed" mode and switched back to the Magic Mouse, and the buttons work correctly now. I then use the Magic Mouse control panel to set Secondary click to left.
    Hope that helps!
    Ken

  • How to post audit event from my application ?

    Hi All,
    I'm newbie in weblogic(server) field. I'm working on audit trail for my application. We are using weblogic server8.1 SP4.
    I read thru the documentation in weblogic site and understood the default and custom auditing providers/auditing events and how to configure them from the admin console.
    I would like to know how to programatically invoke/trigger/post that audit from wherever I want from the application.
    Hope I'm clear.
    Any help in this regard is highly appreciated.
    Thanks
    Viji

    If you find out.... I'm curious too.

  • How to show tooltip on mouse right click...

    Hi everyone!
    I'm trying to show a tooltip when the user clicks on a button with the mouse right button but I'm having some problems starting, for example, with the tooltip position. For example, look at the the following example(without mouse listener yet):
    public class test extends JFrame{
         private JToolTip      jtp      = new JToolTip();
         private JButton      button      = new JButton("a button");
         private JPanel           panel      = new JPanel();
         public test(){
              add(panel);
              panel.add(button);
              jtp.setTipText("a tooltip");
              jtp.setBounds(10,10,10,10);
              jtp.setVisible(true);
              panel.add(jtp);
         public static void main(String[] args) {
              test x = new test();          
            x.setVisible(true);
    }Why the setBounds doesn't set the position? In fact it doesn't do anything.
    Is it possible to the tooltip to partially overlap the button. As far I checked they only stay side by side.
    I hope you understand my english...
    Filipe

    Use this code to show custom tool tip.
    You should also handle the hiding of the tool tip.
    JButton button = new JButton("test");
    button.addMouseListener(new MouseAdapter() {
        public void mouseClicked(MouseEvent e) {
            if (e.getButton() == MouseEvent.BUTTON3) {
                JButton button = (JButton) e.getSource();
                JToolTip tooltip = button.createToolTip();
                PopupFactory popupFactory = PopupFactory.getSharedInstance();
                tooltip.setTipText("a tooltip");
                final Popup tooltip1 = popupFactory.getPopup(button, tooltip,
                        button.getLocationOnScreen().x + e.getX(),
                        button.getLocationOnScreen().y + e.getY() + 20);
                tooltip1.show();                       
    });

  • Mouse left-click not working after first click

    I see this issue has been up several times. I have disabled Microsoft .NET Framework Assistant and Java Quick Starter, but still have the problem. I’m using the lastest FF ver. 3.6.6 on Win XP. I think I have had this problem once in a while since FF 3.0 but now it’s almost daily.
    Does anyone know what’s causing this?
    Thanks,
    Frank
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6.5; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E)

    I replaced my wireless mouse with a wired one, and the problem went away.

  • Any methods or interfaces for Mouse Left and Right click actions?

    Could anyone tell me the methods that I can use for setting up Mouse Left click and Mouse Right click actions? I checked the on-line API and could not find those specifications. Maybe I misses something and did not find them. If you just happen to know it, could you reply this message or you can tell me where I can search to find it. Thanks for your help. Bob

    I believe you just set up to receive all mouse click events regardless of which mouse button the user clicked. When you get the MouseEvent object, call its getModifiers method to get an indication of which mouse button was pressed. Check the javadocs for MouseEvent, paying particular attention to "the button mask in the modifer field"

  • Left click button not working on mouse

    Using an HP Pavillion g series notebook with windows 7 and all of a sudden my HP wireless mouse left click button doesn't work. checked to see if it was clean, changed the battery too.  Right click buttonis working as left click now. Driver software is upto date.  Only 2 years old with light use.  What's up?

    I also get what looks like tiny barcodes to the top right of my mouse pointer.
    That is usually a software corruption problem.
    Disk Utility ( Repair Disk ) is a good place to start.

Maybe you are looking for

  • Radio button 'Names' and grouping

    Ok, I am still working on my Monster form... Probably pushing the envelope for what Forms can do...but hey... My "buttons" are all named "Button.section.number"  (ex. Button.1.13) so that my validate scripts can quickly go through and build other tab

  • Microsoft programs stopped working

    OS X 10.8.5 All of the microsoft programs (Skype, word, excel, update utility, even error reporting, all) I regularly run on my macbook pro have stopped working.  If I try to open an application or document the icon bounces on the dock, the graphic f

  • My titles are not crip any more, they have jagged edges

    My titles are not crisp any more in Premiere Pro, they are jagged edged. Any idea how to fix them?

  • Trying to create adobe document with bookmarks

    I'm creating a new adobe document in Adobe Reader 8 from MS Word and I would like to have bookmarks in the document. How can I do this? Thanks!

  • Plz help asap....Solman 4.0 inst error

    hi.. i am doing the following inst.. solman 4.0 on win 2003 x64 standard abap and java on ibm db2 udb ver9 java 1.4.2.14 x64 win i am attaching the error below .................... java.lang.NullPointerException      at java.io.Reader.<init>(Reader.j