How to Move the Mouse to Particular x, y coordinates

I want to set x, y coordinate if MouseEvent to Move the Mouse.
Can anybody help me out
Regards
Sandeep

But, does anyone know how to set the Mouse back where it came from,
if it was outside of any java window?

Similar Messages

  • How to move cursor to a particular field in a form when the form opens

    Hi All,
    Using Forms Personalization how to move the cursor to a particular field in a form when the form opens.We are using Oracle Applications 11.5.10.2
    Please let me know as soon as possible.
    Thanks,
    --John.                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Hi Satya,
    Try the following
    Open the forms personalization window
    Seq: 10
    description : Move cursor
    Level : Function
    On Condition Tab-
    Trigger Event : when-new-item-instance
    Trigger Object:- (The field on which the cursor is appearing now when you open the form ) for eg : If I am working on a vendor Master form in that case it would be -VNDR.VENDOR_NAME_MIR.
    Processing Mode : Both
    Context:
    whatever context you want to do it respoansibility level or user level.
    On the Actions Tab
    Seq: 1
    Type: Bulletin
    Bulletin type : GO_ITEM
    Argument : The field to which you want to navigate to. (In my case I want to navigate to Alternate name on the Vendor master form so it would be VNDR.VENDOR_NAME_ALT_MIR).
    see if it works for you.
    cheers,
    Ankur

  • I cannot block some advertisements in the journal De Telegraaf, in The Netherlands. When I move the mouse to blokkeren (Dutch) this blokkeren disappers. How to solve it?

    I cannot block some advertisements in the journal De Telegraaf, in The Netherlands. When I move the mouse to blokkeren (Dutch) this blokkeren disappers. How to solve it? edit

    You cannot boot an iBook from an external USB drive--only a firewire drive. Actually, the drive is just a drive--it is the enclosure that determines USB vs. FireWire. If you could find an appropriate firewire enclosure, you could remove the drive from the USB enclosure and place it in a firewire enclosure and then be able to boot from that. Or you could just purchase an external firewire drive if those are available where you are.
    FireWire external drives are quite useful. One option would be to mount the external drive on the good iBook, format it properly for OS X with Disk Utility, and then use a program like Super Duper to make an exact clone of your internal hard drive. This is a popular way of backing up your stuff. You can boot from either the internal or the external. This means that if your internal hard drive were to die, you would have all your stuff on the external, and could run off of that. Since you are already using the USB for backup, it would probably be best to acquire a new firewire drive for troubleshooting and testing if you decide to go this route, since you really don't want to lose your existing backup.
    If you did have a bootable clone, you could see if the sick iBook would boot from it or not. However, it may be more productive to pursue your other thread about the boot problem. I see that Richard has joined the thread as I had hoped he would. He actually works on iBooks and is very knowledgeable.
    Also, if you do get the second ibook working and want to install OS9, you might want to post a question in the "Mac OS X v 10.3 Panther and earlier" forum. I'm not up on this myself, but I believe there is something about installing OS 9 drivers while formating or something like that. I believe the smart guys on that forum could give you some guidance so that you can avoid the problems you encountered earlier.
    Good luck!

  • On my Mac desktop I must have changed a setting so that now when I move the mouse the open windows fly off to the sides and I can't see them. They come back when I move the mouse, but it is so annoying. How can I make the windows not disappear like that?

    On my Mac desktop I must have changed a setting so that now when I move the mouse the open windows fly off to the sides and I can't see them. They come back when I move the mouse, but it is so annoying. How can I make the windows not disappear like that?

    Click on the Hot Corners..  button and look at the four definitions.  In the picture below, if you moved the cursor to the right top of the screen, it would slide all the applications off the screen as you describe and show the desktop.  Set it to "-" to deactivate.

  • I forgot how to use the setting, move the mouse to the upper left corner and the windows become smaller for an overview?

    i forgot how to use the setting, move the mouse to the upper left corner and the windows become smaller for an overview?

    I'm not quite sure what you want - if you want an overview of all open windows, use the F key.. Otherwise please post back and be more specific.

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

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

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

  • How do I fix a frozen screen on MacBook Pro where you can still move the mouse?

    I tried rebooting several times. I can move the mouse around but when I try to open programs, I'm not able to. I bought this MacBook in 2009 if that helps.

    Might be time for an OS reinstall.  Back up all your data and try that.  You don't have to erase the partition first, just install on top of what you have as a refresh.  If that doesn't fix it, then do a full wipe and reinstall.  If the problem persists, then it's a hardware issue.
    You can try an SMC and PRAM reset prior the OS reload options to see if that fixes it since that doesn't require a ton of work and won't cause loss of data.

  • Trying to download new Garmin map which may take a few hours and Firefox times out after only a small portion has been downloaded, unless I sit here and move the mouse occationally. Can we stop Firefox from timing out?

    Trying to download new Garmin map which may take a few hours and Firefox times out after only a small portion has been downloaded, unless I sit here and move the mouse occasionally. Can we stop Firefox from timing out? edit

    Quote from: lcwhitlock on 04-April-14, 13:44:09
    Hello darkhawk,
    Thank you for the recommendation.  I somewhat understand what a MS DOS disk is, but I'm not sure how to go about creating one. I've seen where you can use a program, like Rufus, to create a usb one  - but I'm leery about using 3rd-party programs (especially ones I'm not familiar with). I've come across a couple of 'how-to' tuts, but they didn't clarify what files (if any) I would need to include on the disk (for my particular situation). Right now I don't have any blank cds, nor any extra flash/thumb drives - wish I did, but hadn't needed these for years. There has only been one other time where I needed to re-install Windows, but that was over 15 years ago - I did it through BIOS, reformatting my drives, and then reinstalled via the Windows XP disk. Windows 8 is an entirely different breed, which has left me feeling a bit stumped, at times. If there was a way I could perform it (successfully), similar to the first time I did it years ago, I'd give it a try - but at the same time, I'm a bit reluctant, because if it doesn't work, then I'm stuck without any internet access to get further help.
    Ask and ye shall receive. This should be doable in Windows 7 and Windows 8 on another PC. I recommend using a USB Flash drive like in this tutorial, but I'm sure you could use something else.
    If you want, you could also use Hiren's BootCD to make a bootable CD with many options and programs on it (I keep one, just for certain situations) that will allow you to do the same things.
    http://www.hiren.info/pages/bootcd
    Also very useful for sorting out virus's as long as it's downloaded and made on another PC that is virus free......

  • Want to move the mouse arrow without physical mouse

    Hi There
    I have my Mac Book connected to the TV almost 24x7 and I have a wireless keyboard and an apple remote but not the mighty mouse.
    the issue is that I would like to be able to move the mouse arrow over the screen and click or doble click without having to buy a mouse. how can I do it? is that a combination like someting plus the arrow keys? is that possible to use the apple remote as a mouse? i mean it would be great too. is got the 4 directions and a button in the center for clicking.
    any other solution?
    many thanks in advance

    Turn on keyboard navigation in the Keyboard shortcuts of Keyboard and Mouse prefs and you can use the keyboard to navigate through the menus, folders, etc. However, there is no way to drag.
    Set full keyboard access to "All Controls" and you can tab through all the buttons in the dialog boxes. Use spacebar to "click" the selected button.
    In the Finder, Cmd+down arrow opens a file/folder. Cmd+Up arrow goes up in the hierarchy.
    Combine this with the previous tip and you can have it all, mostly.
    Also, without any of that, esc or cmd+. cancels, and cmd+first letter of button usually selects the button. That last one is application specific.

  • I have installed the LATEST VERSION of itunes in my windows and i bought the new ipad with retina display ,i had moved music into the ipad from my windows through the itunes but I DONT KNOW HOW TO MOVE THE VIDEOS IN MY VIDEOS LIBRARY OF MY COMPUTER TO MY

    i have installed the LATEST VERSION of itunes in my windows and i bought the new ipad with retina display ,i had moved music into the ipad from my windows through the itunes but I DONT KNOW HOW TO MOVE THE VIDEOS IN MY VIDEOS LIBRARY OF MY COMPUTER TO MY

    Close your iTunes,
    Go to command Prompt -
    (Win 7/Vista) - START/ALL PROGRAMS/ACCESSORIES, right mouse click "Command Prompt", choose "Run as Administrator".
    (Win XP SP2 n above) - START/ALL PROGRAMS/ACCESSORIES/Command Prompt
    In the "Command Prompt" screen, type in
    netsh winsock reset
    Hit "ENTER" key
    Restart your computer.
    If you do get a prompt after restart windows to remap LSP, just click NO.
    Now launch your iTunes and see if it is working now.
    If you are still having these type of problems after trying the winsock reset, refer to this article to identify which software in your system is inserting LSP:
    Apple software on Windows: May see performance issues and blank iTunes Store
    http://support.apple.com/kb/TS4123?viewlocale=en_US

  • The Adobe Photoshop CC 2014 - I can't use becouse is LOOCK DOWN the computer -  When USE is LOCK the computer so everything is LOCKING can't even move the mouse + need to restart the computer and use Photoshop CC 64 bit instead - have this problem for abo

    The Adobe Photoshop CC 2014 - I can't use becouse is LOOCK DOWN the computer -
    When USE is LOCK the computer so everything is LOCKING can't even move the mouse + need to restart the computer and use Photoshop CC 64 bit instead - have this problem for about 6 months ...

    Please read this (in particular the section titled "Supply pertinent information for quicker answers"):
    http://blogs.adobe.com/crawlspace/2012/07/photoshop-basic-troubleshooting-steps-to-fix-mos t-issues.html
    http://forums.adobe.com/docs/DOC-2325
    Are you trying to use a 32bit version (I did not even know there is one for Photoshop CC 2014)?
    If so – why?

  • How to move the arrows in navigation view?

    Hi, when i am using the navigation to define my page flow, i could move the page in the navigation with "SHIFT+MOUSE",but the arrow from one page to another can't be moved if i don't change position of the two pages, and when there are many pages, the arrows cross with each other, and it becomes hard for me to see them clearly. so how to move the arrows to organize them in a clearer view(Just like that in BEA Weblogic Workshop with JPF design)? is it something needes improving in Creator EA, or i just didn't find the way to do this?please help.

    Hi,
    We thank you for your valuable feedback. An RFE has been filed on your behalf for the same.
    Cheers
    Giri

  • My is MacBook pro is frozen and I cannot move the mouse and there is lots of batter still left.  Any suggestions?

    My MacBook Pro is frozen and I cannot move the mouse and I have plenty of batter left on computer.  Any idea on how to unfreeze mouse or computer.  Help?

    Press Command + Control + Power button and Force Restart your Macbook Pro if you do not have any Important Work open as this will Turn OFF and Turn ON your Mac and any Unsaved Data will be lost.

  • How to move the objects from Infoarea to another?

    Hi,
    How to move the objects from Infoarea to another?
    Thanx in advance,
    Ravi.

    Hi ..
    If the drag & drop functionality is enabled you can drag the catalog and drop it in another InfoArea just as you do with files on your PC.
    The other procedure is Use the right mouse button to create an InfoObject catalog in the InfoArea. If you want to make a copy of an existing InfoObject catalog, specify a reference InfoObject catalog.
    and check this  thread
    Re: Info Object Mapping to Info Area

  • When ever i enter a new site if never open till i move my mouse on the screen not even site no function complets till i move the mouse

    From today i have faced a different type of error. As i enter any site or give printing or anything to Mozilla it never opens uptill i move the mouse.

    Hi,
    Thank you for reaching out to us.
    Lets try a couple of steps to resolve the issue.
    Please ensure all the Windows updates are installed and the PC is up to date.
    Try a clean boot to isolate the issue to a particular software.
    To perform clean boot, please click on the link below and select the Operating System version from the drop down, You can find the step by step instruction and also screenshots incase you need any reference.
    http://bit.ly/1z4VNji 

Maybe you are looking for

  • How to restrict the number of items in Sales Contract - QCTR

    Hi, Is there any standard way or BADI exit to restrict the number of items  in the Sales Contract?(QCTR). I want to restrict number of items in the Sales Contract. Ex - Contract A - Max of 10 ITems(Materials); Contract B - Max of 20 Items(Materials).

  • Fonts missing in Illustrator, but present in InDesign

    I am asking this on behalf of our Art Department. I am the Systems Administrator. We have InDesign files from our customer, which our Art Department uses to produce pre-press proofs, and large-format digital prints. They have some files which look fi

  • Not enough memory in my Palm Z22

    I use my Palm Z22 primarily for my ePocrates drug prescription system at work. I have added only 1 other program to it, a Bible. To keep updated on drug changes I am supposed to sync about every 2 mos, I have never had problems until today when my Z2

  • SharePoint 2010 Form Library Missing the Option to Create Gantt Chart

    I have two content enable SharePoint 2010 form libraries - one has the option to create a Gantt Chart view while the other does not. Why?

  • NOKIA5130Xpressmusic "Packet Data Error"

    I've opera mini in my handset and GPRS is working fine. But when I try to download any file i.e. .JPG/ .IMG/ .exe a msg pops up "Subscribe to Packet Data" and then a second message "Link not available". As well when i try to open "nokia mobi" i recei