Arrow keys and layer position

I am using the arrow keys to clean up tracking keyframes for a layer's position. Is there a way to lock the arrow keys to just one pixel movements?? Or even better, sub-pixel? Currently it moves the layer by 2 or 3 pixelss, thus lacking accuracy.

The arrow keys move the layer one pixel at the current magnification (as stated here). To move a layer more precisely with the arrow keys, zoom in the Composition panel.

Similar Messages

  • Arrow keys and enter key not functioning in Firefox 3.6 when viewing PDF

    I'm using Adobe Reader 9.3.0.
    I have a web application that displays PDFs (using Adobe Reader) in a browser.  The PDF is loaded onto the page inside an IFRAME.  In addition to the IFRAME containing a PDF, the page also includes several forms, text fields, etc. For the most part this is working fine.  However, I have a glitch when using this in Firefox 3.6. I'm finding that certain keyboard events are being lost and I strongly suspect that they are being swallowed by Adobe Reader.  When I place focus on an HTML text field and press enter key or arrow keys, I do not get the appropriate key events.  If I run the exact same test without the PDF IFRAME these key events work correctly, but as soon as I load the PDF into the IFRAME they do not.  I believe the primary key event that gets lost is the keydown event.  I do get the keyup event.
    Again, the events work correctly up until I load the PDF onto the page.
    I've verified that this error does not occur in Firefox 3.5 and 3.0.
    Here is a testcase to reproduce this:
    <html>
    <head>
        <title>JavaScript - Detecting keystrokes</title>
        <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
        <script type="text/javascript">
            var pdfURL = 'http://samplepdf.com/sample.pdf';
            window.onload = function () {
                init();
            document.defaultAction = true;
            function init() {
                var x = document.getElementById('testForm').getElementsByTagName('input');
                for (var i=0;i<x.length;i++) {
                    x[i].onclick = setEvents;
                    if (x[i].checked)
                        x[i].onclick();
                writeroot = document.getElementById('writeroot');
                document.getElementById('emptyWriteroot').onclick = function () {
                    writeroot.innerHTML = '';
                    return false;
            function setEvents() {
                if (this.id == 'default') {
                    document.defaultAction = !this.checked;
                    return;
                var eventHandler = (this.checked) ? detectEvent : empty;
                document.getElementById('textfield')['on'+this.id] = eventHandler;
                //document['on'+this.id] = eventHandler;
            function detectEvent(e) {
                var evt = e || window.event;
                writeData('<b>'+evt.type+'</b>:  keyCode=' + evt.keyCode+' : charCode=' + evt.charCode);
                return document.defaultAction;
            function empty() {
                // nothing
            var writeroot;
            function writeData(msg) {
                writeroot.innerHTML += msg + '<br />';
        </script>
        <style type="text/css">
            body {
                font-size: 12px;
            #writeroot {
                height: 300px;
                overflow: auto;
                border: 1px solid #2EB2DC;
        </style>
    </head>
    <body>
    <form id="testForm">
    <input type="checkbox" id="keydown" /> <label for="keydown">keydown</label><br />
    <input type="checkbox" id="keypress" /> <label for="keypress">keypress</label><br />
    <input type="checkbox" id="keyup" /> <label for="keyup">keyup</label><br />
    <input type="checkbox" id="default" /> <label for="default">Suppress default action</label><br />
    <input type="text" id="textfield" /><br />
    <button id="emptyWriteroot">Remove messages</button>
    </form>
    <a href="#" onclick="document.getElementById('docviewer-page').src=pdfURL;return false">Now load IFrame</a>
    <p id="writeroot"></p>
    <div id="container2" style="border:1px solid black;width:400px;height:200px">
            <iframe
                id='docviewer-page'
                name='docviewer-page'
                title='document page'
                src='http://www.google.com'
                align='left'
                width='100%'
                height='100%'
                scrolling='auto'
                frameborder=0></iframe>
    </div>
    </body>
    </html>
    Paste the above into an HTML document.  Open the HTML document in Firefox 3.6.  Check the four checkboxes.  Move into the text field and press arrow keys and enter key to observe the results when it is working correctly.  Then click on the "Now Load PDF" link.  Press the arrow keys and enter key again and observe that the behavior has changed.
    Anybody have any idea why this is happening or how to work around it?

    I found a workaround!
    By using an object tag instead of an iframe, all the keys seems to work fine and the PDF still renders in the page the same way.
    Here's a page that works:
    <html>
    <head>
        <title>JavaScript - Detecting keystrokes</title>
        <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
        <script type="text/javascript">
            var pdfURL = 'http://samplepdf.com/sample.pdf';
            window.onload = function () {
                init();
            document.defaultAction = true;
            function init() {
                var x = document.getElementById('testForm').getElementsByTagName('input');
                for (var i=0;i<x.length;i++) {
                    x[i].onclick = setEvents;
                    if (x[i].checked)
                        x[i].onclick();
                writeroot = document.getElementById('writeroot');
                document.getElementById('emptyWriteroot').onclick = function () {
                    writeroot.innerHTML = '';
                    return false;
            function setEvents() {
                if (this.id == 'default') {
                    document.defaultAction = !this.checked;
                    return;
                var eventHandler = (this.checked) ? detectEvent : empty;
                document.getElementById('textfield')['on'+this.id] = eventHandler;
                //document['on'+this.id] = eventHandler;
            function detectEvent(e) {
                var evt = e || window.event;
                writeData('<b>'+evt.type+'</b>:  keyCode=' + evt.keyCode+' : charCode=' + evt.charCode);
                return document.defaultAction;
            function empty() {
                // nothing
            var writeroot;
            function writeData(msg) {
                writeroot.innerHTML += msg + '<br />';
        </script>
        <style type="text/css">
            body {
                font-size: 12px;
            #writeroot {
                height: 300px;
                overflow: auto;
                border: 1px solid #2EB2DC;
        </style>
    </head>
    <body>
    <form id="testForm">
    <input type="checkbox" id="keydown" /> <label for="keydown">keydown</label><br />
    <input type="checkbox" id="keypress" /> <label for="keypress">keypress</label><br />
    <input type="checkbox" id="keyup" /> <label for="keyup">keyup</label><br />
    <input type="checkbox" id="default" /> <label for="default">Suppress default action</label><br />
    <input type="text" id="textfield" /><br />
    <button id="emptyWriteroot">Remove messages</button>
    </form>
    <a href="#" onclick="document.getElementById('docviewer-page').data=pdfURL;return false">Now load IFrame</a>
    <p id="writeroot"></p>
    <div id="container2" style="border:1px solid black;width:400px;height:200px">
            <object
                id='docviewer-page'
                name='docviewer-page'
                title='document page'
                data='http://www.google.com'
                align='left'
                width='100%'
                height='100%'
                ></object>
    </div>
    </body>
    </html>

  • Problems with scrolling through premiere timeline using arrow keys and shift arrow

    This is a really weird problem in cs6.
    When I load a clip into the source monitor i can scroll throughit fine using the arrow keys, and shift arrows and my shuttle pro controller.
    When I place the same clip on to the timeline it really struggles to scroll using the arrows or the shuttle pro, its really kerky and sdlwo to scroll the timeline, which is really frstrating, becuase it can play the footage fine in the source monitor.
    The clips will playback fine, but scrolling through them just doesn't work as it should any ideas?
    Cheers
    Mike

    I changed my shuttle settings to make the shuttling more responsive:
    1 - 5 times second
    2 - 10
    3 - 15
    4 - 30
    5 - 45
    6 - 60
    7 - fast as possible
    At least I changed this a long time ago - don't know if these are the defaults or not.
    It'll only shuttle as fast as your system is responsive of course - so if you get instantaneous scrubbing by dragging the CTI in the timeline with the mouse, you should be able to get good performance with the shuttle. Of course that performance depends on the type of footage and how demanding it is on CPU to decode and whether youi have effects applied etc etc etc.
    I edit pretty much exclusively with Sony XDCAM EX 1080P 25 footage we've shot on EX3 and PMW-350 etc and I get very very fast performance on the timeline - no issues at all i7 6 core 4GHz with 24Gb ram and fairly fast RAID array for footage.

  • Is There a List of Keyboard Shortcuts for Adobe Digital Editions, I Found Two By Accident the "Arrow" Keys and the "Enter Key" for Turning Pages in an eBook...

    Hi  ??  :       Does Anyone Know If There is a List of Keyboard Shortcuts for Adobe Digital Editions, I Found/Discovered Two By Accident the “Arrow” Keys and the “Enter Key” for Turning Pages in an eBook...   Thanks
    I Did Look for this Keyboard Shortcuts in Adobe Digital Editions Help & FAQ Areas and Got the Run Around, Very Hard to Find How Use Adobe Products !!
    Microsoft Windows Vista & Win 7 Operating Systems
    Message was edited by: Al Adams

    Nope, I doubt it.  As I said:
    I disabled Aero theme, checked font scaling was 100% and rebooted Windows in between all of the steps to no avail.
    I've been reading a lot around this and it seems the arrow key problem is a red herring; I think it's just some kind of terminal preferences corruption.

  • Brand new 15" MacBook Pro Retina - unplugged from Thunderbolt Display and Keyboards today find keyboard alpha-numerics not working; except the function keys, delete key, tab key, command/ctrl/shift/alt/fn and arrow keys; and 7/8/9/u/o/j/l nudge cursor

    Brand new 15" MacBook Pro Retina - unplugged from Thunderbolt Display and Keyboards today find keyboard alpha-numerics not working; except the function keys, delete key, tab key, command/ctrl/shift/alt/fn and arrow keys; and 7/8/9/u/o/j/l produce cursor nudges.

    It's a new machine - and the Thunderbolt Display is meant to work with it. You need to just make an appointment at your local Apple Store and have them fix whatever is wrong.
    If you like, you could always try a SMC reset and a PRAM/NVRAM reset to see if either of those will get your keyboard back in working order...
    Clinton

  • Arrow key and space bar do not work scrolling in PDF document with film file?

    I have made a single PDF file from 26 different InDesign files, first exported to PDF:s. Text and photos. One of the documents contain a film file (.mov). As I scroll through the documents in full screen mode, once I start to play and stop the film I can no longer use the spacebar nor right arrow key to get to the next document. Only mouse works.
    Adobe 11.0.10 MBP with Yosemite.
    Many thanks for input!
    /Ivar

    Hi Melfour-
    Here is a Support article detailing how to work with your Firefox PDF preferences:
    [[Opening PDF files within Firefox]]
    Hope that helps.

  • Having trouble with arrow keys and moving objects

    All of a sudden I can't move objects in Illustrator (CS4). They move around in a jerky fashion and make big jumps with the arrow keys. I tried restarting, resetting preferences, playing with mouse. What could be causing this and how can I fix it?

    View->snap to grid?

  • JComboBox problem when traversing using arrow keys and it is editable

    Hello,
    The JComboBox I am using is editable and user needs to traverse the list using arrow keys as long as user is not selecting a particular item. But this is not achievable when combobox is editable. Any suggestion to get rid of that.
    regards,
    Ranjan

    Huh?import java.awt.*;
    import javax.swing.*;
    public class Test3 extends JFrame {
      public Test3() {
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        Container content = getContentPane();
        JComboBox jcb = new JComboBox(new String[] {"One","Two","Three"});
        jcb.setEditable(true);
        content.add(jcb, BorderLayout.NORTH);
        setSize(100,100);
      public static void main(String[] args) { new Test3().setVisible(true); }
    }

  • My arrow keys and backspace no longer works in Sql Developer

    In the work sheet of Sql Developer it is not allowing me to use my arrow keys or backspace key, I can use these keys in the result section but not in the worksheet section. When I use the arrow key it scrolls the page but the cursor stays in the same spot. My scroll lock is not on as these functions work everywhere else. I have looked at short cut keys to see if I hit smoething but not finding anything. Any ideas?

    This is a known problem practically impossible to reproduce reliably.
    It was not reported on the latest releases of SQLDeveloper, so if you are on an old release you might consider switching to the latest one.
    The workaround for the problem in older version requires you to load preset values for the shortcut in
    Tools -> Preferences -> Accelerators -> Load PresetMind this will erase all your user defined shortcut keys

  • Text and layer position problems

    Hi, I am creating a webpage and I have installed a background
    image. for which I have centred and all is fine.
    I am now using layers to add text so I can place the text
    wherever I want.
    But when I save and view in IE and Firefox the text is not in
    the correct position. I have tried a number of things to solve this
    all to no avail.
    Please can someone help me.
    The text I have so far is:

    > I am now using layers to add text so I can place the
    text wherever I want.
    This is number 4 in the top 5 mistakes someone can make in
    building their
    pages. Here's why -
    http://www.great-web-sights.com/g_layer-overlap.asp
    It will help you to understand the difference between
    absolute positioning
    and centering content. Your layer is absolutely positioned,
    and your
    background is centering. That's never going to work the way
    you want....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "YNWA4EVA" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hi, I am creating a webpage and I have installed a
    background image. for
    > which
    > I have centred and all is fine.
    >
    > I am now using layers to add text so I can place the
    text wherever I want.
    >
    > But when I save and view in IE and Firefox the text is
    not in the correct
    > position. I have tried a number of things to solve this
    all to no avail.
    >
    > Please can someone help me.
    >
    > The text I have so far is:
    >
    >
    >
    > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN"
    > "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    > <html xmlns="
    http://www.w3.org/1999/xhtml">
    > <head>
    > <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    > <title>Liverpool Hope University - IT Deanery Book
    Sales</title>
    >
    > <style type="text/css">
    > <!--
    > body {
    > background-image: url(template.png);
    > background-repeat: no-repeat;
    > background-attachment: fixed;
    > background-position:center center;
    > margin-top:0;
    > margin-bottom:0;
    > margin-left:0;margin-right:0;
    >
    > }
    > #Layer3 {
    > position:absolute;
    > width:200px;
    > height:115px;
    > z-index:1;
    > left: 334px;
    > top: 115px;
    > }
    > -->
    > </style></head>
    >
    > <body>
    > <div id="Layer3">
    > <p>I want my text here </p>
    > </div>
    > </body>
    > </html>
    >

  • When will it be possible to navigate in the Calendar's big and small day panes with the arrow keys and PgUp/Dwn?

    Since I have difficulties working with the mouse (as a lot of people have), it would be nice if I can use the keyboard for as much as possible when working with applications on the computer. I frequently use Tab, Ctrl-Tab, PgUp/Dwn, Alt-<menu-item or key-to-accomplish-something> etc. Lightning could be more user friendly in that respect.
    This way of designing the user interface should, in my opinion, be applied as much as possible. And it shouldn't interfere with - but complement - other ways of navigating in applications, such as by the mouse, scroll bars etc.

    When a developer or several find the time to fix it. You can keep an eye on https://bugzilla.mozilla.org/show_bug.cgi?id=472448 and https://bugzilla.mozilla.org/show_bug.cgi?id=431076 for current status.

  • My arrow keys start start repeating without touching them and a string of periods are displayed in an entry field (e.g. credential to log in). Or if I type an arrow key, they immediately start repeating in perpituity. It's like a ghost in the machine.

    After the last OS X update (a security update I think), two things happened:
    my iMac would not boot (gray screen) or if it did boot, the mouse wasn't recognized and I couldn't mouse to the PW field to log in - nor did tabbing or any keystrokes get me there. I fixed this by unpludding peripherals (back up drive), but know I can't boot unless they are unplugged and it makes using TimeMachine a pain in the arse.
    My wired, extended mac keyboard now types without me, primarily, as far as I can tell, the arrow key(s). .................................... So, for example, those periods you see here are because I touched the right arrow key and off it went until I pressed ESC. Also, sometimes they just start going off on their own. For example, I can be in sleep mode and all of a sudden the screen will wake and the PW field will start filling with periods, just like you see above. ***?
    Seriously, you would think that apple would have a response for this. I have searched their support site and NOTHING. I've seen some older threads on reseting certain things. Does anyone have any summer 2013 updates?
    Thank You!!!

    kaeandcolesmon,
    If you open the recovery drive (partition) it should only have a single folder (Recovery).
    To make sure that your not saving restore points to that drive.
    See:
    Start, Control Panel, System, System Protection tab. Make sure the D drive partition is set to OFF so that it does not save there.
    I am a volunteer. I am not an HP employee.
    To say THANK YOU, press the "thumbs up symbol" to render a KUDO. Please click Accept as Solution, if your problem is solved. You can render both Solution and KUDO.
    The Law of Effect states that positive reinforcement increases the probability of a behavior being repeated. (B.F.Skinner). You toss me KUDO and/or Solution, and I perform better.
    (2) HP DV7t i7 3160QM 2.3Ghz 8GB
    HP m9200t E8400,Win7 Pro 32 bit. 4GB RAM, ASUS 550Ti 2GB, Rosewill 630W. 1T HD SATA 3Gb/s
    Custom Asus P8P67, I7-2600k, 16GB RAM, WIN7 Pro 64bit, EVGA GTX660 2GB, 750W OCZ, 1T HD SATA 6Gb/s
    Custom Asus P8Z77, I7-3770k, 16GB RAM, WIN7 Pro 64bit, EVGA GTX670 2GB, 750W OCZ, 1T HD SATA 6Gb/s
    Both Customs use Rosewill Blackhawk case.
    Printer -- HP OfficeJet Pro 8600 Plus

  • My up and down arrows as well as page up and page down no longer work properly only when using firefox. Page up and down function more like the "home" and "end" keys as do the arrow keys.

    Honestly I'm not sure if these began just after I updated FF to the current release, but it's been happening for at least 2 weeks. The arrow keys and page up and page down keys all work as if I'm pressing the 'home' and 'end' keys on my keyboard. This is only when using FF. Please contact me if you need more clarification. Thanks in advance!

    Sounds that you have switched on caret browsing.
    * http://kb.mozillazine.org/accessibility.browsewithcaret
    You can press press F7 (on Mac: fn + F7) to toggle caret browsing on/off.
    * Tools > Options > Advanced : General: Accessibility: [ ] "Always use the cursor keys to navigate within pages"
    * http://kb.mozillazine.org/Scrolling_with_arrow_keys_no_longer_works
    * http://kb.mozillazine.org/Accessibility_features_of_Firefox

  • When adding bookmarks and trying to changing its name, Firefox won't allow using the mouse; Firefox will only allow using the arrow keys (MAC OS 10.5, Firefox 3.6.8)

    When adding a bookmark sometimes the web page name is too long. I used to be able to use my mouse, highlight the letters/words that I don't want, then use delete to truncate the desired bookmark name. Since the latest update/upgrade, Firefox won't let me use the mouse to click anywhere in the popup box. I can only use the arrow keys and the delete key.
    Nothing other than updates (using Mac Software Update and Firefox Update) has been done to this computer (it's a 2002 Power Mac G4-Dual 1.25GHz).

    When adding a bookmark sometimes the web page name is too long. I used to be able to use my mouse, highlight the letters/words that I don't want, then use delete to truncate the desired bookmark name. Since the latest update/upgrade, Firefox won't let me use the mouse to click anywhere in the popup box. I can only use the arrow keys and the delete key.
    Nothing other than updates (using Mac Software Update and Firefox Update) has been done to this computer (it's a 2002 Power Mac G4-Dual 1.25GHz).

  • Keys will not work; comma key and and arrow keys..

    What can I do to make my arrow keys and comma keys work? I can not find any valuable material to help me with this.
    Any help will be much appreciated---Rossman

    Keyboard problems of this kind often occur because of liquid spills and the like , Rossman18. Any other people who have used this computer with a glass in their hand, or passing incontinent cats or mice? MBPs have liquid detection sensors built in, so Apple should be able to tell you if you aren't aware of such events yourself.
    Look, I know I'm being a bit cheeky and dismissive in the above, but assuming you are still under warranty and the problem wasn't caused by a liquid spill or other such physical damage, then just take it to Apple and get them to fix it for free. The hardware warranty last twelve months. We are all busy, but if the problem has been around for that long, and you still haven't had time to get it fixed, you can't need to use a comma or an arrow key very often!
    Cheers
    Rod

Maybe you are looking for

  • External Hard Drive is not being detected

    I recently purchased an iomega 1.5TB external hard drive and I cannot detect it anywhere in my computer. I can hear the device hum and start running once I connect the two, so I'm assuming there is enough power, but the computer can't see it. Please

  • Don't use the Software Update in Preferences - download the Combo Updater !

    Software Update failed and I had to archive/install back to 10.5 - just download the Combo Updater and you should be ok.

  • How to drop datafiles in oracle 10g r2

    Hi all, Db :oracle 10.2.0.3 os:solaris 10 tablespace name: jllp_tabs01 datafile: /ora/data001/jllp/jllp_tbs01_tbl_1.dbf /ora/data001/jllp/jllp_tbs01_tbl_2.dbf /ora/data001/jllp/jllp_tbs01_tbl_3.dbf /ora/data001/jllp/jllp_tbs01_tbl_4.dbf its has consi

  • Change text field based on dropdown

    Hello, I'm new to LiveCycle and am having trouble getting a textfield to change when I select different options in a drop-down menu.  I used the following script (tried using exit and calculate events also): Still not working.  What am I doing wrong?

  • Long short short beep code then no boot when trying to reboot???

    I recently ran the recovery CD to get it back to factory condition and the same problems persisted (that I'll describe below) which indicates to me that there's some hardware issue. I've had the same issues before and after recovery was run. When I s