Is there a way to enable the "protect tones" box while working in Lab mode for dodging and burning?

Is there a way to enable the "protect tones" box while working in Lab  Color mode for dodging and burning?

Don't think so. Those algorithms are built around the RGB color model as far as I know and there is no way to achieve the same result in other color modes. It may not be programmaticalyl and matehmatically impossible, but it's probably too complicated for a quick solution due to constant color space conversion math getting involved.
Mylenium

Similar Messages

  • Since downloading the 2013 Keynote upgrade, the slide image size on handouts with 3 slides per page option is very small. Is there a way to make the slide size larger while still keeping 3 slides per page   lines?

    With the new Keynote upgrade (version 6.1), the slide image size on handouts is very small, which makes it difficult to read slide content when compiling lecture notes for students. Is there a way to make the slide size larger while still keeping to a format of 3 slides per page with lines?

    A number of posts have reported the same issue, two workarounds:
    1
    check the paper handling options or equivalent in your print dialogue box and set to scale to fit

    in the Keynote option, in the dropdown menu in the Print section, select Individual Slides
    then choose Layout, and set the number of pages, when printed you will have multiple pages on a single sheet.

  • Is there a way to change the pin color in iPhoto so I can pin my photos  and places from those from others.  i think it would be cool to see where my friends have also been but not mix it with mine.  Thanks

    s there a way to change the pin color in iPhoto so I can pin my photos  and places from those from others.  i think it would be cool to see where my friends have also been but not mix it with mine.  Thanks

    No
    Suggest to Apple
    You can make a smart album based on camera to seperate photos
    LN

  • Is there a way to change the alert tone for the find my iphone app?

    Is there a way to change the alert tone for the find my iphone app? The one they use from the factory is terrible! I tried it out and could hardly hear it from 5 feet away!

    Welcome to the Apple community.
    Unfortunately, so far as I am aware you cannot change this tone. I must admit I don't fully understand your problem, I've tried it myself and can hear it from some distance away.

  • In putting together a book I can move photos onto a page and enlarge the picture but is there a way to reduce the picture size? some cases I want a smaller picture and if I change the size of the picture box I only get a portion of the image. I wnt to red

    picture size...in putting together a book I can move photos onto a page and enlarge the picture but is there a way to reduce the picture size? some cases I want a smaller picture and if I change the size of the picture box I only get a portion of the image. I want to reduce the image to fit the size of the box.

    If you right click on the image on the page in the context menu select photo box alignment and then select one of scale to fit {centered, Left-aligned, Right-aligned}
    That should do what you are loking for.

  • I backed up my iphone 4 before updating to my iphone 5 and it restored to default settings. As a result, i have lost all my photos. Is there ant way to reverse the back up as I have a 2 month old baby and desperatly want to retrieve my photos :-(

    I backed up my iphone 4 before updating to my iphone 5 and it restored to default settings. As a result, I have lost all my photos. Is there any way to reverse the back up as I have a 2 month old baby and desperatly want to retrieve my photos :-(

    Pictures are designed to be copied off the device regularly as would be done with any digital camera.  There is no logical reason why anyone would fail to do this with supposedly important pictures.
    If a recent backup exists, it is also possible to restore the device from the most recent backup, this may restore pictures to the device.  If it does, COPY THEM OFF THE DEVICE IMMEDIATELY for safekeeping.

  • Is there a way to get the Mendeley references manager to work with pages?

    Is there a way to get the Mendeley references manager to work with pages?  If not, what is the best reference manager to use with Pages?  I hate "Endnote" and, while I like "Papers", it does not have much support for shared libraries (with collaborators--their Livfe option only permits 50 shared papers and does not work well) or synching a single library across multiple Macs (i.e. home+work).  I need a good reference manager that supports 1) synching across multiple Macs, 2)working with collaborators and 3) has no problem importing different reference styles.  I don't want to use Word or Endnote unless I absolutely must--Pages is much better for everything else I do.  This is for use in preparing scientific manuscripts and grant applications.  Thanks.

    H Roth wrote:
    Is there a way to get the Mendeley references manager to work with pages? 
    If you have not done so already, make sure you also ask the people who make it:
    http://support.mendeley.com/

  • Is there a way to change the ring tone to none for one particular contact?

    I see there is an option to turn the text message settings for a particular contact to 'none'.  Is there a way to change the ring tone to 'none' or 'silent' for only one contact.  This is a person who calls way too often and I used to turn their ringer to 'none' when I had a blackberry.  This way I can talk to this person when it is convenient for me and not have to listen to the ringer everytime they call.

    You need to sync a silent ringtone to your phone & then assign it to that contact. Here's one already made:
    http://richardkmiller.com/702/iphone-tip-use-a-silent-ringtone-to-screen-calls-i n-your-sleep

  • Is there any way to click the System Message Box button  through code?

    Hi,
    Is there any way to click the System Message Box button through code?
    Is there any way to restrict the System Message Box ?
    The requirement is, i need to open the MRP Wizard form in MRP.it s run automatically.after completion of the wizard is there finish button.after clicking of the finish button, there have a system message. i want to click on "Yes" button through coding.
    when system message box open.my code is stopped.if i press yes code is running.   
    Thanks in advance.

    Thanks for replay
    bellow given the code
    i am using, when i call the finishMrp function its going to take the itemId from XML and click to the finish button.
    There have a system message .when system message fair my debugging stopped. Please give me any idea.
    Public Function Execuate() As Boolean
    Dim strSQL As String
      Dim objRS As SAPbobsCOM.Recordset
        Dim intLoop As Integer
        Dim objForm As SAPbouiCOM.Form
        objForm = objAddOnCentral.objApplication.Forms.ActiveForm
        objRS = objAddOnCentral.objCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
        strSQL = "SELECT U_MRPCode From [@ACSYMRPLIST]"
        objRS.DoQuery(strSQL)
        If objRS.EoF Then
        Throw New Exception("No MRP Scenario Scheudled")
        Return False
        End If
    For intLoop = 1 To objRS.RecordCount
                objForm.Freeze(True)
                If intLoop = 1 Then
                initializeMRPRun()
                System.Windows.Forms.Application.DoEvents()
                Else
                reinitialize()
                System.Windows.Forms.Application.DoEvents()
                End If
                MRPRun(objRS.Fields.Item("U_MRPCode").Value)
                System.Windows.Forms.Application.DoEvents()
                objForm.Freeze(False)
                objRS.MoveNext()
            Nex
            finishMRPRun()
            Return True
        End Function
       Private Sub finishMRPRun()
            Dim strResource As String
            Dim objXML As New XmlDocument
            Dim objXMLNode As XmlNode
            Dim objXMLNodeList As XmlNodeList
            strResource = System.Reflection.Assembly.GetExecutingAssembly().GetName().Name & "." & "AutoStart.xml"
            objXML.Load(System.Reflection.Assembly.GetExecutingAssembly.GetManifestResourceStream(strResource))
            objXMLNodeList = objXML.SelectNodes("/AutoMRPScript/FinishMRP/Instruction")
            For Each objXMLNode In objXMLNodeList 'objXML.ChildNodes.Item(1).ChildNodes
                Select Case objXMLNode.Attributes("OPType").Value
                    Case "2"
                        systemMessageactiveFormButton(objXMLNode)
                End Select
            Next
        End Sub
    Private Sub systemMessageactiveFormButton(ByVal Instruction As XmlNode)
            Dim objForm As SAPbouiCOM.Form
            objForm = objAddOnCentral.objApplication.Forms.ActiveForm
            objForm.Items.Item(Instruction.Attributes("ItemID").Value).Click()
        End Sub
    Edited by: Badulla Sk on Dec 31, 2009 11:24 AM
    Edited by: Badulla Sk on Dec 31, 2009 11:25 AM

  • My classic has been stolen. Is there a way to retreive the serial number from Apple? Hasnt been updated for a while tho thats all and I couldnt find it myself?

    My classic has been stolen. Is there a way to retreive the serial number from Apple? Hasnt been updated for a while tho thats all and I couldnt find it myself?

    If you entered it on your support profile: https://supportprofile.apple.com
    Also see: iPod: How to find the serial number - Apple Support

  • I contiue to get the error message registry settings used by itunes drivers for importing and burning CD's and DVD's are missing.  Please reinstall itunes.  Reinstalling itunes does not fix the problems

    I continue to get the error message registry settings used by itunes drivers for importing and burning CD's and DVD's are missing.  Please reinstall itunes.  Reinstalling itunes does not fix the problems

    I'd start with the following document, with one modification. At step 12 after typing GEARAspiWDM press the Enter/Return key once prior to clicking OK. (Pressing Return adds a carriage return in the field and is important.)
    iTunes for Windows: "Registry settings" warning when opening iTunes

  • When connecting to Itunes, it shows the following error: registry settings used by itunes drivers for importing and burning cds are missing.  I have installed the gear drivers, uninstalled and installed itunes still showing same error.  Anything else?

    When connecting to Itunes, it shows the following error: registry settings used by itunes drivers for importing and burning cds are missing.
    I have edited the registery, downloaded the Gear drivers, uninstalled and installed itunes, and the error still appears.
    What else can I do.  Cannot connect any of our iphones or ipods to itunes because of this error. 

    I have edited the registery,
    We'd better have a closer look at the keys to see what's going on.
    Can you post a screenshot of the contents of the key you've been editing, please? Include all of the regedit screen, including the left-hand column. Save the screenshot to an image file, and insert the image file in a reply by clicking the wee camera icon at the top of the reply window.

  • Is there a way of making the Edge Commons parallax effect work smoothly with DPS on the iPad?

    I want to create a feature for an iPad magazine utilising the parallax effect shown here...
    Parallax Scrolling Made Easy (Adobe Edge Animate Online Week, Episode 9) - YouTube
    I am using Digital Publishing Suite to publish to an iPad.  I ran a test and the effect partially works, but not smoothly.
    As you scroll down the animation does not play.  Once you finish scrolling the animation then jumps to whichever point has been reached on the timeline, rather than animating as you scroll down the page.
    Is there a way to get the same animation effect through DPS that you see in the browser?  Or is it not compatible?
    Thanks!

    As lllaass said, you can't.
    If you want Apple to add backgrounds to the iPad version, leave them feedback: http://apple.com/feedback/ipad.html.

  • Is there a way to enable the cover tab in iTunes 11.1.1?

    I try to load a cover picture to an album. The cover tab is disabled. Where can can I enable the functionality? Just adding a picture in information cover section does not work.

    Hi Xtof.Frei!
    I have an article here for you that can help you with this functionality:
    iTunes 11 for Mac: Add artwork to songs and other items
    http://support.apple.com/kb/PH12161
    Thanks for being a part of the Apple Support Communities!
    Regards,
    Braden

  • Is there some way to make the iPad Camera Connection Kit work on the iPod touch?

    I bought the Camera Connection Kit because a tech said it would work with my iPod Touch, but I get the message that the iPod does not support that connection. I would really like itt to work because I have used an older iPod to back up photos while on vacation. I would simply connect the camera up to the iPod and it would download all the photos from the camera. It was an excellent way not to have to buy lots of SD cards. This kit has a slot for an SD card and I could copy directly from that. So if anyone out there knows how I could make it work, I'd appreciate your input.

    Is your MacBook Pro new?  Did it come with Lion preinstalled?  If not do you have the iDVD application in the Applications folder? 
    If not I suggest you purchase a copy of the iLife 11 disk from Amazon.com or eBay.com or other 3rd party supplier.  Apple does not sell iDVD any more and those items are getting harder to get.
    Once you obtain iDVD go to iPhoto and bring up the slideshow.  Then use the Share ➙ iDVD menu option. That will send the slideshow to iDVD from which you can burn a video DVD disk. 
    I suggest you follow this workflow while working in iDVD:
    Once you have the project as you want it save it as a disk image via the  File ➙ Save as Disk Image  menu option.  This will separate the encoding process from the burn process. 
    To check the encoding mount the disk image and launch DVD Player and play it.  If it plays OK with DVD Player the encoding was good.
    Then burn to disk with Disk Utility or Toast at the slowest speed available (2x-4x) to assure the best burn quality.  Always use top quality media:  Verbatim, Maxell or Taiyo Yuden DVD-R are the most recommended in these forums.
    OT

Maybe you are looking for

  • Sony PRS-T1

    The Adobe Digital Editions software on my PC does not recognize my Sony PRS-T1 reader. The reader does not appear in the library (as a new line) on the PC.

  • Hoy can i syncronize my iPhone agenda with my IPad agenda through the iCloud?, some contacts from the iPad don't exist in my iPhone.

    Hoy can i syncronize my iPhone agenda with my IPad agenda through the iCloud?, some contacts from the iPad don't apear in my iPhone, and some of them are incompleted.

  • Problem on tab in tabstrip

    Hi all,    I want to execute particular code or event when i select a particular tab. But in standard only one event is available, that execute every time when i select any tab in tabstrip.Plz reply.... Regards, Ramesh.

  • Develop Mode Auto Adjustments

    Hello, When I am loading RAW files in to LR, in the Develop mode they start off as a pretty flat image (as I shot them) but then LR slowly adjusts each photos as it loads which looks like it is bumping the saturation and contrast then lowering the ex

  • Using UDF in Marketing documents

    Dear All, I made two UDF in Marketing docs rows and the same rows in Accounting - Journal transaction rows The goal is: Every time when the user creates a marketing docs, I'd like to insert the corresponding data to accounting. What should I do for t