When I am in Edit, why are Smart Fix and Balance unavailable to me?

When I am in Edit, why are Smart Fix and Balance unavailable to me?

I don't know what you mean by balance, since there's nothing by that name in PSE. If you go to the Enhance Menu do you mean that Auto Smart Fix and Adjust Smart Fix are grayed out? If so, go to Image>Mode and be sure you have an RGB file and that it's 8 bits.

Similar Messages

  • Why are Smart Mailboxes and Email Rules on other computers, mail iCloud is off

    I have iCloud turned OFF for mail.
    Creating/adding Smart Mailboxes or Rules on a iMac show in the MacBook Pro and MacBook Air.
    How do I disable this?

    Hi Mark,
    It's my understanding rules MAY be beging pushed because iCloud -> Document and Data is checked.
    Possibly this something that on the radar to be fixed in a upcomming update, but I have no information on that.
    I'm told a good way to get Apple's attention about issues is for as many people as possible to goto http://www.apple.com/feedback/macosx.html and submit feed back.
    The more feedback they get on an issue the more likely they will take action.

  • What are smart mailboxes and why do i need both smart and "normal" ones?

    What are smart mailboxes and why do I need both smart and "normal" mailboxes?

    Hi Kingoftypos,
    Thanks for that clarification. So, now it appears that the ultimate purpose of a Smart Mailbox is to point to all emails that meet the criteria in a single place, so if they are spread among several mailboxes, you will be able to see them all together. Here is an article from Apple that describes it:
    A Smart Mailbox displays in one location messages that are stored in other mailboxes, so you don’t have to move messages between mailboxes. The messages displayed by a Smart Mailbox are based on criteria you define, and are automatically updated to include new messages that match your criteria. For example, you might create a Smart Mailbox that displays all messages found in all mailboxes from a specific sender.
    If you change a message in a Smart Mailbox, such as marking the message as read or unread, or moving or deleting the message, the change is reflected in the mailbox where the message is actually stored.
    So, adam, I would think that, if you had mail going to a lot of different places, and wanted to be able to see a particular set of those in a single place, you would use a smart mailbox. Maybe use the rules to direct your mail to different places to start with, but a smart mailbox to bring a set of common ones all together into a single smart mailbox?
    Maybe you have Rules move your Amazon mail to an Amazon folder and your Apple mail to an Apple folder, but then you have a Smart Mailbox that contains any mail that has the word "Receipt" in the Subject line?
    Just a thought....
    Cheers,
    GB

  • When I import video clips, why are they only recognized as audio clip? [was:Question]

    When I import video clips, why are they only recognized as audio clip?

    Please do not post the same question twice http://forums.adobe.com/thread/1450571?tstart=0
    If you are using Premiere Pro, you need http://forums.adobe.com/community/premiere?view=discussions
    If Premiere Elements, you need http://forums.adobe.com/community/premiere_elements?view=discussions
    If some other program, post the name of the program

  • Explanation - Why are IAS 9i and an RDBMS both needed ?

    Why are IAS 9i and an RDBMS both needed ? After all, IAS 8I/9I does contain a "database" in it -- but Oracle calls it a "data cache" !!
    Here's why ...
    The IAS 8I/9I "data cache" is intended to be a "performance enhancment" mechanism to avoid network round trips to the back end rdbms (called the 'origin' database in IAS terminology) for "rarely changing" data or application code accessed/used in the IAS 8I/9I mid-tier.
    The IAS "data cache" was initially extracted from rdbms 8.1.6 to use in IAS 8i (aka IAS 1.0.0 or 1.0.1) and now rdbms 8.1.7 to use in IAS 9i (formerly referred to as IAS 1.0.2).
    This was because the complete architecture and functionality needed to provide the IAS 9i's "performance enhancing read only" cache functionality already exists in the oracle 8i rdbms.
    (talk about o-o wanting to have high reusability !!)
    How about a practical application of why would you do this ??
    Think of the web site activity of a major online order system, for example, a ".com" that sells books. We can all think of the famous ones who would be ideal users of this type of design.
    Most of the transaction activity in an online order system is customers "browsing" the product catalog, looking at the
    descriptions of the books they might consider to buy. When a customer identifies a desired book, the customer can place an order.
    This typical customer behavior looks at the description for each book which is "rarely changing" information that is normally accessed in a "read only" mode.
    To improve performance for this online order system, the "rarely changing" information can be stored (or "cached") on the mid-tier in IAS 8i/9i's "data cache".
    How do this improve performance ??
    With the information available in the mid-tier "data cache", network roundtrips by IAS 8i/9I applications to the 'origin' rdbms are avoided, reducing the workload on the network and the 'origin' rdbms.
    Why do i still need a back-end or 'origin' rdbms along with ias 9i ?
    You still need the 'origin" database as the "master repository" for your books, their inventory system, and orders placed with your business.
    You also have the other necessary business systems they may or may not take advantage of the IAS design -- like shipping, payroll, Human Resources, etc.
    What happens if the data changes ?
    I kept repeating "read only" -- so - the next question is what do you do with "new or changing" data - like placing an order or updating the inventory ?
    Since the "master copy" of the information is retained on the origin rdbms, then all changes will occur there.
    When a new book is added or an existing book's information is updated or a book is dropped from the inventory, these changes are applied to the origin database.
    This information is then "refreshed" on the IAS 8I/9I "data cache" using the "management policies" available within IAS 8I/9I.
    These policies controls how and when to "refresh" the IAS 8I/9I data cache.
    null

    In the following document:
    1) "Oracle9i Application Server Technical White Paper" located at :
    http://technet.oracle.com/products/ias/pdf/9ias_102.pdf
    don -- right
    At the bottom of page 16 and the top of page 17 is the following....
    'The Java engine inside Oracle9i AS is the Oracle JVM.'....
    don -- right --- new name is Enterprise Java Engine (EJE)
    'The Oracle JVM is integrated in Oracle9i AS, giving it the same advantages and benefits available to the Oracle Database ...'. '
    don -- almost right -- you left the key phrase off of it ...
    it is completed as follows : (CAPS - are mine for emphasis)
    'The Oracle JVM is integrated in Oracle9i AS, giving it the same advantages and benefits available to the Oracle Database FOR EXECUTING JAVA BASED APPLICATIONS ON THE SERVER'. '
    STEVE --
    that's why i made the comment in the previous post which i've copied below :
    I don't think of it as a "database" even though some literature might refer to it as one in IAS 9i standard edition !!
    The term "database" has a lot of extra functions with it that are not in IAS 8i/9i!!
    for example, most RDBMS's have :
    1) updateable tables, etc.
    2) backup and recovery of data requirements
    3) etc.
    That's what makes the EJE in IAS different from an RDBMS -- the extra rdbms functrions are not needed...
    That's why I think of it as a "Java Code Container" that holds the Oracle Enterprise Java Engine(EJE) in it. I was stuck on this also - now i can mentally exclude all of that extra functionality by calling it a "java code container" and not thinking of it as a "database".
    Since Oracle JVM is the common Java environment for both the Oracle database and Oracle9i AS,...'.
    The above gave me the impression that 9i AS has a JVM independent of a database.
    don -- 9i AS has a JVM independent of a database -- they are the same item -- a "stripped down" database or as i call it a "Java Code Container" that holds the Oracle Enterprise Java Engine(EJE) -- formerly called the oracle 8i jvm -- in it.
    i think the term "database" in the literature is being used to emphasize where it came from (stable oracle 8i -- as opposed to totally new technology)
    but
    i personally think the term "database" implies to many people, it is a "fully functional rdbms" ... so they assume they don't need a back end -- or in ias terms -- an 'origin' rdbms.
    However -- i think this is where the confusion is ..
    as people understand the differences between ias and rdbms, they soon realize they must have an rdbms.
    However, the administrative instructions (that deal with setting up OSE) seem to point that the JVM is in a database.
    don -- right -- it is a "stripped down" database or a a "Java Code Container" as i call it.
    you still need to deploy the java code (servlets, jsp's, ejb's, corba, and java stored procs) to it.
    The command line functions that you use to do that with the 8.1.7 rdbms -- still apply.
    Commands like :
    loadjava, deployejb, dropjava, sess_sh, publishjsp, publishservlet, etc.
    Note :
    Obviously ias 8i "EJE" or ORACLE 8i JVM (the old name), is based upon the rdbms 816 functions (no OSE in it), so you can't deploy servlets and jsp's to the ias 8i EJE just like you can't to the 816 rdbms.
    I do find this subject (where is the JVM located) very confusing.
    don - right -- but you are picking it up -- hang in there !!
    Steve you asked --
    Don - is the EJE (OSE/OJVM) implemented through a database?
    'The Java engine inside Oracle9i AS is the Oracle JVM.'....
    don - right
    keep in mind from a java perspective -- the EJE is a "Stripped down" database that acts like a java code container that you connect to -- just like in 817 --- so you can deploy your code to it.
    it's also a jvm -- and you execute your deployed java code in it -- just like in 817.
    i hope this helps and i didn't confuse this topic further for you ...

  • Why are my iTunes and iPhoto crashing every time I try to open them?

    Why are my iphoto and itunes crashing every time I open them?  This is a new problem on my Mac Mini.  Have the latest software on my Mac Mini and the latest iLife sotware.  My mac mini is about 5 years old, always kept up to date.
    Processor  2 GHz Intel Core 2 Duo
    Memory  2 GB 667 MHz DDR2 SDRAM
    Graphics  Intel GMA 950 64 MB
    Software  Mac OS X Lion 10.7.3 (11D50b)

    Hello Majorie,
    Could be many things, we should start with this...
    "Try Disk Utility
    1. Insert the Mac OS X Install disc, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu at the top of the screen. (In Mac OS X 10.4 or later, you must select your language first.)
    Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.
    3. Click the First Aid tab.
    4. Select your Mac OS X volume.
    5. Click Repair. Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then try a Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)
    Also, how much Free Space is on your Hard Drive?
    One way to test is to Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, Test for problem in Safe Mode...
    PS. Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive
    Reboot, test again.
    If it only does it in Regular Boot, then it could be some hardware problem like Video card, (Quartz is turned off in Safe Mode), or Airport, or 3rd party add-on, Check System Preferences>Accounts>Login Items window to see if it or something relevant is listed.
    Check the System Preferences>Other Row, for 3rd party Pref Panes.

  • Why are both SQL_ID and PREV_SQL_ID null?

    session A is blocking session B.
    it was row-level lock.
    But, why are both SQL_ID and PREV_SQL_ID null in session A?

    Well, what do we know?
    Session A must have an uncommitted transaction.
    That uncommitted transaction is blocking session B.
    But session A could well be doing nothing now, could be churning away doing some sort of processing outside of the database (java client you said), might well be off doing something elsewhere in a distributed transaction.
    Who knows?
    Not necessarily the database.
    If you have ASH licensed, you might, might get a better picture of what session A was doing by looking at DBA_HIST_ACTIVE_SESS_HISTORY but as this is sampled data and your statements might fly in and out, it might not be helpful.
    Note that even if prev_sql_id or sql_id were populated, these might not be the statements responsible for the lock.

  • Why are the movie and television icons missing from my Apple TV menu?

    Why are the movie and television icons missing from my Apple TV menu?

    likely because it does not have a working connection to the internet
    check the settings and maybe reenter the wifi pasword

  • Having issues with my MacBook. Even when the internet is disconnected, apps are still closing and opening on their own. I sometimes do not have control over my cursor.....any suggestions?

    Having issues with my MacBook. Even when the internet is disconnected, apps are still closing and opening on their own. I sometimes do not have control over my cursor.....any suggestions?

    There are several possible causes for this issue. Please take each of the following steps that you haven't already tried until it's resolved. Some may not be apply in your case.
    1. Follow the instructions in this support article, and also this one, if applicable. A damaged or defective AC adapter could be the cause, even if it's the right kind.
    2. Open the Bluetooth preference pane in System Preferences and delete all pointing devices other than the trackpad, if applicable. Disconnect any USB pointing devices. By a "pointing device," I mean a peripheral that moves the cursor, such as a trackpad, mouse, trackball, or graphics tablet. A plain keyboard is not a pointing device.
    3. Start up in safe mode and test, preferably without launching any third-party applications. If you don't have the problem in safe mode, but it comes back when you restart as usual, stop here and post your results. Do the same if you can't start in safe mode. If there was no difference in safe mode, go on to the next step.
    4. Reset the System Management Controller.
    5. If you're using a Bluetooth trackpad, investigate potential sources of interference, including USB 3 devices.
    6. A swollen battery in a portable computer can impinge on the trackpad from below and cause erratic behavior. If you have trouble clicking the trackpad, this is likely the reason. The battery must be replaced without delay.
    7. Press down all four corners of the trackpad at once and release. If there's any effect, it's likely to be temporary, and the unit needs to be serviced or replaced.
    8. There's a report that a (possibly defective) Thunderbolt Ethernet adapter can cause the built-in trackpad of a MacBook to  behave erratically. If you're using such an adapter, disconnect it and test.
    9. There's also a report of erratic cursor movements caused by an external display that was connected but not turned on.
    10. If none of the above applies, or if you have another reason to think that your computer is being remotely controlled, remove it from the network by turning off Wi-Fi (or your Wi-Fi access point), disconnecting from a Bluetooth network link, and unplugging the Ethernet cable or USB modem, whichever is applicable. If the cursor movements stop at once, you should suspect an intrusion.
    11. Make a "Genius" appointment at an Apple Store to have the machine and/or external trackpad tested.

  • Why are my contacts and calendars showing up on my daughter's iphone after I updated?  Help!

    Why are my contacts and calendar showing up on my daughter's iphone after I updated?  Is there anyway to remove them or stop
    them from going directly to her phone?  Help!!!!  Thanks guys 

    So, am I to conclude from all this that the best thing for one iMac and multiple family devices (2 x iphones, 1 x itouch, 2 x ipods) is to set up itunes account for each family member.  We don't use iCloud except for my (primary iphone)
    We had similar problems to the above, and since the recent 6.0.1 update we've started getting each others texts, on top of my wife and I's contacts being replicated to our young son's itouch, and a seemingly random redistribution of apps. 
    timmyd

  • I have these black boxes around all the images i add. why are they there and how do i get rid of them?

    i have black boxes around all the images i bring into pages. why are they there and how can i get rid of them?

    Pages rememebers the last setting you used on images.
    So if you had a border on the last image the next one you bring in will have one too.
    To change that select:
    Inspector > Graphic > Stroke > None
    Spend a little time exploring the menus and particularly the Toolbar and Inspectors whcih are in reasonably logical progression from big things down to smaller details and clearly labeled.
    It is also possible that you have show Layout on which outlines objects on th screen so you can see what's what. To change that:
    Menu > View > Hide Layout
    Peter

  • When using pdfFactory with Firefox, why are the colors on the pdf not correct?

    The colors are vastly different when using pdf Factory with Firefox. When using pdfFactory with IE, they are both the same.

    There doesn't seem to be a one-size-fits-all answer, because what works for one printer doesn't necessarily work for another, and I don't have your printer so I can't advise on specifics...
    However, perhaps we can discover a set of settings that will work...
    If you File - Print, choose Photoshop Manages Colors, in the Printer Profile section do you see profiles specific to your printer (e.g., with the name Kodak in them)?
    If so, choose one of them that seems appropriate given the paper you're using.
    If not, try choosing sRGB IEC61966-2.1.
    Now, before you continue, press the [Print Settings...] button.  This brings up the printer driver dialog.  You may have to go through [Advanced] buttons or whatever, but what you're looking to do here is to disable the printer driver's color management logic.  In other words, if you can find a color-management / ICC profile handling section, set it to "no color management" or equivalent.  OK back out to Photoshop's print dialog, then press [Print].
    The key here is that if Photoshop manages the color transforms, the printer driver should not be set to do so - or vice versa.
    If you're presented with the printer driver's dialog again, double check that the settings you chose above are still set, for good measure, and try a test print.
    -Noel

  • When Viewing Adobe Connect Training, why are Audio/Video out of synch

    I am a new Captivate 5.5 user and I have been using the Adobe Connect Training material to come up to speed on the product. However, I have noticed that when viewing presentations in Connect, over time, the audio and video eventually are completely out of synch. What is being discussed (in the audio) has nothing to do with what is being shown on the screen. This happens on all Connect Training videos.  I have a high-speed Internet connection and I never have problems with streaming content from other sources such as YouTube, etc.  What am I doing wrong?

    Dang, though it was worth a shot.
    Now, one user here, Jim Simon, uses similar, and has worked out a percentage that he adjusts the remote mic's material to fit with his camera. Cannot recall exactly now, but it seems that he alters the Audio by a factor of about 104%. My memory is cloudy on the exact figure, and Jim seems to be on extended holiday. Not sure now, if he uses the Rate Stretch, or runs his mic's audio through Audition. Sorry that the memory is so fuzzy now.
    Good luck, and maybe Jim will show up with his exact figures, to give you a starting point.
    Hunt

  • Why are the CROP and RED EYE TOOLS grayed out?

    My sister, who is new to iPhoto, can't crop her photos because, she says, the crop tool icon is grayed out. She's using iPhoto 4, v. 4.0.3.
    She lives in another state, so when I come up with a solution or solutions, I can try to talk through it on the phone - each of us on our computers.
    It was suggested by someone on another forum that the com.apple.iphoto.plist file in her Preferences folder in her library might be corrupted and that deleting that file & then relaunching iPhoto could solve it.
    I talked my sister through deleting the file & relaunching iPhoto but it didn't do the trick. When she selects a photo and clicks on Edit, both the Red Eye AND the Crop tools are grayed out.

    It's been awhile since I used that level of iPhoto but I believe that you have to select an area on the photo before you can use either of these two tools. For crop simply select the desired area and for red-eye select a small area around the eyes.

  • Why are my photos and Camera App all messed up??

    Since I upgraded to iOS 8 my photos and camera app seem all screwed up.  I take sideways photos like I always do, and when I go to look at them on the phone, they look vertical or sideways.  I can no longer scroll sideways through my photos, but have to do it vertical now...but not all the time.  My photos are upside down at times, sideways, just never right.  I have taken my pics the same way for years, now it seems the new iOS 8 just ruined everything.  VERY angry with Apple now.  I try to show people my photos and half are upside down and sideways.  When I flip the phone, the pics flip too.  I also do not use the volume button to take pics, always the button on the screen.  What a joke.

    I tried all the resets, nothing.  I did a search and apparently others are having issues with the camera with iOS8.  I have a bunch of videos now that I took of my daughter, wanted full screen so I took them horizontally like I always did, but when I look at them on my computer they are vertical and sideways.  Half of my photos are upside down, sideways, and why do i now have to swipe up and down instead of side to side when I look at them?  APple really screwed up with iOS8.  Big time.  it also ruined my **** iPad 2 since I had no idea until it was too late that it was too slow for the new iOS.  Really done with Apple.

Maybe you are looking for