Cursor behaviour when quick key zooming

Is there a way to change the cursor behaviour when using a quick key (cmd-space) zoom?
When laying out complex forms i often need to quickly zoom in to accurately position (say) a checkbox i've just place on the page, but if i cmd-space zoom i have to then click the arrow tool before i can continue positioning the element in question.
Not a big problem with one element but if i need to zoom in tight to reposition a number of elements i've selected, the need to click the arrow tool after the zoom causes that selection to deselect. Which means zooming in on each one to position it.
In short, is there any way for acrobat to revert to the current tool after a quick key zoom?

JFrame.setDefaultLookAndFeelDecorated(true) has bugs! I agree. I created my own lookAndFeel extending mostly from MetalUI components. I then made my own RootPaneUI and TitlePane, so I was knee deep in the MetalRootPaneUI code. You cannot fix the flicker problem. When resizing, the new bounds are determined and then setBounds is called on the window, either a Frame or Dialog. The setBounds call forces lightWeight components to repaint(), causing the flicker.
sometimes, when resizing, the resize cursor will not be reset after resizing.I found this one two. I actually fixed this one. In the MetalRootPaneUI.MouseInputHandler.mouseEntered(line:878):public void mouseEntered(MouseEvent ev)
  Window w = (Window)ev.getSource();
  // change this line to the one below it
  //lastCursor = w.getCursor();
  lastCursor = Cursor.getPredefinedCursor(0);//should work now
  mouseMoved(ev);
}What appears to happen is when a Dialog is closed over a JFrame, the cursor gets screwed up somehow. I was able to recreate the bug. I simply made a JFrame with a button that created a dialog. I then used the titleBar's closeButton to close the dialog. Just after clicking the closeButton, I moved my mouse quickly over the edge of the dialog before it had a chance to disappear. Sometimes I was fast enough and the cursor got stuck. The above code is all I could do to fix it.
The resizing was filckery or slow whether I used the real MetalRootPaneUI or my own. I also tried the dynamicLayout and noerasebackground with unacceptable trade-offs. Luckily my app only has one JFrame. So, I only setDefaultLookAndFeelDecorated JDialogs, which are never resizable in my app. This means that my JFrame is the only window in the app that uses the OS TitleBar rather than my own. Although, my JFrame resizes without flickering.

Similar Messages

  • The cursor freezes when I pinch zoom using the Lenovo Thinkpad T410 trackpad while Firefox is open.

    This happens only on Firefox, not other browsers. In Firefox, when the cursor freezes after a pinch zoom, the track point still works.

    Hi jaideepdesai,
    Do you have the accessibility type in page option turned on?
    I think it is [http://kb.mozillazine.org/Inline_autocomplete]
    I it is definitely one of these: browser. urlbar.
    See [http://kb.mozillazine.org/Firefox_:_FAQs_:_About:config_Entries About:config entries]
    By default a new window should open the cursor in the search field on the page. Resetting Firefox will get you back to the default on about:support page.

  • Extreme mouse cursor lag when using Accessibility Zoom (Fullscreen) in Yosemite

    I have a Retina MacBook Pro running OS X Yosemite (10.10), clean installed, connected to an external Thunderbolt Display. When I zoom in using Accessibility, I experience a very prominent lag, moving my mouse cursor (either with my Magic Mouse or Magic Trackpad or the built-in Trackpad) around or when zooming out. It is especially visible when zoomed in on applications like Calendar and Mail. This never happened in Mavericks. My settings are as follows.
    I've tried creating a new user account on my Mac and the problem still persists, which leads me to believe it's a bug with Yosemite.
    Anyone else have the same problem?

    I also have the same exact problem. I have a i5 iMac Mid 2011 with an upgrade to 10.10 Yosemite connected to an external display. I like you never had this issue with Mavericks. Zoom is so painfully slow now that I had to disable it. My iMac has 12 GB of RAM and even with no apps opened, zoom is killer slow.. makes me want to punch a wall-kinda slow.
    I think it's clear to say that something is up with 10.10.. some bug.
    Apple please fix us zoomers

  • Bug in cursor behaviour with duplicates

    Dear Oracle guys and girls,
    first of all: it sucks that i HAVE to provide business information (company name, address, even phone number) even if i just want to participate in this forum for private reasons. I even have to "unsubscribe" to the newsletters although i never subscribed. Then i have to re-enter my timezone information and email address for the forum, because the settings in my profile are ignored. I think there's some room for improvement in this registration process.
    OK - back to topic. i think i found a bug in the cursor behaviour with duplicate keys. But the behaviour is very consistent, so maybe it's not a bug, but a bad design. (I call it bad because it's totally unexpected and not logical to me).
    I insert some dupes with DB_KEYFIRST; then i create a cursor and iterate over all items in the reverse order (!) with DB_PREV (i also tried DB_PREV|DB_NEXT_DUPE) - no keys are shown.
    Alternatively:
    I insert some dupes with DB_KEYLAST; then i create a cursor and iterate over all items in the reverse order (!) with DB_NEXT (i also tried DB_NEXT|DB_NEXT_DUPE) - no keys are shown.
    cursor->c_get returns the error code -30989 (DB_NOTFOUND).
    Why is it not possible to traverse duplicates in the reverse order? To me it looks like a bug.
    I tested against db 4.5.20.
    Regards
    Chris
    PS: I would love to hear if the bug i reported here: http://groups.google.com/group/comp.databases.berkeley-db/browse_thread/thread/ed471cf6837cb2a6/dd9cda0ad105f401#dd9cda0ad105f401
    will be fixed in the next version.
    Here's a test program:
    int
    main(int argc, char **argv)
    unsigned i;
    int st;
    DB *db;
    DBT key, record;
    DBC cursor, cursor2;
    unlink("test.bdb");
    st=db_create(&db, 0, 0);
    if (st)
    error("db_create", st);
    st=db->set_flags(db, DB_DUP);
    if (st)
    error("db->set_flags", st);
    st=db->open(db, 0, "test.bdb", 0, DB_BTREE, DB_CREATE, 0);
    if (st)
    error("db->open", st);
    memset(&key, 0, sizeof(key));
    memset(&record, 0, sizeof(record));
    st=db->cursor(db, 0, &cursor, 0);
    if (st)
    error("db->cursor", st);
    st=db->cursor(db, 0, &cursor2, 0);
    if (st)
    error("db->cursor", st);
    for (i=0; i<LOOPS; i++) {
    record.data=&i;
    record.size=sizeof(i);
    st=cursor->c_put(cursor, &key, &record, DB_KEYFIRST);
    st=cursor->c_put(cursor, &key, &record, DB_KEYLAST);
    if (st)
    error("cursor->c_put", st);
    while (!(st=cursor2->c_get(cursor, &key, &record, DB_NEXT))) {
    printf("%d\n", *(int *)record.data);
    st=cursor->c_close(cursor);
    if (st)
    error("cursor->c_close", st);
    st=db->close(db, 0);
    if (st)
    error("db->close", st);
    return (0);
    }

    st=cursor->c_put(cursor, &key, &record, DB_KEYFIRST);
    st=cursor->c_put(cursor, &key, &record, DB_KEYLAST);
    if (st)
    error("cursor->c_put", st);
    please delete the first line, it was a cut and paste error. as i said earlier: insert with KEYLAST, query with NEXT.

  • Audio Zoom Quick Key (like in FCP)

    Still getting used to the switch from FCP to Premiere.  Overall I am impressed, but there are still a few things that make me mental with Premierre.  In FCP I can zoom in any window with the command +  and return to full view with the command z quick keys.  I know that just the + and \ works for the timeline in Premiere, but not in the source monitor. Is there any such thing like that in Premiere - especially when viewing Audio Wave Froms in the source monitor?  That little slider bar drives me nuts and waste a lot of time.  It's much quicker to just zoom in and return to full view with a key stroke like I am used to in FCP.  If anyone has a solution, I would be most greatful. Thanks in advance.

    Thanks Jim for the reply.  I do know of that featuer toggeling the panel full screen, but what I am wondering is that once you do that, is there way quick key that will then allow you to zoom into the waveform like when you use the sliders at the bottom of the panel.  In FCP, i can put the play head near the spot I want and press the command + key and it will then zoom in on a frame by frame basis - much like hitting the + key in the main premiere time line.  Does that make sense?  Thanks again!

  • How can I change the measurement of the kerning quick key? (When you press option + arrow keys)

    Right now when I am using the quick keys to kern type, everything jumps too far. I want to lower the measurement or unit that it moves when I use this, as it is currently driving me nuts.

    Not likely you can change it, unless something out of wack is causing it.
    Anyway
    Which operating system are you using?
    In photoshop under Help>System Info find the version of photoshop at the top of the list?
    Which version of photoshop were you using before?
    Have you looked in the Character panel while kerning to see the increments of kern while pressing the shortcuts?

  • In facebook, When I access a picture directly, I am unable to advance the photo forwards or backwards using the mouse/cursor or the arrow keys.

    I am using Firefox 16.0.1 on a macbook pro using 10.7.5 software.
    When I access a picture directly, I am unable to advance the photo forwards or backwards using the mouse/cursor or the arrow keys. The same is true if I use an external mouse.
    If I use Safari as the browser, I don't have this issue.
    This problem just started a couple of days ago.
    All had been working fine.

    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Further information can be found in the [[Clear your cache, history and other personal information in Firefox]] article.
    Did this fix your problems? Please report back to us!

  • "Search for text" Zooms when number keys pressed. Expecting it to FIND text

    For months I have been using (&relying on) the "search for text when I start typing " feature.
    I am a school teacher & this helps me to search for students & record scores in an online grading program.
    The "search for text when I start typing feature" stopped working two days ago.
    Before, whenever I typed the "Find" box immediately opened up, searched the screen,
    and highlighted whatever I had just typed. Now, when I enter a "1", "2" , "6" , "9" or "0" (zero)
    the find box does not come up- so this disrupts all the grade recording process for me.
    Instead, when I type in 6 or 9 (it zooms in the screen instead), 0 (it zooms out instead) and I cannot tell what happens
    when I type in 1 or 2 (nothing appears to happen- but no "Find" box comes up.
    Edit by a moderator to improve the title
    (As suggested by a contributor, flagging the post)
    Was
    *The Firefox "search for text when I start typing feature" has just stopped working correctly
    Now
    *"Search for text" Zooms when number keys pressed. Expecting it to FIND text
    ~J99
    I tried restarting Firefox and turning on/off the Advanced feature ( "search for text when I start typing feature")
    but it did not help. I am using a Mac. I also tried using an external keyboard/keypad but the exact same
    results occur.
    Please help!
    Thanks,
    Barry

    The keyboard shortcut for resetting the zoom level is Command+0, so seeing that kind of response implies that Firefox is misreading the state of the Command key, thinking it is stuck down. Usually tapping the key numerous times will send a signal to all programs that the key has been released (at least on Windows).
    On the other hand, in that case, Command+6 should jump to the sixth tab in the current window, it shouldn't change the zoom level. So... hmm...
    In case a component of the OS has malfunctioned, have you already tried shutting down the system completely and then starting it up again?

  • Audition CS6 Cursor Behaviour

    Just upgraded to Audition CS6, coming from Audition 3.0.
    All is well, except for the cursor behaviour.
    In audition 3.0 (and 1.5, and CEP, for that matter) the cursor would stay put after I started and stopped playing, using the space bar to start/stop. Now, the cursor jumps to the position where i stopped playing. I would like the cursor to remain at the starting point. Any ideas on that?
    Thanks in advance!

    Hi Durin,
    First of all; Thanks for your reply!
    With the Cursor, I mean what you call 'the dimmer playhead start time indicator' (wouldn't 'cursor' be easier? ).
    When I position the start time indicator anywhere and start playing the track, it will stay put until I stop playing.
    After I stop, it moves to the new position of the playhead. I want it to stay where it was when I started.
    Somehow I managed to achieve that by unticking the 'return playhead to start position on stop' box.
    I just tried it again and it now works like I want it to, again.
    It seems a bit inconsequent, but I can't quite put my finger on it.
    I can't seem to reproduce the problem right now.
    I will get back here once I'm sure what I want, because this isn't getting us anywhere.
    In the meantime, can I ask you; When I select a part of the track using shift and the arrow keys, it will only let me select from right to left (end to beginning), not from left to right. Is there any way of changing this? I can live with it, but I don't really see the point .

  • Bridge will not let me reject files using the quick key: option+delete

    Hi Guys,
    This is really starting to frustrate me. I'm trying to move quickly some large quantities of files however, for some reason all I get is a error tone when I attemp to reject a image with the quick key after selecting it, or in full screen preview.
    I'm running a OSX 10.9.1 Macbook Pro, with the CS6 Production Suite, Including Adobe Bridge Ver 5.0.2.4
    Can anyone shed some light on why this might be happening? Or what the next possible step would be?

    Not a mac person, but frequently a tone when doing task is a warning from the OS.  Tone may be coded to indicated error.

  • Cursor disappears when using Photoshop, anyone else?

    My cursor disappears when using Photoshop, I have to leave the program to get it back. Happens constantly since installing 10.8.3.
    Was fine for years, until I upgraded my OS

    NEW, 1ST TIME POST
    I'd like to see some real effort on the part of Apple to 1) address the issue and 2) post a fix.
    I've been using the same equipment for several years (27" iMac and a Wacom Intous4).  Everything was lovely until 'upgrading' to the latest OS…  The cursor dissappears at will.  I can NOT predict the event, only that I have only found it occurring in Photoshop.
    Contacted Wacom.  No help there.
    I got VERY tired of having to close PS to get the cursor back.  My tablet is hard-wired and my keyboard is an Apple wireless.  Of course, w/o a cursor, how are you going to click on anything…  Keyboard worked, but not the Wacom.  Finally got out my wireless [Apple] mouse, fired it up, and used it as a 'backup' (for crashing my way out of PS).  The mouse never interferred with operation.  THOUGHT it was a Wacom problem, because I've yet to create the event with a normal mouse.  I admit I rarely, RARELY use a mouse.  Seems that I can't draw with a rock…
    Aggravated by the lack of interest across the board, I discovered quite by accident one day a work-around: flip to a different desktop and then right back.  Voila.  Cursor is back.  I've got 4 desktops available, so it is a quick CTL + arrow.  My work-around works for me WITHOUT FAIL.  Pay attention Apple/Adobe/Wacom.  Apparently something here is refreshing whatever and solving the problem.  Until the next time, of course.
    Apple - Adobe - Wacom, please don't think we're 'satisfied' and we'll fix it in the NEXT mulit-thousand dollar computer/OS/tablet purchase.  I love the products, but with this latest OS, you have a perfect storm of bugs (don't ask me about dropping the Internet DAILEY, s-l-o-w to non-existent blutooth connectivity, new 3D weird actions or [insert drumroll] 'THE CLOUD').
    Call any of those listed and get ready for a raft of denial and finger-pointing.  I admit, you quickly find yourself somewhere like the Phillipines or India, trying to talk to someone who can't converse with you in you own language, but that is NOT the fault of us, the end-users.
    Finally: 'Caps lock'?  Please.  Give the guy SOME credit.  Maybe the light was burnt out on the keyboard?
    C'mon.  Get with it guys!!  Denial mixed with 'passing the buck' is not an answer.  And you want MORE MONEY out of me?????
    I agree with lkooz, break out the Beseler — I'll get the trays ready…

  • When creating Key figures

    Hi gurus,
    When creating Key Figures in Adminstration workbench
    in the tabs <b>AGGREGATION</b> and <b>ADDITIONAL PROPERTIES</b>
    can somebody kindly explain the below contents and how do they affect and where do they affect, if we select.
    <b>AGGREGATION</b>
    aggregation----> sum, maximum, minmum
    <b>Exception Aggr</b>----> summation
    first value
    last value
    no aggregation (x if more than one record occurs)
    no aggregation (x if more than one value occurs)
    no aggregation (x if more than one value not= 0 occurs)
    standard deviation
    summation
    var
    <b>agg. referen.char</b>
    <b>cummulative/non-cumulative values</b>
    non *** value with ncum value change
    ncum value with in and out flow
    i will be very greatfull if somebody can give me some clear explaination and with some examples
    thanks and regards
    H.B.

    hi Dinesh,
    thanks for the quick response.
    With the info i got ...i am assuming that...
    if we set the settings of aggregation when creating key figures they will be displayed in the query results row.
    but if we want to have this effect in the data targets then we have to do these settings in the update rules
    plz can you tell me where to do these settings and is the affect same as the properties of key figures do in the query results row.
    thanks and regards
    H.B

  • Send to back quick key = unexectedly quit

    I'm running Illustrator CS4 Standard on a PC. When asking an element to be sent to back via quick key function - Illustrator unexpectedly quits. What's up?

    I'm on a PC. With the object I want to send to back selected I hit. . .
    Control . .shift. . .bracket key
    Doing that doesn't make it unexpectedly quit 100% of the time - probably
    more like 80% of the time and only after working in the program with
    different eps docs and later in the day.
    Any light you could shine would be great - thanks!

  • Has anybody had a problem with the mouse cursor lagging when navigating the drop down menus? this only started happening after a re-install. it only occurs in Photoshop elements 13 in the  photo editing section,and no other application. My mouse drivers a

    Has anybody had a problem with the mouse cursor lagging when navigating the drop down menus? this only started happening after a re-install. it only occurs in Photoshop elements 13 in the  photo editing section,and no other application. My mouse drivers are up to date.Any help or advice would be most welcome.

    Good day!
    Please post Photoshop Elements related queries over at
    http://forums.adobe.com/community/photoshop_elements
    and 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
    Regards,
    Pfaffenbichler

  • Quick Keys in Indesign not Working

    I'm working on:
    OSX 10.10.1
    Indesign CC 2014.2
    When I use my quick keys (cmd+shift) to enlarge or reduce something while maintaining the proportions it wont work. It merely resizes it without maintaining the proportions. In this instance I'm trying to resize a logo placed within a frame. I select the frame, hold down cmd+shift, and click a corner to try to reduce/enlarge it and all it does is distort my image. Any tips would be great!

    Are you doing this with the type tool?
    Try using the selection tool instead.

Maybe you are looking for