Button "save as" not working en netbook

installed photoshop cs5 on my netbook and it worked fine but stopped working days after the button "save as" try reinstalling it but still not working
Sorry my bad english

What is your screen resolution?  I suspect you changed it.
Your screen needs at least 768 pixels, vertically, or the Save As dialog will not come up.
-Noel

Similar Messages

  • Hot corners enabling screen saver/ ss not working; restart they're working

    Hi, for no discernable reason, my hot corners which are set to start secreen saver were not working; neither it seemed was my screen saver turning on. My computer seemed simply to be going to sleep from the screen image of the desktop without benefit of having gone through the screen saver cycle first. I ran disk utility and verified permissions. Then I did the old pc trick of rebooting the computer. That seemed to have done it. My hot corners are working the way they were set up to function. Por Que? Why is my PB G4 behaving like a PC?
    Thanks.

    Hi, Nagafugi
    Had the same problem and here's what worked for me:
    Navigate to System Preferences/Desktop & Screen Saver/ and click the Hot Corners button.
    I generally set the bottom left corner to Start Screen Saver, with all of the other corners set to minus. I temporarily set the top left corner to Disable Screen Saver, and after moving the mouse pointer into that corner, I was then able to use my bottom left corner again to start my screen saver.
    I put the top left corner back to minus.
    Simple enough and good luck!
    penniewize

  • My speaker is not working properly in 4s if i use headphone its working now my volume increase decrease button is also not working properly how can i solve it pl help me my warranty finished

    my speaker is not working properly in 4s if i use headphone its working now my volume increase decrease button is also not working properly how can i solve it pl help me my warranty finished

    Hello. I sent my WRT1900AC V1 to Linksys four days ago (Monday) via UPS with a RMA. Linksys paid the shipping and everything. The router is still in route, and it should arrive to their offices tomorrow. Once they receive the WRT1900 AC V1, they are going to send me an EA8500 as a replacement. But I have been reading the comments about the EA8500 here in the forum and it seems to have the same problems. I guess the firmware is extremely flawed in both routers (maybe it is almost the same code?). Anyway, I will try the EA8500 and I hope it works. I bought a temporary router from Walmart and I paid $35 for it. It is a Belink N600 DB. I can't believe that a $35 router is working a lot, lot, lot better than my previous $250 WRT1900AC router. Unbelievable. If the EA8500 doesn't work, I'm going to try and get my money back from Linksys, or contact The Consumerist or someone to get my money back and get a Nighthawk instead.

  • HT4623 iOS 6.1 no longer available because you are no longer connected to the internet- this is what my iphone 4 shows. iv tried switching off again and again, closing apps by double tapping the home button but still not working. please help.

    this is what my iphone 4 shows. iv tried switching off again and again, closing apps by double tapping the home button but still not working. please help.
    is there any other method to download ios 6.1.2.
    my phone is not being recognized by itunes on my new windows 8. neither its working on touch copy.
    kindly help.
    thanks

    well in thatcase, i need another help .
    thanks for your instant reply.
    i have currently bought a new laptop (windows 8) and my iphone is not being recognized by itunes.
    because i have no backup on my previous laptop, i downloaded touchcopy but even touch copy is not recognizing my iphone.

  • Why isn't my back button in Safari not working? I am constantly resetting Safari.

    Why isn't my back button in Safari not working? I am constantly resetting Safari.

    Cheryl...
    Go to ~/Library/Caches/com.apple.Safari
    Move the Cache.db (or ApplicationCache.db) file from the com.apple. Safari folder to the Trash.
    Restart your Mac. Launch Safari. Try the back button.
    ~ (Tilde) character represents the Home folder.

  • What to do now when my iPad won't turn on after I turn it off. It shows only the apple logo. I am sure it has above 70% charge as when I sync my iPad it shows necessary detail in iTunes. I have tried, HOME & POWER button, but did not work.

    What to do now when my iPad won't turn on after I turn it off. It shows only the apple logo. I am sure it has above 70% charge as when I sync my iPad it shows necessary detail in iTunes. I have tried, HOME & POWER button, but did not work.

    First try a Reset  ( No Data will be Lost )
    Press and hold the Sleep/Wake button and the Home button at the same time for at least Ten seconds... (But can take Longer)... until the Apple logo appears. Release the Buttons
    If no joy... Try a Restore...
    1: Connect the device to Your computer and open iTunes.
    2: If the device appears in iTunes, select and click Restore on the Summary pane.
    Restoring  >  http://support.apple.com/kb/HT1414
    Make sure you have the Current Version of iTunes Installed on your computer
    iTunes free download from www.itunes.com/download
    3: If Unable to Restore, try using the Steps in this article to force the device into Recovery Mode.
    Note on Recovery Mode.
    You may need to try this More than Once... Be sure to Follow ALL the Steps...
    After you have Recovered your Device...
    Re-Sync your Content or Restore from the most Recent Backup...
    Restore from Backup  >  http://support.apple.com/kb/ht1766

  • Disabling Radio Button Conditionally is not working Well

    Hi friends,
    I have three radio buttons
    <li>self
    <li>New Hire
    <li>On Behalf of
    I will be showing this radio button conditionally according to the user who logs into the application.
    Assume, suppose if a person 'A' enters into the application means he will be shown only these radio button options ---NH---,----OB----,----Self-----
    Suppose, if a person 'B' enters into the application means he will be shown only these radio button options ----NH----,----Self---
    If a person 'C' enters into the application means he will be shown only these radio button options ---Self---
    I have restricted those radio buttons according to the users who enter into the application using their roles.
    But my challenge here is once the user logged in and if he select anyone of the radio button means,
    Example if he selects----NH---means, then ---OB----and -----Self---radio button has to disable and if he selects ---OB----means then ----NH-----and ---Self---has to
    disable(vice versa).
    I have also achieved the same using the DA.
    With true action as: javascript Expression i have given the following codings( i have written the below DA for three cases, if the request_class_code is equal to
    (NH,OB,S)
    var enabled=$v('P22_REQUEST_CLASS_CODE');
    if (!$u_SubString(enabled,'S')) $('#P22_REQUEST_CLASS_CODE_2').attr("disabled","disabled");
    if (!$u_SubString(enabled,'NH')) $('#P22_REQUEST_CLASS_CODE_0').attr("disabled","disabled");
    if (!$u_SubString(enabled,'OB')) $('#P22_REQUEST_CLASS_CODE_1').attr("disabled","disabled"); The above DA is working great only for the user who has the option of viewing three radio buttons in my form(i.e)(NH,OB,S).
    For the user who has the option of viewing two or one radio button, it is not working properly(i.e)(NH,S) or(OB,S) or(S).
    Why it is not working for the user with two options or with one option radio button means, the source of that radio button property is changing. Since i have taken
    the source of my radio button in my DA only when the three options are present.
    How i can solve this issue for the user who is having this two radio option or one radio option.
    Hope you understood clearly about the problem.
    Brgds,
    Mini

    Hi,
    If I did understand what you like have this might work
    var lVal = $v('P22_REQUEST_CLASS_CODE');
    $('#P22_REQUEST_CLASS_CODE input:not([value="' + lVal + '"])').attr("disabled","disabled");Regards,
    Jari
    http://dbswh.webhop.net/dbswh/f?p=BLOG:HOME

  • Satellite M70: Control button keys are not working

    I currently reformatted my M70 to WinXp Pro Sp2, downloaded all related TOSHIBA drivers and related programs [ie. Toshiba control button driver / program] and system is running normal. However, CONTROL BUTTON keys are not working, was working fine with XP Home edition and Win Media but when I called Toshiba Support they couldn't help me because I had upgraded to Xp Pro. My Question is...Is there a fix or a solution to this issue and where can I download or find this fix.
    Thanks
    Emm

    Hey Folks
    Thanks for the advice, however, I did download the control driver and the controls program for the M70 model AND installed them in that order. The Controls Driver installs correctly but unfortunately, when installing the Controls Program, I get a message that the program will not install because it's not the right version for my M70-CL3 [PSM73C]. Not sure what to do here. I would think that everything should work properly seeing as taking the step up to XPPro SP2 isn't that far of a stretch.

  • I am about to buy and iphone 4, its second hand and is in amazing condition. The only problem is that the 'wi-fi' button doesn't not work. I tried to click on it but nothing responds. Can this be fixed? Should i still purchase it?

    I am about to buy and iphone 4, its second hand and is in amazing condition. The only problem is that the 'wi-fi' button doesn't not work. I tried to click on it but nothing responds. Can this be fixed? Should i still purchase it?

    while you are with the person selling it to you, ask if you can do a complete restore of the software settings->general->reset->reset all
    reboot the phone to factory settings and see if that fixes the problem.  if not, i wouldn't buy it unless they are selling it to you for less than $50.  wifi is crucial for keeping data low and using features like facetime

  • Satellite A660-11M on Windows 7 - Toshiba Power Saver does not work

    I have a Satellite A660-11M and I work on Windows 7 Ultimate
    The problem is that I have download all drivers and updates but the toshiba power saver does not work its installed with no error and TPSLaunch (green icon) does not open when I click on it and no icon I found in the control panel for the program afterIi install all the Value Added Package!

    Toshiba Power Saver is only for XP installations, you can't install the XP Drivers (and most Vista Drivers) in Windows 7.
    Make sure all your drivers are for the A660, and make sure they are for Windows 7.

  • Screen Saver does not work

    My screen saver only works when no one is logged on. Otherwise, the screen saver never kicks in. I have a Toshiba Satellite M305-S4848.

    Satellite M305-S4848 
    Do you use a wireless mouse?
    The screen saver does not work when you use a Microsoft wireless pointing device on a Windows Vista-...
    -Jerry

  • Hi. The buttons and wheel of my iPod 4th generation do not work. The hold button resets the iPod, and the shuffle shake works. The music plays by shuffling but I can't access albums etc due to the buttons and wheel not working.

    Hi. The buttons and wheel of my iPod 4th generation do not work. The hold button resets the iPod, and the shuffle shake works. The music plays by shuffling but I can't access albums etc due to the buttons and wheel not working.

    Did you restore from backup?
    Next would be to restore to factory settings/new iPod since maybe you have some corruption in the backup

  • Hi all, Since I updated to Mavericks I am having trouble with Safari showing all the buttons/clickable options, but they are gray and will not work. Specifically, the Trash Can/Delete and the "Move to" folder button simply do not work. Any ideas?

    Hi all, Since I updated to Mavericks I am having trouble with Safari showing all the buttons/clickable options, but they are gray and will not work. Specifically, the Trash Can/Delete and the "Move to" folder button simply do not work. Any ideas?

    Please post a screenshot that shows what you mean. Be careful not to include any private information.
    Start a reply to this message. Click the camera icon in the toolbar of the editing window and select the image file to upload it. You can also include text in the reply.

  • I updated my iPhone 4S to the new IOS 6 I like it but the problem I found the Wifi button it's not working any more it looks hidden , so what I should do to solve this issue ASAP

    I updated my iPhone 4S to the new IOS 6 I like it but the problem I found the Wifi button it's not working any more it looks hidden , so what I should do to solve this issue ASAP

    Tap Settings App > General > Reset > Reset Network Settings. See if fixed. If not, Restore Firmware with iTunes on computer. See if fixed. If not, all iPhone 4S have Warranty, make Genius reservation and take iPhone to Apple for resolution.

  • AUTO SAVE DOES NOT WORK !!!!!!!!!!!!!!!!!!!!!!!!!!!

    I have a 1 week old mac book pro.
    I am running the latest issue of FCP X.
    Auto save does not work !
    I just lost some work after shutting down and restarting the program.
    Apple for gods sake dont release a program that doesnt perform the basics.
    And give us back the ability to save projects when and where we want !
    FFS !

    Will Power PT wrote:
    I have a 1 week old mac book pro.
    I am running the latest issue of FCP X.
    Auto save does not work !
    I just lost some work after shutting down and restarting the program.
    Apple for gods sake dont release a program that doesnt perform the basics.
    And give us back the ability to save projects when and where we want !
    FFS !
    Apple knows best... except when they don't.
    Send your request to Apple by using Feedback.

Maybe you are looking for

  • TRAN : F110 Automatic Payment

    How to change printout/data medium in F110 transaction. is it based on payment methods ?. if so how to assign this for different payment methods. how to add a customised program to existing print/data medium programs in the transaction.

  • How do i revert Firefox 34.0.5 - back to whatever was before it.

    Dude. I HATE the chages to the search interface. I hate the lose (change?) or whatever to the adblocking (worked before now doesn't). It's like you (mozilla) don't get how our brains work. This is what i want: A search interface i don't see. (Our bra

  • Error from F.5G

    Hello, I am going to run F.5G. While I am going to run this Tcode, I am getting error- The error is *Transactn KDF:  No valuation acct has been specified for acct 1120300800* Please tell me the Required Correction. Thanks

  • Not able to delete IT1001 Relationship

    Hi All Can any one tell how to delete relationship It1001 for an organization unit,for which object IT1000 has already been deleted. While deleting its giving msg.. Object doesnot exist. Thanks in Advance

  • HTTPS certificate

    We are trying to apply digital certificates for HTTPS connection on the server. But our server is inside a firewall. We are a bit confused  which address needs to be given for registering the URL to obtain the certificate. Should we aplly for the fir