How can i reverse the function of the curves in the modify curves dialog

in much older version of PS, there was a little set of arrows to reverse the function of the curves in the modify curves dialog. i miss this greatly, since I've been using them opposite from the standard direction for over 20 years.
Any way to switch this in CC?'

Similar Messages

  • How can I use FRF function after i have collected the raw data?

    I have collected a set of raw data from a vibrational test. I didn't save the FRF results. I was wondering if i can do a FRF post data analysis. Maby by using a modified verison of the FRF (SVXMPL_Baseband FRF (Simulated).vi found in the NI example finder with sound and vibration toolkit) to read my data (two columns: Stimulus, Response) knowing that i have saved the settings (i.e. sine wave, sample rate, frequency resolution....). This example porgram from NI generates the signal on its own and doesn't allow me to import data.
    thank you
    cheers
    Wafa
    PS. the test cannot be repeated, i have modified my program that it can now save the FRF results.

    I figured it out...removed the data generator in the stimulation and used my saved data (after lots of modification) into the program...works perfectly now...

  • How can I get a file to copy all of the files in a directory except itself and the source of the copy function will be the directory the final program is in?

    How can I get a file to copy all of the files in a directory except itself and the source of the copy function will be the directory the final program is in? This application must be in Lab View 8.

    you mean something like this (see below)?
    Now you may have to implement code to check if the destination folder exists and to create it, etc.  But if you use the Front Panel Control to select the destination folder, it should be okay.
    Not the best implementation, mind you but you'll get the idea..
    Message Edited by JoeLabView on 04-18-2007 03:43 PM
    Attachments:
    copy folder contents.PNG ‏10 KB

  • While installing a program (MediaCenter.exe) to handle audiobooks from the library, I erroneously associated the download site with Windows Media Player instead of the actual application (NetLibrary Media Center). How can I reverse/change this?

    While installing a program (MediaCenter.exe) to handle audiobooks from the library, I erroneously associated the download site with Windows Media Player instead of the actual application (NetLibrary Media Center). How can I reverse/change this? Reinstalling the application does not clear the error, so I'm assuming the association is somewhere in Firefox.

    Never mind -- I just found it under Tools/Options.../Applications, where I changed the incorrect association of "nlmcp" from Windows Media Player to the correct one, NetLibrary Media Center. Done!

  • How can I reverse the order of podcasts so I can listen in cronological order

    How can I reverse the order of podcasts so I can listen in cronological order!

    What I did was create a playlist for the podcasts and keep it sorted in reverse date order, which puts the oldest first. To prevent it from automatically playing the next podcast, I actually mark all podcasts as "skip when shuffling", and then play in shuffle mode. I also make sure all my podcasts have a genre of "podcast"; I discovered that if you use media type, the playlist doesn't update correctly on the iPod classic
    So, what I've got is a playlist of the form: (play count = 0) and (genre = podcast), sorted in reverse date order.

  • How can I reverse the acction create with F110

    When I use F110 for Automatic Payment Transaction,how can I reverse the document  if it nessesary?

    If the payment is done and accounting documents are created, then you have to use FB08 for reversal(FBRA for reset)
    If the invoices are at proposal level, you can delete the proposal(EditProposal-Delete)
    Rgds
    Murali. N

  • Today I updated the OX Maverisk. It turns out that the three finger gesture in the finder( go back and forward) is disabled. How can I get this function back? I love it so much!!!

    Today I updated the OX Maverisk. It turns out that the three finger gesture in the finder( go back and forward) is disabled. How can I get this function back? I love it so much!

    Try System Preferences/Trackpad/More Gestures.

  • I accidentaly pressed on "forget this devise" in the bluetooth settings. Now my iPhone would not even list my headset. How can I reverse what just happened and connect my headset? Can anyone assit please?

    I accidentaly pressed on "forget this devise" in the bluetooth settings. Now my iPhone would not even list my headset. How can I reverse what just happened and connect my headset? Can anyone assit please?

    You need to put the headset into pairing mode. The phone should then see it even though you have done the forget this device.

  • How can I have both functions "Read Only" & "Write" mode on the same form?

    Dear all,
    How can I have both functions "Read Only" & "Write" mode on the same form? Is it possibile for this?
    Please advice,
    Amy

    This is what I use in some dialogs:
    PROCEDURE SET_QUERY_ONLY IS
      -- Procedure Set_query_only
      -- Rend les blocks non modifiables   --
      -- Disable menus Insert/Delete/Clear --
      -- Entree               :
      -- Sortie               :
      -- Ent/Sortie     :
      -- Creation               : FD    10/2003
      -- Modification     : 
         LC$Block     Varchar2(30) ;
    BEGIN
      Set_Menu_Item_Property('Edit.Insert', ENABLED, PROPERTY_FALSE ) ;
      Set_Menu_Item_Property('Edit.Remove', ENABLED, PROPERTY_FALSE ) ;
      Set_Menu_Item_Property('Edit.Clear', ENABLED, PROPERTY_FALSE ) ;
      Set_Menu_Item_Property('Action.Save', ENABLED, PROPERTY_FALSE ) ;
      LC$Block := get_form_property( NAME_IN('System.Current_Form'), FIRST_BLOCK ) ;
      -- Tous les blocs en Query only --
      While LC$Block is not null Loop
           Enable_Block( LC$Block, FALSE ) ;
           LC$Block := get_block_property( LC$Block, NEXTBLOCK ) ;
      End loop ;
    END;
    PROCEDURE ENABLE_BLOCK
              PC$Block in Varchar2,
              PB$Enable in Boolean Default TRUE
         ) IS
      -- Procedure Enable_block
      -- Rend le bloc Enable / Disable --
      -- Entree          : PC$Block (nom du bloc Forms)
      --               : PB$Enable (TRUE ou FALSE)
      -- Sortie          :
      -- Ent/Sortie             :
      -- Creation          : FD    10/2003
      -- Modification     : 
    BEGIN
         If PB$Enable Then
              Set_Block_Property( PC$Block, INSERT_ALLOWED, PROPERTY_TRUE ) ;
              Set_Block_Property( PC$Block, UPDATE_ALLOWED, PROPERTY_TRUE ) ;
              Set_Block_Property( PC$Block, DELETE_ALLOWED, PROPERTY_TRUE ) ;
              Set_Menu_Item_Property('Edit.Insert', ENABLED, PROPERTY_TRUE ) ;
              Set_Menu_Item_Property('Edit.Remove', ENABLED, PROPERTY_TRUE ) ;
              Set_Menu_Item_Property('Edit.Clear', ENABLED, PROPERTY_TRUE ) ;
              Set_Menu_Item_Property('Action.Save', ENABLED, PROPERTY_TRUE ) ;
         Else
              Set_Block_Property( PC$Block, INSERT_ALLOWED, PROPERTY_FALSE ) ;
              Set_Block_Property( PC$Block, UPDATE_ALLOWED, PROPERTY_FALSE ) ;
              Set_Block_Property( PC$Block, DELETE_ALLOWED, PROPERTY_FALSE ) ;
              Set_Menu_Item_Property('Edit.Insert', ENABLED, PROPERTY_FALSE ) ;
              Set_Menu_Item_Property('Edit.Remove', ENABLED, PROPERTY_FALSE ) ;
              Set_Menu_Item_Property('Edit.Clear', ENABLED, PROPERTY_FALSE ) ;
              Set_Menu_Item_Property('Action.Save', ENABLED, PROPERTY_FALSE ) ;
         End if ;
    END;Francois

  • HT3887 under the on  blue tooth ...how can i reverse ..ignore this device setting.....during the set up ofa Jam speaker i  pushed ignore this device......now the ipod touch will not discover the speaker    thanks Greg

    when I was setting up a JAM speaker , under the blue tooth slide bar , I pushed ignore this device.  Now the speaker is not discoverable....How can I reverse this action to set the speaker

    Hello skywalker eyedoc,
    If you chose to "forget" a device in the bluetooth settings, you'll simply need to put that device back into pairing mode (or "discovery" mode) for the iPod touch to find it once more. You may need to refer to the bluetooth speaker's documentation or manufacturer for information on how to do so.
    iOS: Third-party Bluetooth headsets, headphones, and keyboards
    http://support.apple.com/kb/HT1664
    Thanks,
    Matt M.

  • I use internode and imap. When the ipad deletes emails it also removes them from the mac. How can I reverse this so the mac is the master and the ipad is the slave?ipa

    I use internode and imap. When the ipad deletes emails it also removes them from the mac. How can I reverse this so the mac is the master and the ipad is the slave?

    Thanks for the info. - I now know that deletion works both ways!! - (unlike POP where emails deleted from the ipad also deleted them from the mac even before I could read them,  whereas emails deleted from the mac were not removed from the ipad!!! - ie. the ipad was the master over the mac - the slave).  Prior to changing to imap I used to transfer all nongarbage emails from inbox to mailboxes before my husband could ask if he could delete emails on his ipad. I have noticed however if you do this in imap, they are removed from the inbox on the ipad as well (this did not happen with POP). So we still have to check but the number is less so we like imap better than POP.
    Thank again

  • HT201303 How can I reverse this purchase and get a refund? I forgot you need a Weight Watchers password to use the ap and I am no longer a member.

    How can I reverse an app purchase and get a refund. I purchased a Weight Watcher app forgetting I needed to be a Weight Watchers member to log in.

    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • How can i print double sided from my macbook? The option is not highlighted., how can i print double sided from my macbook? The option is not highlighted.

    How can I print double sided from my MacBook? The option is not highlighted,
    shazmina2

    This function is related to the printer driver and the printer you use. If you do not give details, nobody can suggest a solution. Usually, the correct driver solves the issue.

  • How can I Publish to a Folder just one of the several websites I have created using iWeb?

    How can I Publish to a Folder just one of the several websites I have created using iWeb?
    it drives me nuts having to emove all the other websites when I want to upload one. 
    Sparrow

    For iWeb, I like to do only one site per domain file.  I move domain files out of the Application Support folder and place them inside project or client folders, or in DropBox. Once you duplicate a domain file and begin customizing it, it will load and behave as a separate project/site.
    I publish each iWeb domain/project direct to a server via FTP. Sometime I publish to a folder, then upload via FTP manually.
    iWeb is a remarkable tool, especially when you work from scratch with blank tamplates
    Here are a few of my iWeb sites:
    http://www.newcovenant.org
    http://www.visionmultimedia.org
    http://www.visioncomsolutions.com

  • How can I get all tracks from an album into the album in my library?

    When importing the albums from a folder, the tracks for some of the albums were split up.  How can I get them in one?

    Hello JudyD276
    The article below will give the steps to get the songs grouped together for you.
    Why aren't songs with the same album art grouped together?
    http://support.apple.com/kb/TS1468
    Thanks for using Apple Support Communities.
    Regards,
    -Norm G.

  • How can i remove iTunes 10.1.0.54 saying the feature you are trying to use is on a network resource...enter an alternate path to a folder contaning the installation package 'iTunes.msi'?

    How can i remove iTunes 10.1.0.54 saying the feature you are trying to use is on a network resource...enter an alternate path to a folder contaning the installation package 'iTunes.msi'?
    < Edited by Host >

    Unfortunately, this sort of trouble has gotten more complicated to deal with ever since Microsoft pulled the Windows Installer CleanUp utility from their Download Center on June 25. First we have to find a copy of the utility.
    Let's try Googling. (Best not to use Bing, I think.) Look for a working download site for at least version 3.0 of the Windows Installer CleanUp utility. (The results from mydigitallife and Major Geeks are worth checking.)
    After downloading the utility installer file (msicuu2.exe), scan the file for malware, just in case. (I use the free version of Malwarebytes AntiMalware to do single-file scans for that.)
    If the file is clean, to install the utility, doubleclick the msicuu2.exe file you've downloaded.
    Now run the utility ("Start > All Programs > Windows Install Clean Up"). In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove".
    Quit out of CleanUp. Restart the PC, and try another iTunes install. Does it go through properly this time?

Maybe you are looking for

  • What to do when an entity starts using EURO instead of Local Currency (not

    What do you do when an entity which is using one of the local currencies out there (not EURO) is going to use EURO as their Local Currency soon? For example: what do you do when you have an entity in a non EURO country but will soon start using EURO?

  • Found Apple Macbook Pro 13" Rubber Case with extras - $37.99

    I was browsing for a case for my macbook pro 13" and a rubber type of exterior casing that includes a keyboard / track pad protector + lcd protector for $37.99. I hope this is a good deal since the Apple Store sells it for $49.99 for just the case it

  • Need to turn off Password protection

    I was just exploring and set a password and now I need to turn off the password. When I go to the Password page it is "Enabled." How do I disable this?

  • BO reporting from SAP-APO

    Hi , Is it possible to call a BO report from SAP screen? e.g. SAP-APO Demand planning Grid ? Can we pass selections from SAP screen to BO and get the report based on the screen contents..... Regards Aniruddha

  • Performace of XI system

    1. How to check the performance of Xi system? 2. How to Scedule the Scenarios in Xi? 3. Why Idoc and Http adapters dont have sender agreement ? 4. How to test Xi scenario? 5. What is moduling concept in XI?