How do I get the Basic and camera calibration sub panels in the develop modual to come back after they go away on there own?

I was working on images and then when I picked a different image the basic and camera calibration sub panels disappeared. How do I get them back?

Right click on one of the other headers and a popup will appear and you can select the ones you need to view.

Similar Messages

  • How do I get the old right click menu back after updating to 7.0.1?

    I want the old commands back in the right click menu rather than the new ones.

    There was a bit of a change between Firefox 3.6 and earlier versions, and Firefox 4.0 and later versions, as far as context menus, but I don't see any difference is the web pages I have viewed as far as any missing items - using a default Profile in Firefox 3.6.23, 4.0.1, 5.0.1, 6.0.2 and 7.0.1 versions. The information provided is too ambiguous to provide an exact answer.
    Try the Firefox SafeMode to see how it works there. <br />
    ''A troubleshooting mode, which disables most Add-ons.'' <br />
    ''(If you're not using it, switch to the Default Theme.)''
    * You can open the Firefox 4/5/6/7 SafeMode by holding the '''Shft''' key when you use the Firefox desktop or Start menu shortcut.
    * Or use the Help menu item, click on '''Restart with Add-ons Disabled...''' while Firefox is running. <br />
    ''Don't select anything right now, just use "Continue in SafeMode."''
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut (without the Shft key) to open it again.''
    If it is good in the Firefox SafeMode, your problem is probably caused by an extension, and you need to figure out which one. <br />
    http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes

  • HOW DO I GET THE VOLUME BAR TO COME BACK?!?!?

    I LOST MY VOLUME AND MY TIME LEFT IN MY SONG BAR... IT IS REPLACED WITH 5 DOTS ON THE BOTTOM OF THE SCREEN... PLEASE HELP ME!!!!

    Hi Ashes4u2envy,
    Welcome to Apple Discussions
    Calm down everything is going to be alright. Try clicking the center button again. You might want to look at Knowledge Base Document #303130.
    Jon
    PS Are you yelling? I'm glad I changed the volume on the computer.

  • How can I get the old view of iCal back on my MacBook Pro and iPhone?

    How can I get the old view of iCal back on my MacBook Pro and iPhone?  The Mavrick version is crisp and clean but a colored dot is not the same as a highlighted word. I rely on my iCal on my MacBook Pro and iPhone 5 to help me track which of the 8 sites I visit for my job during the week - the color coding is (was key) to organizing and tracking meetings.  I hate the upgrade! 

    If purchased through the Mac App Store then it can be installed on up to five authorized CPUs. Otherwise, it's controlled by the license that came with the software.
    To install on another computer copy the downloaded installer application to the other computer.

  • My laptop crashed and I had to get a new hard drive.  How do I get the music from my Ipod back into my itunes library?

    My laptop crashed and I had to get a new hard drive.  How do I get the music from my iPod back into iTunes Library?

    See this excellent user tip from another forum member turingtest2 outlining the different methods and software available to help you copy content from your iPod back to your PC and into iTunes.
    Recovering your iTunes library from your iPod or iOS device
    B-rock

  • HT4528 My Iphone 4s is plugged in charging after it has fully died. Instead of the apple appearing and staying constant on the screen...the apple is blinking. What does this mean and how do I get the phone to charge/turn back on.

    My Iphone 4s is plugged in charging after it has fully died. Instead of the apple appearing and staying constant on the screen...the apple is blinking. What does this mean and how do I get the phone to charge/turn back on.

    - Try:
    iOS: Not responding or does not turn on
    - Next try letting the battery fully drain. After charging for a least an hour try again
    - Last, make an appointment at the Genius Bar of an Apple store, it appears you have a hardware problem.

  • I just bought a $25 Gift Card and used 15 dollars of it. But iTunes saying I used all of it? How do I get the rest of my money back?

    I just bought a $25 Gift Card and used 15 dollars of it. But iTunes saying I used all of it? How do I get the rest of my money back?

    Check the account area of the iTunes Store window on the right to check the balance. You must use the credit remaining, no refunds.
    Apple - Apple Gift Cards

  • How do I get the internet traffic to come to my own server?

    If I'm moving from paying a host for coldfusion to using my own license on my own server, How do I get the internet traffic to come to my own server?

    You connect the computer to a network.  This is pretty much automatically handled by the hardware and the operating system.
    You may want to read up on some of the basics of networking and the tcp/ip world.
    To have a networked computer tell you its IP address type 'ipconfig' at a dos command line.

  • When your computer crashes how do your get the music on your iphone back on your new computer

    when your computer crashes how do your get the music on your iphone back on your new computer?

    The music sync is one way - computer to iphone.  The only exception is itunes purchases.
    It has always been very basic to always maintain a backup copy of your computer for just such an occasion.
    Use your backup copy to put everything back.
    If for some reason you have failed to backup ( not good), then you can transfer itunes purchases.  Without syncing:  File>Transfer Purchases

  • How do I get the Interval to keep from repeating after it's used once?

    How do I get the Interval to keep from repeating after it's used once? Because I tried clearInterval but I couldn't get it working.
    When my code looks like this, with ClearInterval, it refuses to execute my action, which is to change scenes after a short interval:
    (Pardon if there is some formating errors, I had to reformat it for the Internet)
    Code with clearInterval command
    stop(); 
    Kollektiv.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndPlayFromFrame_2);
    function fl_ClickToGoToAndPlayFromFrame_2(event:MouseEvent):void{
       gotoAndPlay(29);   
       var myInterval:uint = setInterval(fl_ClickToGoToNextScene_14,3000);   
       clearInterval(myInterval);
    function fl_ClickToGoToScene_14(event:MouseEvent):void{
        MovieClip(this.root).gotoAndPlay(1, "Testside");
    However, when my code looks like this it refuses to stop looping:
    Code without ClearInterval command
    stop();
    Kollektiv.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndPlayFromFrame_2);
       function fl_ClickToGoToAndPlayFromFrame_2(event:MouseEvent):void{
       gotoAndPlay(29);
       setInterval(fl_ClickToGoToNextScene_14,3000);
    function fl_ClickToGoToScene_14(event:MouseEvent):void{
        MovieClip(this.root).gotoAndPlay(1, "Testside");
    Any ideas? Also, feel free to dumb your answer down, because I am completely new to Flash, Actionscript and coding.

    If you insist on using setInterval - you need to declare interval id in a higher scope so that you can clear it later:
    stop();
    var myInterval:uint;
    Kollektiv.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndPlayFromFrame_2);
    function fl_ClickToGoToAndPlayFromFrame_2(event:MouseEvent):void
              gotoAndPlay(29);
              myInterval = setInterval(fl_ClickToGoToNextScene_14, 3000);
    function fl_ClickToGoToScene_14():void
              clearInterval(myInterval);
              MovieClip(this.root).gotoAndPlay(1, "Testside");
    I suggest you use Timer instead:
    stop();
    import flash.events.TimerEvent;
    import flash.utils.Timer;
    var timer:Timer = new Timer(3000, 1);
    timer.addEventListener(TimerEvent.TIMER, fl_ClickToGoToScene_14);
    function fl_ClickToGoToAndPlayFromFrame_2(event:MouseEvent):void
              timer.start();
              gotoAndPlay(29);
    function fl_ClickToGoToScene_14(event:TimerEvent):void
              timer.stop();
              MovieClip(this.root).gotoAndPlay(1, "Testside");

  • HT1329 my old computer crashed ... how can I get the music on my ipod back into itunes

    My old computer crashed. How do I get the music from my ipod back into itunes? I purchased touchcopy software, it loaded one third of my library into itunes and froze.

    See Recover your iTunes library from your iPod or iOS device.
    tt2

  • How do I get the essentials work space layout back

    How do I get the essentials work space layout back?I accidently deleted it.

    You could try renaming tour user id Photoshop Preferences root folder the start Photoshop.  Photoshop will create a new preference tree for your user ID.  It should be in that tree copy it to the renamed tree. then delete the new tree and rename the old tree back to its original name.

  • How do I get the old version of iMovie back

    How do I get the old version of iMovie back? The new update is terrible and hard to navigate.

    If you had iMovie 9 and upgraded to Mavericks, iMovie 9 should still be in your Applications folder  in a folder called imovie 9.0.9.  You can still use it and your Events and projects folders should still be present.
    Geoff.

  • How can I get the old version of firefox back, I cannot play frontierville?

    How can I get the old version of firefox back, I cannot play frontier

    You can force 5.0 "compatibility" with the "[https://addons.mozilla.org/en-US/firefox/addon/add-on-compatibility-reporter/ Compatibility Reporter]" extension, or with [http://kb.mozillazine.org/Extensions.checkCompatibility extensions.checkCompatibility] using about:addons.
    For those that really need an earlier version of Firefox
    * ftp://ftp.mozilla.org/pub/firefox/releases/
    :or with the latest of version 3
    * http://www.mozilla.com/firefox/all-older.html
    When reinstalling Firefox from a download, Firefox must be down once the installation starts. When the installation finishes, don't let the install start firefox for you. Instead end the install and start Firefox in your normal manner, thus preventing creating a new profile which does not have your bookmarks cookies, etc (but your old profile would still be around and would).

  • I synced my phone to my computer, then i backed it up. Originally i had 60 songs, then after the backup only 10 of them downloaded again. How do I get the rest of my music back? Do i have to buy it all again?

    I synced my phone to my compuer, then i backed it up. Originally i had 60 songs, then after the backup only 10 of them downloaded again. How do i get the rest of my music back? Do i have to buy it all again?

    If they were purchased from the iTunes store, redownload them for free: http://support.apple.com/kb/ht2519 (supported in most countries: http://support.apple.com/kb/HT5085).

Maybe you are looking for