Problem with Alt+Delete shortcut.

As you know Alt+Delete is used to fill the layer with the foreground colour, but sometimes it gives me this error: "Could not fill because the history state does not contain a corresponding layer" any ideas how to fix it?

What operating system and version of photoshop are you using?
Do you have the latest updates installed for your version of photoshop?
Help>Updates
Have you tried resetting the photoshop preferences?
http://forums.adobe.com/thread/375776?tstart=0
Do you ever get the error if you use Alt+Backspace (Opt+Delete) instead?

Similar Messages

  • Since updating to Firefox 4.0.1 I have a problem with the website shortcuts I have on on desktop.

    <blockquote>Locking duplicate thread.<br>
    Please continue here: [/questions/821825]</blockquote><br>
    Since updating to Firefox 4.0.1 I have a problem with the website shortcuts I have on on desktop. I have a few of these shortcut to website I use a lot. When I click on the short I get the message "windows cannot find [then the web address] make sure you typed the name correctly, then try again. To search for a file, click the Start button, and then click Search." I tried deleting the shortcut and setting it up again but still get the message.

    Try to redo the default browser and make another browser like IE the default browser and then let Firefox do it again.
    See:
    * http://kb.mozillazine.org/Default_browser
    * [[Setting Firefox as the default browser does not work]]

  • HT5137 I made a purchase with my debit card on The Simpson Tapped out game, And now my game won't open. It just kicks me out every time I click on it. How do I fix this problem with out deleting my app?

    I made a purchase with my debit card on The Simpson Tapped out game, And now my game won't open. It just kicks me out every time I click on it. How do I fix this problem with out deleting my app?

    Personally, I would never use a debit card online, for security reasons.  If your card gets hacked its your money that is stolen.  At least with a credit card it is the card providers money that is stolen.
    Anyway,  I would delete the app and re-install.  If you paid for the app in the first place you will be able to re-install free of charge.  Also, the app should allow the in-app purchase to happen again as it should recognise that you have already purchased it previously.
    Finally, it might be that the 3G doesnt have as much ram as more recent models of iphone and you may have applications running in the background that are preventing the app to function with the in-app purchase unless you shut down any apps eating all you memory that are running in the background.  Shut-down these apps (and the simpson tap out app) by exiting to your home screen and double-tapping the home button to show what apps are running in the background.  press and hold any of the open apps until it starts shaking.  close all the apps down.  exit then re-launch the app.
    good luck.

  • Problems with cascading delete with entities

    I have a problem with cascading delete. I have two entities, Notebook and Note. One instance of Notebook can have several instances of Note in a Collection< Note >. The two entities are joined with a join table notebook_note that have two columns, the PK from the table of Notebook and Note. Note is not aware of the relation.
    From the user interface some elements of the collection<Note> can be added or deleted. I want to delete an element of that collection and make it persisted on the DB.
    If I add some Note elements to the collection and then I EntityManager.merge(notebook) (see public void persistNotebook() code below), I have all them persisted on the DB.
    However, if I delete some preexisting Note elements, after the merge I found deleted only the corresponding rows from the join table notebook_note BUT the rows in table Note, that was belonging to the deleted instance of Notebook, are NOT removed.
    Till now I found a way to do that (see code UserBean below), but I think that there is a simpler and so better way to do that! I hope to receive some suggestions!!
    @Entity
    public class Notebook implements Serializable {
    private static final long serialVersionUID = 1L;
    private String userName;
    private Collection<Note> notes;
    public Notebook() {
    public Notebook(String userName) {
    this.userName = userName;
    notes = new ArrayList<Note>();
    @Id
    public String getUserName() {
    return userName;
    public void setUserName(String userName) {
    this.userName = userName;
    @OneToMany(cascade = {CascadeType.ALL}, fetch = FetchType.EAGER)
    public Collection<Note> getNotes() {
    return notes;
    public void setNotes(Collection<Note> notes) {
    this.notes = notes;
    @Entity
    public class Note implements Serializable {
    String note;
    public void setNote(String note) {
    this.note = note;
    public String getNote() {
    return note;
    @Stateful
    public class UserBean implements UserRemote {
    private static Logger log = Logger.getLogger(UserRemote.class);
    @PersistenceContext(unitName = "etourism-ejbPU")
    private EntityManager em;
    &hellip;&hellip;
    @TransactionAttribute(TransactionAttributeType.REQUIRES_NEW)
    public void persistNotebook() {
    NotebookDao notebookDao = new notebookDao(em);
    notebookDao.merge(notebook);
    em.flush();
    public void deleteNotebookNote (&hellip;.) {
    &hellip;..
    //noteFound is the note I want to delete from the Collection<Note>
    notebook.getEvents().remove(noteFound);
    persistNotebook(); //see method above
    *//I have also to explicitally delete the associated note!!!*
    *NoteDao noteDao = new NoteDao(em);*
    *noteDao.remove(noteDao.read(noteFound.getId()));*
    public void addNotebookNote(&hellip;..) {
    //add new note to the collection<Note> of the Notebook
    Note newNote = new Note(&hellip;);
    notebook.getNotes().add(newNote);
    persistNotebook();
    Where:
    public class NotebookDao extends JpaDao<Notebook, String> {
    &hellip;&hellip;
    public abstract class JpaDao<T, PK extends Serializable> implements IDao<T, PK> {
    &hellip;..
    public void remove(T entity) {
    getEntityManager().remove(entity);
    public void merge(T transientObject) {
    getEntityManager().merge(transientObject);
    }

    Thank you gimbal2 for your answer.
    You are right saying that a single Note could be bound to multiple notebooks, when using a join table, so the cascade cannot be done automatically by JPA.
    However, in my case, a single Note is bound only to one Notebook, so I would like to drop the join table (as you rightly suggest): however when I declare in the Notebook, a relation 1:N in this way ...
    @OneToMany(cascade = {CascadeType.ALL}, fetch = FetchType.EAGER)
    private Collection<Note> notes;
    ... the join table is automatically created during the deploy.
    Sorry, I am a beginner in EJB3. What kind of relational mapping annotation should I use to have a straight 1:N relationship that doesn't generate a join table?
    I think that it should be better to avoid to modify the relationship (es. cascade option) directly in the created db tables and let the logic be declared in the entity code definition: am I right?
    Waiting for your suggestion ...
    thank you very much
    Enzo
    Edited by: contini on May 22, 2009 5:37 AM

  • PROBLEM WITH ALT-V WHEN USING CROATIAN KEYBOARD

    Hi,
    When Typing ALT GR+V (@ sign) in Croatian Keyboard, all the text from clipboard is copied into the text box (as it is pressed CTRL+V) plus the @sign.
    There were some bugs filed long back regarding a similar issue for the German keyboard where the customer was using the AltGr key for special characters, same as in our case.
    Below is the list of those bugs:
    (1)     Bug 757614: GERMAN USERS CANNOT USE ALT-GR KEY TO GET SPECIAL CHARACTERS
    (2)     666925
    (3)     767865
    (4)     768658
    I have gone through the descriptions and mail chains mentioned in these bugs, and it seems that the issue was fixed in OJDK.
    Please go through the above mentioned bugs once to get more details.
    It seems that this is not ORMS issue. It seems to be an Oracle Forms or OJDK issue.
    Can someone please advise on this as why is this happening. We are using Oracle Forms 10g.
    Thanks and Regards,
    Ashwini Swaroop Pradhan

    Tom Gewecke wrote:
    w/ all the keyboards and language settings.
    What do you mean by that? The problem being talked about here is an inability to make French accented characters on a German keyboard. What is your problem exactly?
    I've posted here because I guess it may be the same bug.
    After upgrading I wasn't able to do special characters, including some accented vocals, like "ì", very common in italian language.
    Then I've added an english keyboard, removed the italian one and added it again, so the problem with missing accented vocals was solved.
    I still have the same problem with special consonants, like "z" and "c": if I hold my thumb on such letters, I have no options like, say, "ż" (such characters are very important for my field (linguistics) and if Apple won't solve this problem I'll be forced to look elsewhere).

  • I am having a problem with iTunes deleting my playlists since iTunes Radio came online. Help!

    First of all, I'm a music teacher and loyal to iTunes.  Last week I came in and turned on my computer and opened up iTunes. I keep my entire library on an external drive due to the volume of songs I have.  When I opened iTunes, it popped up with the iTunes Radio icon and started going through my preferences and playlist.  Next thing you know, iTunes is stuck (frozen).  I did a control-alt-delete and closed iTunes that way.  This happened about 4 times before I thought, well, maybe I don't have the most recent version of iTunes, so I downloaded the latest.  After I did this, ALL OF MY PLAYLISTS DISAPPEARED.  A music teachers worst nightmare. Years of sorting music into categories and lesson!  UGH!!!  Some of the CD's I had imported also disappeared.  So I did what any person would do.  I poked around trying to find where they had gone, to no avail, then I started all over again rebuilding my playlists. Anyway, things were running normally until yesterday.  I opened iTunes in the morning and it ran fine.  In the afternoon when I opened it again, the same thing happened all over again.  What should I do.  Is there a way to retrieve the playlists?  Can I disable the iTunes Radio?  This cannot happen again!!  Help, friends who are smarter than I! I'm about ready to convert to Google Music.  (I know.... I said the name which shall not be spoken.... sorry.)

    Hello MamaSnookie,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    iTunes: How to re-create your iTunes library and playlists
    http://support.apple.com/kb/ht1451
    Best of luck,
    Mario

  • Problem with ALT key display

    Hello,
    I am having an aesthetic problem with my q10 that i just got today. I was entering some contacts into my phone when I realized that the ALT key is activated whenever I add phone numbers. When I first got the phone the ALT key did not light up whenever I put contact numbers on my phone. I restarted, and set the phone to the factory settings but this will still not disapear.
    I am wondering if there is a way if I could the ALT key to not be showing while I put in contact numbers. It does not effect my phone, its just annoying to see something that didn't used to be there.
    Thanks

    Just to clarify, are you referring to Alt Space bar left click and drag for zoom?  If yes, then that needs 'Use GPU' enabled in Preferences > Performance.  So can you check that? It actually works with either Ctrl or Alt together with the space bar. Left mouse click and drag left and right to zoom in and out.
    If GPU is checked, can you try some different settings?
    Photoshop CC and CC 2014 GPU FAQ
    You should also make sure the video card driver is fully up to date, and from the card maker's web site.

  • Problem with ALT codes on Apple Wired Keyboard

    May I just note, I have posted this in the "Boot Camp" forum, but run the normal Windows 7 on my computer. I was unable to find a forum purely for Apple hardware.
    I am using a Apple Wired Keyboard (MB110B/B) -- British-bought -- on a Windows 7 PC, and I are having some issues with ALT codes. The array of symbols I have to type (pi, sigma, etc) becomes tiresome to insert via the Character Map (on Win7). Basically, entering "alt" (left handside) then 227 does not insert "π" but rather "Ò". alt + 228 (Σ) inserts õ
    I don't know if this problem is common for Apple keyboard users on Windows, but is there a way to alter this.
    Thanks, Jordan.

    For a third opinion, be cautious of using a dishwasher as the temperature can get pretty high. If the spill is on the 456 on the number pad, you can try holding the keyboard vertically, soak just that part in distilled water for several minutes to disolve the spill material. Run some denatured (rubbing) alcohol over the numpad, then dry with a hair dryer.
    You could also try to remove the key caps...slip dental floss under the key caps in two loops, one from the top one from the bottom. Pull the key caps off one at a time, the wipe the area clean...see if there is any material sticking that needs to be cleaned off.
    I do not know what keyboard you have or how it does the switching, but most keyboards today do not use mechanical switches. The switches are sealed capacitance switches so if you clean all the material from the keyboard it may work again.
    Or, if you don't feel like going to this much trouble, a visit to your friendly Apple Retailer to purchase a new one may be a good idea.

  • Problem with Alt Text output from thumbnail image of Lightbox widget

    I’m having a problem with the Lightbox widget not producing alternative text based on the image properties.  I’ve set ALT text for the image properties on both the larger Ligtbox image as well as the thumbnail.  But the HTML output from Muse does not include the ALT text on the thumbnail version of the image.  Here’s an example:
        <div class="popup_anchor">
           <div class="Thumb popup_element clearfix" id="u4409"><!-- group -->
            <a class="anchor_item grpelem" id="untitled"></a>
            <div class="grpelem" id="u4433"><!-- image -->
             <img id="u4433_img" src="/images/n0060292x292.jpg" alt="" width="292" height="292" />
    This may be a problem that came in a previous release of Muse.  I have a few older examples where ALT text is produced, but it’s no longer updated if I update the Image Properties.

    I'm seeing the same problem. Looks like a bug to me. Any ideas as to how we can get this on Adobe's bug fix list?

  • Keyboard problems with Enter, delete, backspace, and right/left arrows

    In some applications, such as Yahoo and this message block right now !!, when composing a message, the arrow keys and delete, backspace keys become non responsive. Various ones will work on a random basis.
    I am getting double "carriage returns" also. Maybe this is why in Omegle when I press ENTER, it will not post a chat message; it will bring up a scroll box and for me to post the comment, I have to use the mouse to click ENTER.
    I have changed batteries in my keyboard, uninstalled /reinstalled Firefox. I have checked the above websites in Chrome and other browsers, and there are no problems.
    This has happened before, I don't recall what the solution was or if it just went away.'''
    Affected sites -- at least these
    http://us.mg6.mail.yahoo.com/neo/launch?ncrumb=Fx5R4O7ccqb&.rand=1041364415&nmig=yes#
    http://omegle.com/
    https://support.mozilla.com/en-US/questions/new?product=beta&category=b2&search=Keyboard+problems+with+Enter%2C+delete%2C+backspace%2C+and+right%2Fleft+arrows&showform=1

    PROBLEM SOLVED: http://forum.archlinux-br.org/viewtopic.php?id=1257
    Solution posted on Brazilian Archlinux forum. Credits to user "920608".
    [cache]
    /etc/xorg.conf
    Section "Files"
             #RgbPath "/usr/X11R6/lib/X11/rgb"
    EndSection
    Section "ServerFlags"
               Option "AutoAddDevices" "False"
    EndSection
    C'ya

  • F150 and problem with job deleted

    Hi all,
    I have a problem with F150: we have made a dunning session,
    but the batch job was manually stopped and than deleted.
    Now I don't know how to delete the dunning run (all delete
    option are unabled), and if we execute another session the customer
    are blocked by this dunning run.
    Someone know how to delete it?
    Thanks in advance
    Alessio

    Hi,
    Can u check whether Dunning Notices - Delete Dunning run disabled?
    If no dunning notice has been printed - try to restart the session thru SM35.
    Regards,
    Sridevi
    <i>Assign points, if useful</i>

  • TS3899 I HAVE IPAD AIR HAVING PROBLEMS WITH EMAIL DELETING AFTER A SHORT TIME WITHOUT COMMAND CAN YOU HELP

    Q. I have an IPAD air having problems with my email deleting after a short while without command.

    I've had issues like this before.
    I ended up having to call my provide to reset the connection, which worked for a while, then quit. i then took it into my provider for a new sim card and had the connection re-established again. I haven't had issues since.
    hopefully for you resetting the connection with your provider will do the trick and a new SIM card wont be nessesary.

  • Problem with alt+tab

    On kdemod-legacy & kdemod-unstable alt+tab doesn't work since the upgrade to the new xorg server, i fixed the cursor keys problem now i can toggle only between 2 windows with alt+tab (and it doesn't show the windowlist)

    That's more like a porblem with kwin, not xorg - check the settings there first.

  • Problem with PSA deletion

    Hi All,
    My requirement is to delete all PSA requests everyday before daily loads. For this i have created a PC with PSA deletion variant with the followng settings - data-source = 0CO_PC_02, source system = *, older than = 0 days, all requests (red and green). When the variant is run no requests are deleted, even if there are requests meeting the above conditions. Logs of the variant do not show any requests.  When i delete the requests manually from the Data-Source overview screen the requests are deleted but i can still see the request in the PSA table (se16). What could be the reason. The scenario works fine for other data-sources and variants with identical settings. Thanks.
    Regards,
    Saurabh Diwakar

    Hi,
    Please specify only these three things nothing else . This should do the job for you .
    Data Source name
    exact Name of the Source System with client Name
    In older than put 0.
    -Vikram

  • CS5.5: keyboard shortcuts: CTRL+ALT and problem with ALT+CTRL

    The problem concerns the CS5.5 version of InDesign on Win7. Incorrect work-based keyboard shortcuts: CTRL+ALT+?? (system shortcuts and self defined, eg paragraph style). We have to remember to press the keys in order: CTRL+ALT+??. Ordering: ALT+CTRL+?? (vice versa to CTRL+ALT) will freeze the program on the selection on drop down menu (File, Edit etc.) and inability to perform any other function with the keyboard. This is a bug, or might be changed?
    If we use shortcuts eg: SHIFT+CTRL+ALT+??, we must remember to first release the ALT key and then the rest. Otherwise, InDesign hang in drop down menu...

    Welcome to the forum!
    It sounds like you've inadvertently turned on the Sticky Keys accessibility feature.  Since you didn't mention which operating system you're using, I can't tell you how to turn it off.  Trying searching for Sticky Keys in Help in the Start button menu.
    Hope this helps!
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество
    Jane
    2015 X1 Carbon, ThinkPad Slate, T410s, X301, X200 Tablet, T60p, HP TouchPad, iPad Air 2, iPhone 5S, IdeaTab A2107A, Yoga Tablet, Yoga 3 Pro
    I am not a Lenovo Employee.
    I AM one of those crazy ThinkPad zealots!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"!

Maybe you are looking for

  • Dropdown Custom field in Invoice

    Hi , I want to add a dropdown field in Ivoice Basic data screen. I am planning to do it using SRM Extension framework. SAP Implementation Guide --> SAP Supplier Relationship Management --> SRM Server --> Cross Application Basic Settings --> Extension

  • MRKO Consignment settlement against a PI partner

    Hi I have a problem with the vendor the MRKO settles against. The scenario is that I want to settle the against a PI maintained in the vendor master (in the partner function) which is different to the VN that the MRKO run settles against because this

  • Ligatures are turned as single quotation mark, HELP ME

    I'm using ID CS4 in Mac for composing books, so far in two books the ligatures (fi, fl) are turned as single quotation marks in the output export PDF, am unable to find solution for this, looking forward for the solution. Please help me with your gre

  • Can i back up more than one iphone onto the same computer and keep data separate?

    can i back up more than one iphone to the same (pc) computer and keep the data separate?

  • Find and Replace dialog box issue

    When I am in split mode, I get the Find and Replace dialog box up "Edit -> Find and Replace..." When I run a "Find and Replace" clicking the "Find All" the dialog box disapears and I have the Results checked in the Windows menu. When I go down to the