Delete key "pastes" text in instead of deleting it.

When i am trying to compose something in a word processing document, I cannot delete or backspace. If I hit the delete or return key, it automatically "pastes" the last thing I have copied. The only way I can correct an error is to high light the error,go up under "edit" and choose "cut". This is taking too long! Help!

What word processing program are you using?
Or you could try resetting the keyboard defaults on your computer:
System Preferences > Keyboard & Mouse > Keyboard Shortcuts > Restore Defaults
This will wipe out any special keyboard settings that you manually created back to the default settings.

Similar Messages

  • TS2755 how do i delete all past text messages

    when i go to the search i phone all messages i have sent or recieved are there i want these off my phone is there a way to delete these and also contacts from a deleted face book page dont want these there either

    this is stored in a cache memory in the phone and you can only get rid of it by restoring the phone as new and all your data/settings will be lost.  the memory is eventually overwritten so I suggest you just ignore it

  • I bought this very nice iMac. The first time I ever use a Apple product. Can someone please tell me where the delete key is on the keyboard. I cannot think for one moment that Apple did not provide for such a key. Please help.

    I bought this very nice iMac. The first time I ever use a Apple product. Can someone please tell me where the delete key is on the keyboard. I cannot think for one moment that Apple did not provide for such a key. Please help.

    The delete key does a backward delete because it is the natural way to delete while typing. May not be to you and the millions of youngsters who grew up with windows computers. When you are typing and want to delete that which you just typed you are already at the end and you delete back to where you want to re-type. When you go back to a document and want to delete a selection, you have to go to the end of the selection instead of the beginning. it's just the way its always been done on macs. it takes some getting use to.
    If you select text to be deleted with your mouse then the delete key deletes the selected text. same for either delete key method.
    It is not convenient when you tab to fields in a form. That why fn-delete does a forward delete.
    Macs have a couple of keyboards. The small "wireless keyboard" only has the (backward) delete (fn-delete forward). The larger "Apple Keyboard with Numeric Keypad" has both a Delete (backwards) key beside the = abd it has the "delete >" key in the groups with fn, home, end, Pg up and Pg dn. This keyboard is best for users who have switched from windows or are familiar with the windows forward delete.

  • Keyboard "Delete" Key

    Hi eveyone, how are all of you? I have a little problem. I am using Keyboard event to call a function i-e, when user press the Delete key, the selected object will be deleted. Now the problem is that when I press only Delete key, nothing happens but if I press "TAB+Delete", it works 100% fine.
    If am using condition "if(event.keyCode == 46)". I want it to work on pressing "Delete" key instead of "Tab+Delete".
    If anyone of you has any idea about this issue, please let me know .... I'll be really really thankfull to you.
    Thanks ...
    .:.WAHAB

    Hi there,
    This is quoted from here: http://livedocs.adobe.com/flex/3/html/help.html?content=events_11.html
    A common way to handle global key presses is to create a listener for the KeyboardEvent.KEY_DOWN or KeyboardEvent.KEY_UP
    event on the application. Listeners on the application container are
    triggered every time a key is pressed, regardless of where the focus is
    (as long as the focus is in the application on not in the browser
    controls or outside of the browser). Inside the handler, you can
    examine the key code or the character code using the charCode and keyCode properties of the KeyboardEvent class. 
    It works when you press TAB because TAB essentially gets a child from the display list and focuses on it. Once your application/object has focus ( because you pressed TAB ) the keyboard listener can react. If your application is out of focus then it won't react to any keyboard events.
    In case your object is selected and your application has focus and it's still not reacting then you could try using event.preventDefault(); to prevent default behavior; if that's not helping either then you need to recheck your code because the problem is in your code somewhere.
    With best regards,
    Barna Biro
    Blog: http://blog.wisebisoft.com

  • How to trap the Delete Key..

    Hi
    I have implemented key handler for a text area and I want to do something when the delete key is pressed, but somehow the delete key press event is never trapped.
    Any ideas?? Here is the code:
    text_area.addKeyListener(new KeyAdapter(){
    public void keyTyped(KeyEvent e){
    if(e.getKeyCode() == e.VK_DELETE){
    System.out.println("This was deltete");
    I checked in the debugger....this method is never invoked for the delete key.
    How do I trap the delete key event??
    Thank you for your time.

    I agree. Something like:
    String actionName = DefaultEditorKit.deletePrevCharAction;
    final Action deletePrevCharAction = textpane.getActionMap().get(actionName);
    Action myAction = new AbstractAction()
    public void actionPerformed(ActionEvent e)
    System.out.println("Pressing backspace...");
    deletePrevCharAction.actionPerformed(e);
    textpane.getActionMap().put(actionName, myAction);
    mrai3

  • How can I change the key to delete a message from the delete key to command-delete like it is in the finder?

    These new forums confuse me... Sorry.
    I often think I am typing in another window but I'm actually typing while Mail.app is selected.  When I discover this, I often (without really thinking) start whacking the delete key.  When I whack the delete key, of course, a message is moved to the trash.  So, without really thinking about it, I delete three to six messages.  Go ahead -- call me stupid.  But...
    If delete is not used to delete files in the Finder, then why is it used to delete files in Mail?
    One group suggested making customer keyboard macros.  Sounded like a plausible solution.  I could make a customer keyboard macro so that delete did nothing (or something benign) and make command-delete delete the message.  Alas, using the Apple => System Preferences => Keyboard => Keyboard Shortcuts => Application Shortcuts gave me no Joy because it won't let me do either of those.  When I try to enter either delete or command-delete into the "Keyboard Shortcut" box, it just beeps at me.
    Does anyone here have a suggestion?
    Thank you,
    pedz
    p.s.   I can get the deleted messages back using Undo (repeatedly) but I think that is new with Lion.  So life isn't tragic but it still is an interface that I'd like to change if I could.

    You can define your own custom keystrokes in System Preferences -> Keyboard.  I'm not 100% sure that this blocks the old keystroke, though, and am posting from my iPad and can't check that at the moment.

  • Instead of delete trigger rows deleted

    Hi All.
    Im using a few instead of triggers over a view. The view selects data from other tables and merges them together. This view essentially forms the parent of a few one2one relationships with other tables.
    However my application doesnt know its a view (im using hibernate orm framework) - so when I delete this object which is mapped to a view, I get an error saying that no records where deleted. Also, if i test in sqlplus, i get "0 rows deleted" in response to a delete - which of course is true, but i want it to say 1 or some number of my choice.
    How can i modify my "instead of delete" trigger so that the number for records deleted count returned to caller is 1, or some number i can define?
    Here is my current trigger...
    create or replace
    trigger product_view_delete_trigger
    instead of delete
    on product_view1
    for each row
    begin
    null;
    end;
    Thanks.

    In regards to why Im using a view - its discussed here...
    Crazy Union across 3 tables
    The view im using is not updatable - it uses a union. I use "instead of triggers" to trick my application into thinking its a real table which is insertable. And this works fine.
    Im having trouble tricking my application into think that the delete was successful, because the "instead of delete" trigger doesnt actually delete anything - which is what i wnat - but i want it to report back to the caller that a delete occurred.
    I want the SQL%ROWCOUNT to be set to 1 or whatever. Perhaps this is not hte variable, but im hoping there is some variable I can set which is used to report back to the client as to how many records were deleted.
    thx.

  • Delete key function reset required

    The delete key in Safari always returned to the previous page browsed. Now, for some reason, it only functions as a regular delete key and no longer moves back a page. This happened for, seemingly, no reason, I didn't reset anything. Any ideas how to reset the key so it becomes the "page-back" key it should be? I just hate having to move the arrow up to the corner all the time!
    I've done the obvious, reboots etc.
    Thanks.

    The delete key (called backspace on a PC) deletes to the left. If you want to delete to the right, hold down the function key (fn on the lower left corner) and delete.

  • Is there a substitute for the missing Delete key?

    I'm pretty unhappy with the new half bluetooth keyboard, probably because I have never been a laptop user. Big is better to me. One of the keys I am really missing is the delete key in the middle panel that deleted from the right rather than the left. I'm wondering if there is some kind of workaround to achieve that function without doing what I have been doing, i.e., moving the cursor all the way over to the right of what I want to delete and then using the remaining Delete key--a lot of trouble, I think.

    Keyboard Shortcuts

  • Delete key grayed out in DM

    Curve 8320
    T-Mobil
    4.5.0.81
    DM 4.7
    XP SP 3
    I am trying to delete D2G.  In  Desktop Manager/add&remove applications   if I select ‘Documents to Go’ in the list of applications thedelete button is grayed out. I am of the impression DataViz requests the oldapplication (and all modules) be removed from the device and the computer (Ican’t use the OTA option).  Theyrecommend to remove D2G from the device, let it reboot, then delete D2G from thecomputer. It doesn’t matter if D2G is removed from the device or not, when Iselect it in Desktop manager the delete key is grayed out.  The delete key is grayed out if Ichoose other applications too.
    Why is the delete key grayed out?  If I remove D2G from the device, how canI remove D2G from the computer, before I install the update? Can I delete it from thecomputer manually?
    Solved!
    Go to Solution.

    My discussions with BB this morning say that applications installed during a device OS upgrade can not be deleted individually. Let me say you can remove them from the device individually, but not DeskTop Manager. You have to delete the file installed via the .zip file downloaded with the device OS update via Windoze's add/delete programs control panel. BB support says it should have a name "BlackBerry Handheld device code v.XXX", but I could not find such an application to remove, only DeskTop Manager.   Talking to BB support they say the delete key is always grayed out.

  • "Complete" instead of "Delete" from calendar

    It would be great to be able to take a reminder of the active standby screen on my phone without deleting the appointment from my calendar.  I would like to have a record of the appointment in the phone and on OVI even though I have already completed the appointment or other activity.
    Bytes of storage space are not that expensive.

    In regards to why Im using a view - its discussed here...
    Crazy Union across 3 tables
    The view im using is not updatable - it uses a union. I use "instead of triggers" to trick my application into thinking its a real table which is insertable. And this works fine.
    Im having trouble tricking my application into think that the delete was successful, because the "instead of delete" trigger doesnt actually delete anything - which is what i wnat - but i want it to report back to the caller that a delete occurred.
    I want the SQL%ROWCOUNT to be set to 1 or whatever. Perhaps this is not hte variable, but im hoping there is some variable I can set which is used to report back to the client as to how many records were deleted.
    thx.

  • HT1171 I have the apple wireless key board.  There is only one delete key and it deletes all data to the  left side of the cursor.  Where is the delete function for deleting letters that are on the RIGHT side of the cursor?

    I have a new wireless apple keyboard. I can only delete items that are to the left of the cursor using the delete key.  What key do I use to delete items that are to the right side of the cursor?  I have only one delete key.
    My old apple wired keyboard has 2 delete keys that enabled me to easly delete data on either side of the cursor.
    Thanks

    Fn + Delete

  • Unable to copy & paste text in Godaddy email

    I've don't use Safari, but wasn't able to recreate the issue just now. But in Firefox, my primary browser, this has become a major issue over the last few months with using Godaddy webmail. It wasn't as noticeable an issue at first, but now it's with every email. I've also deleted all cookies and cache files in my history.
    I frequently use templates to compose new emails to clients. If I try to copy text from a template to paste into an email, none or only part of the text will actually paste. If I try to paste the text again, the same thing happens.
    Sometimes, if I try to paste text, a big white space will appear with only part of the text. Other times the text will copy in a completely random spot in the email, such as the very top or bottom.
    I've found that there are sometimes dead zones in the Compose Email window, and if I can space far enough away from that a bad spot, it'll then allow ALL the text I've copied to be pasted correctly. I will then try and delete all the extra space. Sometimes this works, other times it will then also delete the pasted text. This then seems to be some kind of formatting issue, but the Goddady Browser Tool says that there aren't any compatibility issues with the Firefox.
    This process is now doubling and tripling the time it takes to compose emails that I already have templates created for. Please help!!

    I've tried that also (that's mainly how I cut and paste), and it still happens. When I called godaddy and explained that it looked like a formatting issue, the rep said he'd never heard of this being an issue on their end.
    I then read online that others had similar issues using godaddy webmail with firefox.
    I've switched to safari for now, but I'd love to still be able to email from firefox.

  • Text won't stop deleting, delete key appears to get "stuck"

    Sorry if this is in the wrong topic, I have never used the support forums for any of the multitude of problems I have had with my Mac, but this one is severe and odd enough that I couldn't even find anyone else discussing it (although I'm sure someone is, but I tried many search key combinations on Google and only found unrelated things), so I decided to at least get it documented.
    I have had an issue that has happened at least 3 times I can remember (I am fairly certain it has happened more, closer to 7-8, those are just the times I am 100% confident about), although very spaced apart and infrequent, where my delete/backspace key seems to get "stuck". However, at least one time I can verify that I never even hit the key. Whatever text I currently have open immediately starts deleting at lightspeed, and I can do nothing to stop it. None of the other keys on my keyboard work, and though my mouse works, if I click somewhere else, it starts deleting the text there. When I force it to go to another window where there isn't an open text box, I get the general Mac error sound, and it repeats non-stop, and faster than I've ever heard it. I have to do a hard shut-down, although once it led to a kernal panic. When I have stopped whatever is happening before it panics though, when I restart, I don't receive any kind of error message, nor the message about OS X not having been shut down properly.
    Every single time it has happened when I was typing something that couldn't be saved, like a message on a forum, a private message on a site or an IM chat window. Sometimes I lost a half hour's worth of work or more.
    The first time it happened, I honestly thought someone had managed to hack into my computer, but another time I was using a physical modem and Airport was turned off, and when I ripped out the cord, it didn't stop.
    I have a MacBook Pro from 2007, running the most recent version of Tiger. I haven't had the money to upgrade. All security updates are up-to-date, with one exception: I have not upgraded to the most recent version of iTunes.
    Honestly, I currently am having and have been having a bunch of other severe issues with my Mac, so troubleshooting will be quite difficult as it's not at all impossible it's a result of one of my other problems. I also currently am dealing with some health problems that make me unable to try to find the root of the problem, specifically I have a problem with my hand and wrist that makes typing very difficult.
    If someone does recognize this issue and already knows why it might be happening, I'd appreciate the help. I'd also appreciate anyone letting me know how I can prevent it OR what to do when it begins and how to stop it. But I probably will be unable to go through a typical troubleshooting rundown.
    As I said, I just wanted this documented, and I also would like to know if anyone else has had this problem. I have never experienced an issue like this with any of my past computers, including Macs and PCs. I do know however that the key is NOT physically getting stuck - as in getting lodged down and continuing to be pressed. There is at least 1 time I can verify I never even hit the key (I wasn't typing anything at the time). I am fairly sure the problem is entirely unrelated to the actual delete key itself.
    I'll describe the symptoms one more time:
    At a random time, with no discernible warning, text contained in whatever text box I have open begins deleting itself. Several paragraphs disappear in a matter of seconds.
    Pressing escape or any other key on the keyboard does nothing. If I click to another area in the text, it will immediately begin deleting wherever I have placed the cursor. If I go to another window with text that can be edited, it begins deleting there. It does not delete in more than one place simultaneously.
    If I bring another window without any kind of "deletable" text to the front, one of the general Mac error sounds (I'm not sure which one it is) starts happening and repeats without stopping at a rate that could induce a seizure. To stop it all, the only thing I have found can be done is a hard shut-down. Another time it continued to end in a kernal panic. I wish I had the details of the error, but it was so long ago and I have no idea which panic is the right one in the logs.
    I have no way of knowing what programs were running at the time, as obviously that's not something I'm able to pay attention to when it happens, and it has happened so randomly and infrequently it's nothing I've been able to document. Since I have to restart to make it stop, I've then lost that info and I have no time to try to write it down or something beforehand.
    I have not had any similar issues that I know of (for instance, for the "g" key keeps repeating and won't stop typing "g's") and I've never experienced this on any past computer.
    Thanks for anyone who can help!
    If you aren't able to offer advice but have had this issue yourself, PLEASE let me know. I can't seem to find anyone who has experienced this particular problem.

    "Cleaning the keyboard is the first step in troubleshooting sticky/stuck keys."
    Okay, I guess I misunderstood, although I am still confused. You're saying that since the other user did an extensive clean of their keyboard and this did not solve the problem, it is "most likely" a hardware problem, correct? Wouldn't a thorough cleaning without any results show that it's probably not physically related to the keyboard?
    "The "delete" key may be defective or the cover you are using somehow is making the key stick. If you have ruled out the latter and everything else, your only other alternative is to take the MBP to your local Apple Store or AASP. The staff will check out your keyboard (free) to confirm if you are having a hardware problem. If you have AppleCare or ProCare, the repairs will be free. If not.................."
    Well, I had just said in my most recent post that it has now happened with other keys, and in my initial post that it happened at times when my hands were nowhere near the keyboard. It is not a defective delete key and the cover is not making the keys stick - it doesn't adhere to them and does not have any sticky substance on it of any kind. I am an experienced computer user, and I know my computer very well. While I am not a psychic that can always know what is causing a problem, I am able to discern with much accuracy what is NOT causing it.
    Also, I have significant health issues so getting to an Apple store would be a huge challenge for me. And although I have AppleCare any repairs won't be free. Due to some small physical damage my laptop obtained a few years ago, I have been completely refused almost all service that I paid over $300 for, even though the damage is completely superficial. After fighting this, I was told they WOULD repair my computer, however, they would also repair the physical damage despite my insisting NOT to; I had no choice in the matter and the cost would be a minimum of $1,500 (I also would not be informed the exact price until after and my credit card would be charged without my knowledge - I had to give them my credit card number and sign away their right to make any charges and when I requested being contacted before they charged me for the repairs I didn't want done, I was told they did not do that). My family is struggling to pay for my $5 medications.
    When my logic board died (that same issue that affected thousands of computer users), I had to print out Apple's report from their site, which stated that they would replace and repair them free of charge to ANY Mac owner with a computer that met certain qualifications (which mine did). When it happened, completely out of nowhere, I knew immediately that was the problem, yet still had to go through the insulting and idiotic "Is your computer plugged in?" list of things and a customer WITH AppleCare was being refused a service they'd offered to people WITHOUT AppleCare, for a known manufacturing defect that has occurred widely in nearly every brand of computer made.

  • Text cursor jumps back several words or lines when delete key is struck

    Have read many posts about jumping cursors, apparently both on screen and in text.  This problem relates strickly to text mode, and can occur in iMail, iChat, doing a Google Search in Safari, or literally anywhere I am entering text.  The incident most often occurs when I use the delete key to eliminate a duplicate letter.  For instance i typed "billl"  instead of "bill" and when I struck delete to eliminate the duplicated "l"  the cursor jumped back 10 spaces.   My fingers did not go near the track pad, or magic mouse.  Interesting enough when I typed "billl" in the previous line the cursor jumped to the capital M in iMail. 
    I just tried to double space to start this line, and the cursor jumped and deleted the " at the beginning of the first "billl"
    Sorry to be long winded, but since this is occurring in several apps, it would appear to be an operating system problem, or maybe something with the mouse driver.  Does anybody have any clues?
    Thanks,
    Wes

    Have not found a solution,  have spoken to Apple folks they thought it was the mouse, but after going through 2 new mouses I have temporarily given up.   Recented upgraded to Mountain Lion also, and still have the same problem 
    I have gotten in the habit of just watching what I am typing more closely so things don't get screwed up so much.   Now interesting enough,  I have no problem so far when typing in this box.   I am still trying to collect clues as to where the problem lies.  It does not seem to be consistent.  Most problem is in email, but sometimes it occurs in Pages too   as well as in Messenger.
    Wes

Maybe you are looking for

  • HT1338 mac mini late 2012 dosent updated 10.8.2

    I am triang to updated the mac mini to 10.8.2 they dont update

  • Question on MacPro Using VGA

    Hi. I have a MacPro1,1 and an older Sony LCD vga display that maxes out at 1280 x 1024. I just switched from a 5' vga cable to a 15' vga cable and have a marked decrease in picture quality. Here's my question: I'm using a pretty cheap 15' vga cable;

  • PPV calculation

    With regards to PPV calculation, what type of report is available in SAP? & also at standard u2013 should be able to run a report that ties back to PPV?

  • Enhance PO details screen

    We have a need to enhance the PO detail screen (supress buttons and add new columns). As I understand this is a webdynpro based screen. So do we need to use POWL for that? Thanks. Anuradha.

  • Unzip rar documents ?

    Does anyone help me ? I need to unzip Rar documents sent by a friend of mine and I don't know how to do ? Thank you !