BUG: Using down/up/R/L arrows moves element by 3000px!

Lately been having a problem with Edge Animate occasionally deciding that when I click one of the movement arrows, rather than moving an element 1px (or 10px if I hold the shift key), it moves it thousands of pixels. Restarting the application hasn't helped. It's doing that with every element on the project.
Running Windows 8.1 on a Lenovo with i7 quad-core processor, so there shoulndn't be any issues with the sytem.

HI,
I am unable to reproduce this issue.
Is there anything in particular you did after which you started facing this issue.
Can you clear your preference once and check if this issue is still reproducible.
Steps to clear prefernce : http://helpx.adobe.com/edge-animate/kb/restore-preferences-edge-animate.html

Similar Messages

  • When I use my remote to start a movie on iTV it starts a different movie on my MacBook, plus if I use the arrow up or down on my remote it adjusts the sound on my MacBook.  How do I stop this?

    I am using 2nd generation Apple TV and have a MacBook Pro.  When I use my remote to start a movie on iTV a different movie starts on my MacBook.  Also when I use the up and down arrows on the remote it adjusts the sound on my MacBook.  Is this something I have to live with, or is there something I can do so the remote control doesn't affect my laptop?

    Well, I feel sheepish.  I found the answer.  Thank you Apple Community!!!

  • The keyboard on my macbook air has stopped working. It was fine at lunch time now the up and down arrows move the page and the left and right take me into dashboard and out. The keys beep if pressed the only way to type is to use bluetooth keyboard.

    The keyboard on my macbook air has stopped working. It was fine at lunch time now the up and down arrows move the page and the left and right take me into dashboard and out. The keys beep if pressed the only way to type is to use bluetooth keyboard.please help

    "If none of the keys work, your computer may be showing a low battery alert that you can’t see.
    Connect your computer to an electric outlet or an external keyboard to see the alert".
    http://support.apple.com/kb/PH10680
    http://support.apple.com/kb/ts1381
    Reset PRAM.  http://support.apple.com/kb/PH4405
    Reset SMC.     http://support.apple.com/kb/HT3964
    Choose the method for:
    "Resetting SMC on portables with a battery you should not remove on your own".
    Best.

  • I understand that when using Numbers/Pages - an up-arrow on a document means that the file is still to be uploaded to the cloud, what does a down arrow mean? It seems the document can't be accessed until the arrow clears.

    I understand that when using Numbers/Pages - an up-arrow on a document means that the file is still to be uploaded to the cloud, what does a down arrow mean? It seems the document can't be accessed until the arrow clears.

    I believe what it's supposed to mean is that some changes were made to the document on another device, and those changes were saved back to the cloud.  Now you've opened iWork on a different device to access that document - it compares the document you've got locally with the one in the could, sees some recent changes and downloads them.
    What gets me is why this sometimes happens even when I've not made any changes to a document from another device.

  • HT3775 I just upgraded my ipad to 6.0.  I can no longer expand my audio files so that I can move forwards and backwards.  I used to get a diagonal arrow to enlarge the screen and then have a bar that I can move to navigate. Can you help?

    I just upgraded my ipad to 6.0.  I can no longer expand my audio files so that I can move forwards and backwards.  I used to get a diagonal arrow to enlarge the screen and then have a bar that I can move to navigate. Can you help?

    Hi James,
    I am listening to embedded training files on the Quick Time player (I think). They cannot be copied to protect the information.  You only have the option of listening.   I used to be able to click on the Q in the audio strip and it would provide a diagonal arrow and this would allow me to expand the bar to a full screen. I then had the bar which would allow me to navigate in case I wanted to listen again or in case I wanted to move forward.  After my upgrade, I can no longer expand the strip to a full screen with the adjuster.  Now I have not chance to take a break in listening to these audios and most of them are at least an hour long.  Thanks for your help.

  • I'm having trouble using my track pad. The arrow moves but I can't click on anything.

    I'm having trouble using my track pad. The arrow moves but I can't click on anything.

    Oh thank you for posting on how to enter safe browsing! I had tried to disable add-ons, but couldn't make anything click to do so. So frustrating!
    Anyway, after putting on the safe browsing, it worked *immediately*, so clearly the add-ons were the issue! I deleted a bunch I don't use anyway, and it's been working fine for hours.
    Thank you!!

  • The address bar in firefox will not let me use down arrow in menu boxes on any website or in the url bar

    The address bar in firefox will not let me use down arrow in menu boxes or in the url bar. Usually if I click on the down arrow in the url bar, my most common websites pop up... now it won't show me them...
    It is also happening in any website I use via Fire fox. I don't have this problem with windows or Internet Explorer. Even the down arrow box below this.. asking "this happened" won't let me see the choices.. it just flashes by.

    Make sure that the Location Bar is not set to "Nothing": Tools > Options > Privacy > Location Bar: When using the location bar, suggest: History,Bookmarks,History and Bookmarks
    See [[Smart Location Bar]]

  • How to use touch start, touch move, mouse down, mouse move to move elements in edge

    How to use touch move and mouse move events events to move elements n edge?

    Here is my code for a vertical carousel for mouse and touch interaction.  it's not perfect, but it does the job.  change from Y to X for horizontal path.  past at Stage.compositionready event.
    // these are my elemens
    var temp1 = sym.getSymbol("vmenu2").$("tvchannels").position().top;
    var temp2 = sym.getSymbol("vmenu2").$("videosondemand").position().top;
    var temp3 = sym.getSymbol("vmenu2").$("radiochannels").position().top;
    var temp4 = sym.getSymbol("vmenu2").$("music2").position().top;
    var temp5 = sym.getSymbol("vmenu2").$("info").position().top;
    var temp6 = sym.getSymbol("vmenu2").$("vrtour").position().top;
    var temp7 = sym.getSymbol("vmenu2").$("weather").position().top;
    var temp8 = sym.getSymbol("vmenu2").$("clock").position().top;
    var temp9 = sym.getSymbol("vmenu2").$("settings").position().top;
    var tempa = sym.getSymbol("vmenu2").$("tvchannels").height();
    var tempb = 200;
    var tempdiff = temp2 - temp1;
    var y1=0;
    var y2=0;
    var t = 0;
    $(document).bind("touchstart", function(e) { 
      e.preventDefault(); 
      y1 = e.originalEvent.touches[0].pageY;
      temp1 = sym.getSymbol("vmenu2").$("tvchannels").position().top;
      temp2 = sym.getSymbol("vmenu2").$("videosondemand").position().top;
      temp3 = sym.getSymbol("vmenu2").$("radiochannels").position().top;
      temp4 = sym.getSymbol("vmenu2").$("music2").position().top;
      temp5 = sym.getSymbol("vmenu2").$("info").position().top;
      temp6 = sym.getSymbol("vmenu2").$("vrtour").position().top;
      temp7 = sym.getSymbol("vmenu2").$("weather").position().top;
      temp8 = sym.getSymbol("vmenu2").$("clock").position().top;
      temp9 = sym.getSymbol("vmenu2").$("settings").position().top;
      t = 1;
    $(document).bind("touchend", function(e) { 
      e.preventDefault(); 
      t = 0;
    $(document).bind("touchmove", function(e) { 
      e.preventDefault(); 
      //var x = e.originalEvent.touches[0].pageX;
      y2 = e.originalEvent.touches[0].pageY;
      //sym.getSymbol("vmenu2").$("tvchannels").css({top: y, left: x}); 
      if (t==1) {
        var y = y2 - y1; 
        var top1 = temp1 + y + tempdiff;
        var top2 = temp2 + y + tempdiff;
        var top3 = temp3 + y + tempdiff;
        var top4 = temp4 + y + tempdiff;
        var top5 = temp5 + y + tempdiff;
        var top6 = temp6 + y + tempdiff;
        var top7 = temp7 + y + tempdiff;
        var top8 = temp8 + y + tempdiff;
        var top9 = temp9 + y + tempdiff;
        if (top1<10) {
          if (top9>250) {
            sym.getSymbol("vmenu2").$("tvchannels").css({top: top1}); 
            sym.getSymbol("vmenu2").$("videosondemand").css(); 
            sym.getSymbol("vmenu2").$("radiochannels").css();
            sym.getSymbol("vmenu2").$("music2").css();
            sym.getSymbol("vmenu2").$("info").css();
            sym.getSymbol("vmenu2").$("vrtour").css();
            sym.getSymbol("vmenu2").$("weather").css();
            sym.getSymbol("vmenu2").$("clock").css();
            sym.getSymbol("vmenu2").$("settings").css();
    var d = 0;
    $(document).bind("mousedown", function(e) { 
      e.preventDefault(); 
      y1 = e.pageY;
      temp1 = sym.getSymbol("vmenu2").$("tvchannels").position().top;
      temp2 = sym.getSymbol("vmenu2").$("videosondemand").position().top;
      temp3 = sym.getSymbol("vmenu2").$("radiochannels").position().top;
      temp4 = sym.getSymbol("vmenu2").$("music2").position().top;
      temp5 = sym.getSymbol("vmenu2").$("info").position().top;
      temp6 = sym.getSymbol("vmenu2").$("vrtour").position().top;
      temp7 = sym.getSymbol("vmenu2").$("weather").position().top;
      temp8 = sym.getSymbol("vmenu2").$("clock").position().top;
      temp9 = sym.getSymbol("vmenu2").$("settings").position().top;
      d = 1;
    $(document).bind("mouseup", function(e) { 
      e.preventDefault(); 
      d = 0;
    $(document).bind("mousemove", function(e) { 
      e.preventDefault(); 
      //var x = e.originalEvent.touches[0].pageX;
      y2 = e.pageY;
      //sym.getSymbol("vmenu2").$("tvchannels").css({top: y, left: x}); 
      if (d==1) {
        var y = y2 - y1; 
        var top1 = temp1 + y + tempdiff;
        var top2 = temp2 + y + tempdiff;
        var top3 = temp3 + y + tempdiff;
        var top4 = temp4 + y + tempdiff;
        var top5 = temp5 + y + tempdiff;
        var top6 = temp6 + y + tempdiff;
        var top7 = temp7 + y + tempdiff;
        var top8 = temp8 + y + tempdiff;
        var top9 = temp9 + y + tempdiff;
        if (top1<10) {
          if (top9>250) {
            sym.getSymbol("vmenu2").$("tvchannels").css({top: top1}); 
            sym.getSymbol("vmenu2").$("videosondemand").css(); 
            sym.getSymbol("vmenu2").$("radiochannels").css();
            sym.getSymbol("vmenu2").$("music2").css();
            sym.getSymbol("vmenu2").$("info").css();
            sym.getSymbol("vmenu2").$("vrtour").css();
            sym.getSymbol("vmenu2").$("weather").css();
            sym.getSymbol("vmenu2").$("clock").css();
            sym.getSymbol("vmenu2").$("settings").css();

  • Desktop Froze. Arrow moves but does not open anything.

    None of my folders are appearing on my desktop and when I try to click on icons arrow moves but nothing opens. S.O.S. and THANK YOU!! While I could give up the computer my fear true fear is losing everything on it.
    *I have not backed up all folders, photos, etc. I have tried unplugging everything and restarting. I have tried command/option pr

    Use the Force Quit option to Relaunch the Finder.  If that does not work, try the following: 
    Run OS Recovery
    Disconnect all devices from your computer except for the keyboard & mouse.
    Boot up from your computer by holding down the command+r keys.  This will take you to the recovery drive.
    Select Disk Utility & hit Return. 
    In Disk Utility select the HD on the left & click on Repair Disk (bottom right).
    When you reach the desktop after doing the above, repair permissions & restart your computer.
    ===============
    NOTE:  The above instructions are for certain OS'es.  You provided no details about your system.  Hard to help regarding troubleshooting.  Care to share which OS you are using?
    When posting in Apple Communties/Forums/Message Boards.......It would help us to know which Mac model you have, which OS & version you're using, how much RAM, etc. You can have this info displayed on the bottom of every post by completing your system profile and filling in the information asked for.
    Click on your name Welcome "your name."
    Click on your name link
    Click on the BIO tab.  Scroll down to the bottom till you see "My Products."  This is the section where you can edit your profile.
    CLICKY CLICK-----> Help us to help you on these forums

  • Arrow Movements In Flash CS4

    Hi all I just made a new Flash project.
    It lets you move a Cube, with the arrow keys on the keyboard.
    This is the code.
    Code:
    function hearKey(yourEvent:KeyboardEvent):void{
         if (yourEvent.keyCode==Keyboard.RIGHT){
              cube_mc.x+=5
         if (yourEvent.keyCode==Keyboard.LEFT){
              cube_mc.x-=5
         if (yourEvent.keyCode==Keyboard.UP){
              cube_mc.y-=5
         if (yourEvent.keyCode==Keyboard.DOWN){
              cube_mc.y+=5
    stage.addEventListener(KeyboardEvent.KEY_DOWN, hearKey);
    It works perfectly fine, except for example:
    I press down the down key...
    it moves down...(good so far)
    I keep pressing the down key down and also press the left key down...
    now it moves left...(not so good, i want it to move both left and down, how do i do that?)
    now i release the left key but am still on the down key....
    nothing happens....(bad, i want it to then continue going down)
    I hope someone understands what I'm asking.
    Thank you for the reply in advance

    While I can't say I understand what drives the precedence of events, when you process a key down event, I reckon only the last keydown event holds as the one that gets passed to the function.  So what you probably need to do is use these events to establish other controls for the movement, keeping track of when each is active versus not.... here's one possible approach...
    var goDown:Boolean = false;
    var goUp:Boolean = false;
    var goLeft:Boolean = false;
    var goRight:Boolean = false;
    function hearKeyDown(yourEvent:KeyboardEvent):void{    
    if (yourEvent.keyCode==Keyboard.RIGHT){ goRight = true; }   
    if (yourEvent.keyCode==Keyboard.LEFT){ goLeft = true; }      
    if (yourEvent.keyCode==Keyboard.UP){ goUp = true; } 
    if (yourEvent.keyCode==Keyboard.DOWN){ goDown = true; }
    function hearKeyUp(yourEvent:KeyboardEvent):void{    
    if (yourEvent.keyCode==Keyboard.RIGHT){ goRight = false; }   
    if (yourEvent.keyCode==Keyboard.LEFT){ goLeft = false; }      
    if (yourEvent.keyCode==Keyboard.UP){ goUp = false; } 
    if (yourEvent.keyCode==Keyboard.DOWN){ goDown = false; }     
    function moveCube(evt:Event):void {
    if (goRight){ cube_mc.x+=5 };   
    if (goLeft){ cube_mc.x-=5 };  
    if (goUp){ cube_mc.y-=5 };  
    if (goDown){ cube_mc.y+=5 };
    stage.addEventListener(KeyboardEvent.KEY_DOWN, hearKeyDown);
    stage.addEventListener(KeyboardEvent.KEY_UP, hearKeyUp);
    stage.addEventListener(Event.ENTER_FRAME, moveCube);

  • I can not use the tab key to move to the next field or use the shift and tab to move to the prior field in forms.

    After updating to 7.0.1 I can not always use the tab key to move to the next field or use the shift and tab to move to the prior field in forms. This always worked in previous versions and it's much needed for my type of work. Does anyone know of a setting to activate this? If not can the Firefox developers work on this issue (please). I love Firefox but desperately need this feature to work correctly. Thanks!

    I tried in safe mode and the tab key worked just fine. I'm not sure about all web forms I've only recently updated to 7.0. The wen form I was using was for appraisal purposes and it has multiple data fields to fill in and also drop down menus to select from. Might I always have to use Firefox in safe mode to be able to utilize the tab between field feature? Thanks for your help!

  • Multi cam shoot using  P2 cards. How to move clis to timecode positions

    multi cam shoot using P2 cards. How to move clis to timecode positions. We were using free TC. I want to a large # of clips from both cams. and have them move to the correct TC position on the timline. In Nuendo eith audio u hit apple a or ctrl a right click move to orgin. Avid will take care of it for u. FCP???

    If you read the "Apple Pro Training Sereis; Final Cut Pro 5" book, it's very easy. You can sync the clips manually by setting In or Out points, specifying TC, or using one of the two Aux TC fields. Since this is the first, and most basic step in doing Multiclip editing, I'd suggest you get the book, or read the appropriate section of the User Manual. I don't think anyone wants to post a full "how to" article in a forum.
    It can be done, you're clips have to all have been recorded with synced TC, or they simply won't sync up in any NLE. Read the book. Cause even if I did have the time to explain FCP's Multiclip editing in this forum, you'd still have questions that are in the book.
    If you actually walk through the first steps of building a Multiclip to edit, it's blatatnly obvious in the first step. I'd give it a try first.
    Problem is the DVCPRO-HD codec is going to require a higher end Mac with tons of RAM and either RAID, or internal drives to do a DVCPRO-HD Multiclip, as DVCPRO-HD (P2) is a pretty high bandwidth codec. I use it daily, I know, it takes horsepower to do.

  • How do I use airplay to stream a DVD movie playing in my computer to display on my TV?

    How do I use airplay to stream a DVD movie playing in my computer to display on my TV?
    I have a 2nd generation Apple TV and computer is a 2011 Macbook Pro. Processor  2.8 GHz Intel Core i7. Memory  4 GB 1333 MHz DDR3. Graphics  Intel HD Graphics 3000 384 MB. Software  Mac OS X Lion 10.7.5 (11G63). Storage: about 500GB free out of 750GB.
    I have a DVD player within my computer. Trying to play a movie from my computer to display onto my TV using my Apple TV airplay. But the airplay icon is not showing or giving the option to play a movie onto my TV.
    I've installed all software updates and still I'm not able to have this functionality.
    I assume this functionality exists where I can play a DVD on my computer, but watch it on my TV using my Apple TV, correct?
    Thanks for your help solving this puzzle.

    Welcome to the Apple Community.
    AirPlay Mirroring requires a second-generation Apple TV or later, OS X 10.8 or better and is supported on the following Mac models: iMac (Mid 2011 or newer), Mac mini (Mid 2011 or newer), MacBook Air (Mid 2011 or newer), and MacBook Pro (Early 2011 or newer). You can see which Mac you have and which operating system you are using by selecting 'About this Mac' from the Apple menu in the top left corner of your Mac and selecting the 'More Info' button.
    AirPlay Mirroring from a Mac also requires a fairly robust network.
    You may find a third party product that you can use instead of AirPlay.

  • How to use a second monitor in I movie 11

    How can I use a second monitor in i movie.  I could use it under preference in imovie 9, but in the new imovie 11 i can't find any advanced  prefernces let alone how to use a second monitor

    I too got the same. Both monitors went portrait. Then I unchecked the 'Mirror Display' option in the Arrangment tab of iMac display and voila. Got what I wanted.

  • Can you use apple tv to play a movie on your tv (say for kids to watch) and use your mac book at the same time to browse the internet ???

    Using a mac book pro !
    Can you use apple tv to play a movie on your tv (say for kids to watch) and use your mac book at the same time to browse the internet ???

    Good question bigboggerchoot.  I also would like to know the answer to this.

Maybe you are looking for

  • Display as Key and Name Not working properly after upgrade to Bi7.0

    Hi Bw Guru's Recently we have upgrade our BW 3.5 system to BI 7.0 (Only system upgrade not applications ). after the upgrade we are facing lot of issues with Bex Analyzer. The following are some of the issues 1) In BW3.5 after the execution of Workbo

  • FBL5N t code and BSEG table is showing wrong contract number

    Hi, The proces flow is contract number>sales order>DMR-->Invoice Now when I am checking the VBFA table it's showing correct contract number against invoices but FBL5N t code and BSEG table are showing wrong contract numbers. Why FBL5N and BSEG table

  • Authorization object

    Dear all, I need to know any tcode or report which can tell about the authorization object for one user, i mean List of all authorization objects executable for users. i checked in tcode suim, that can tell me that user authorization for roles, tcode

  • IPod classic and Uconnect

    I have recently purchased a 2014 Dodge Ram. When I plug my iPod classic into the USB port, it plays - but it sounds like Alvin and the Chipmunks!  Has anyone else had this problem? The dealer says an iPod classic is not supported.  I'm playing though

  • Oracle Insert Query

    i am writing a Oracle query in which i am inserting a row and the datatypes of columns are String , Integer and Date . i am fetching values from JTable cell entered by the user . ny suggestions ? .