Make "Adobe Gamma" available to Lightroom users

]The topic pretty much speaks for itself.
]While I respect the superior nature of software/hardware based calibration
tools (Colorvision
b Spyder
, Pantone
b Huey
, GretagMacbeth
b Eye-One
), until I can afford a new monitor I will wait to purchase one of these solutions. In the mean time
b Adobe Gamma
would be a very useful tool to me and surely others. I'm honestly surprised that this piece of software was not included with
b Lightroom 1.0.

Uhhhh, please no Adobe Gamma in lightroom, CS3 or any product.
It was nearly impossible to get Adobe Gamma to work correctly for colors. Maybe a lucky few made it work.
With CS & CS 2 you were better off deleting Adobe Gamma from the startup group. Then using the color matching profile for your monitor.

Similar Messages

  • How to make Steam library available for all users

    Hello!
    Can someone tell me - how to make my Steam library available to ALL users of my iMac without sharing a password?
    Or any other program of my account?

    Hard drive level Users/Sharing - Do a Get Info on the folder (command - I) and set permissions to everyone read/write, then click the gear at the bottom - Apply to Enclosed Items.

  • How to make saved IR available for all users

    Hi,
    I've created IR and saved it to several tabs based on search conditions.
    But they're only visible for developers.
    How to make these tabs available for all end-users ?
    Does version 4.0 support this option ?
    Thank you!

    Hi
    At present this feature is not included, although I believe it may be in 4.0. Many people have provided workarounds for this. None of which I have tried. I cannot find the original thread but here is a solution from a chap called Ruud
    >
    One way to share your saved reports with others is to 'Publish' your report settings to a few intermediate tables in your application and have other users 'Import' your settings from there. The reason for using intermediate tables is so that not all your saved reports need to be 'visible' to other users (only those that you've chosen to publish).
    Basically you have available the following views and package calls that any APEX user can access:-
    - flows_030100.apex_application_pages (all application pages)
    - flows_030100.apex_application_page_ir_rpt (all saved reports - inclusing defaults and all user saved reports)
    - flows_030100.apex_application_page_ir_cond (the associated conditions/filters for above saved reports)
    - wwv_flow_api.create_worksheet_rpt (package procedure that creates a new saved report)
    - wwv_flow_api.create_worksheet_condition (package procedure that creates a condition/filter for above saved report)
    The way I've done it is that I've created 2 tables in my application schema that are straightforward clones of the 2 above views.
    CREATE TABLE user_report_settings AS SELECT * FROM flows_030100.apex_application_page_ir_rpt;
    CREATE TABLE user_report_conditions AS SELECT * FROM flows_030100.apex_application_page_ir_cond;
    ( NB. I deleted any contents that may have come across to make sure we start with a clean slate. )
    These two tables will act as my 'repository'.
    To simplify matters I've also created 2 views that look at the same APEX views.
    CREATE OR REPLACE VIEW v_report_settings AS
    SELECT r.*
    p.page_name
    FROM flows_030100.apex_application_page_ir_rpt r,
    flows_030100.apex_application_pages p
    WHERE UPPER ( r.application_name ) = <Your App Name>
    AND r.application_user 'APXWS_DEFAULT'
    AND r.session_id IS NULL
    AND p.application_id = r.application_id
    AND p.page_id = r.page_id;
    CREATE OR REPLACE VIEW v_report_conditions AS
    SELECT r.*
    p.page_name
    FROM flows_030100.apex_application_page_ir_cond r,
    flows_030100.apex_application_pages p
    WHERE UPPER ( r.application_name ) = <Your App Name>
    AND r.application_user 'APXWS_DEFAULT'
    AND p.application_id = r.application_id
    AND p.page_id = r.page_id;
    I then built 2 screens:-
    1) Publish Report Settings
    This shows 2 report regions:-
    - Region 1 - Shows a list of all your saved reports from V_REPORT_SETTINGS (filtered to only show yours)
    SELECT apex_item.checkbox ( 1, report_id ) " ",
    page_name,
    report_name
    FROM v_report_settings
    WHERE application_user = :APP_USER
    AND ( page_id = :P27_REPORT OR :P27_REPORT = 0 )
    ORDER BY page_name,
    report_name
    Each row has a checkbox to select the required settings to publish.
    The region has a button called PUBLISH (with associated process) that when pressed will copy the settings from
    V_REPORT_SETTINGS (and V_REPORT_CONDITIONS) into USER_REPORT_SETTINGS (and USER_REPORT_CONDITIONS).
    - Region 2 - Shows a list of already published reports in table USER_REPORT_SETTINGS (again filtered for your user)
    SELECT apex_item.checkbox ( 10, s.report_id ) " ",
    m.label,
    s.report_name
    FROM user_report_settings s,
    menu m
    WHERE m.page_no = s.page_id
    AND s.application_user = :APP_USER
    AND ( s.page_id = :P27_REPORT OR :P27_REPORT = 0 )
    ORDER BY m.label,
    s.report_name
    Each row has a checkbox to select a setting that you would like to delete from the repository.
    The region has a button called DELETE (with associated process) that when pressed will remove the selected
    rows from USER_REPORT_SETTINGS (and USER_REPORT_CONDITIONS).
    NB: P27_REPORT is a "Select List With Submit" to filter the required report page first.
    Table MENU is my application menu table where I store my menu/pages info.
    2) Import Report Settings
    This again shows 2 report regions:-
    - Region 1 - Shows a list of all published reports in table USER_REPORT_SETTINGS (filtered to show only other users saved reports)
    SELECT apex_item.checkbox ( 1, s.report_id ) " ",
    m.label,
    s.report_name,
    s.application_user
    FROM user_report_settings s,
    menu m
    WHERE m.page_no = s.page_id
    AND s.application_user :APP_USER
    AND ( s.page_id = :P28_REPORT OR :P28_REPORT = 0 )
    ORDER BY m.label,
    s.report_name,
    s.application_user
    Each row has a checkbox to select the setting(s) that you would like to import from the repository.
    The region has one button called IMPORT that when pressed will import the selected settings.
    It does this by using the 2 above mentioned package procedure to create a new saved report for you
    with the information form the repository. Be careful to match the right column with the right procedure
    parameter and to 'reverse' any DECODEs that the view has.
    - Region 2 - Shows a list of all your saved reports from V_REPORT_SETTINGS (filtered to only show yours)
    SELECT page_name,
    report_name
    FROM v_report_settings
    WHERE application_user = :APP_USER
    AND ( page_id = :P28_REPORT OR :P28_REPORT = 0 )
    ORDER BY page_name,
    report_name
    This is only needed to give you some feedback as to whether the import succeeded.
    A few proviso's:-
    a) I'm sure there's a better way to do all this but this works for me :-)
    b) This does not work for Computations! I have not found an API call to create computations.
    They will simply not come across into the repository.
    c) If you import the same settings twice I've made it so that the name is suffixed with (2), (3) etc.
    I did not find a way to update existing report settings. You can only create new ones.
    d) Make sure you refer to your saved reports by name, not ID, when matching APEX stored reports and the
    reports in your repository as the ID numbers may change if you re-import an application or if you
    auto-generate your screens/reports (as I do).
    Ruud
    >
    To me this is a bit too much of a hack and I personally wouldn't implement it - it's just an example to show it can be done.
    Also if you look here in the help in APEX Home > Adding Application Components > Creating Reports > Editing Interactive Reports
    ...and go to the last paragraph, you can embed predicates in the URL.
    Cheers
    Ben
    http://www.munkyben.wordpress.com
    Don't forget to mark replies helpful or correct ;)
    Edited by: Munky on Jul 30, 2009 8:03 AM

  • How to make iPhotos library available to other users

    how to make iPhotos library available to other users

    To give others selective access to your iPhoto library, you have the option of using iCloud Photo Sharing, if the privacy implications don't bother you. The images will be stored temporarily on Apple servers.
    If you want to give full read/write access to more than one user, see the support article linked below.
    iPhoto: Sharing libraries among multiple users
    There is a way to share the library without moving it to a secondary volume. If you really need to do that, ask for instructions.

  • I am new to Mac.  How do you make an app available to all users so you only have to go through set up once?

    I am new to Mac.  How do you share an app with all users so you only have to install once?

    You only have to install applications once, after which are available to all users on your Mac.  But each user account will have its own individual preferences to set and may have some initialization to do the first time the application runs in each account.
    Also, most applications that require entry of a license code accept the code once and apply it to all user accounts on your Mac.  But there are some exceptions, some applications, that don't seem to do this (or don't do it well)  and you may have to enter your license code in each user account the first time you run those applications in each account.  For example, iTunes will ask you to accept the license the first time you run it in each user account.

  • How to make local scenarios available to other users

    I have an xcelsius file with a couple of saved scenarios. I export the file to PDF and send it out to users. The users are not able to see or load the scenarios. Is there a way to fix this?

    Correct me if I am wrong but scenarios are saved in some obscure path somewhere on the user's desktop. Sending a PDF - regarless of whether the recipient has Adobe Reader whatever version of the full Acrobat 9 - will not make any difference: the end user needs to have the scenarios in the same path. Even then, I am not sure that it works. If you export exactly the same version of a dashboard and run it on the same pc where scenarios were saved with the last version of the dashboard, they are not available. The path to which scenarios are saved seems to be different with every dashboard (I have tested this but I would be happy to be proved wrong).
    Saving scenarios is abosultely crucial to many dashboards. The fact that dashboards are not transparently persistent is an issue, for me, and it is something that I would very much like to explore as part of new features. For example, it would be good to be able to let the user select where scenarios are saved or at least have them saved somewhere that is relatively easy to find. But there are pitfalls with that kind of freedom: you cannot have a situation with two quite different dashboards trying to load in the same scenario. By definition, that cannot work.
    Long subject but the bottom line is: you cannot do it, at least not without some major hassle, in my experience.

  • How do I make automator services available to all user accounts?

    I wrote an automator script and made it a service (the standard one that shows all hidden files, or un-shows all hidden files) and I'd like to make it a system-wide service so all user accounts on my Mac can use it.
    I'd prefer to not log in to each account to set it up as I feel that would waste space (I know, not much is needed) but more importantly if I have to change the script I only have to do it in one place.
    How do I do this?
    I have other scripts I'd like to make available to all too.
    I'm currently running OS X 10.9.5 on a 2008 (not Pro) MacBook core 2 duo.

    Thank you, Frank. I'm aware of the packages but didn't realize how it all applied.
    I didn't post if it worked for other user accounts because at the time, I didn't know. It was late when I got it working for my primary account and decided to check it later, which I did this morning, and the services did show up for the other accounts. Yea!!
    As far as the workflows being "corrupt", I still don't know why, either.
    It was odd that when I did Get Info for that file the Preview section actually showed (but of course, very tiny) the Automator script, so clicking (double-clicking? D-C worked this morning) it opened with no errors in Automator. Permissions are still 777 (unix), but I'll change them back to 666.
    Hey! 666 removed them from Services! And when I try to open the workflow in Automator it tells me the file is corrupt. Go figure.
    The answer to that might be that the /Library/Services directory already existed (because of the MacExplorer app I installed) so it held LaunchMacExplorer.workflow. The permissions on that file are drwxr-xr-x@ 3 padr  staff  102 Jan 27  2013 LaunchMacExplorer.workflow .
    I always wondered why write was needed for a workflow. Read or execute (unix) should be good enough.
    I changed some of the files to 751 to match the MacExplorer workflow and those not only changed the coloring (ls -al) in terminal but they also now show up in Services. Yea!

  • How to make different forms available based on user responses

    I have created 4 fillable application forms in Adobe Acrobat 9 Standard. First time using this product.
    Boss wants a dynamic form, so that if a user answers Yes to a question in Form A, then Form B is automatically inserted into Form A for the user to complete. If they answer No, then they continue in Form A, until questions prompting them Yes/No for Form C and Yes/No for Form D.
    We believed that this might be possible if we upgraded to Acrobat Acrobat 9 Pro, with the LiveCycle Designer ES 8.2.1 bundled in.
    I have looked at Pro and can't figure it out, and I've looked at LiveCycle Designer ES 8.2.1 and am completely confused as it is so different.
    Saw a tutorial that said to go to Tools and use the Action Builder, but I don't have this option in my version. Not sure why?
    We want users to be able to use Reader to complete and save the form, and print it for mailing, emailing or faxing to us.
    Any guidance or suggestions, or advice on recommended books, tutorials, or training would be appreciated.
    We are in Ontario, Canada.
    Thanks

    Hello,
    We had a similar requirement.
    The best way we found was to implement the enhancement spot in the beginning of method LOCK_ORDERS of class CL_CRM_METHODS_BTIL. Here, you can prevent the user from editing a business transaction. Be aware this method is called for any BT, so you need to adjust your custom development accordingly.
    Hope this helps.
    Best regards,
    Sylvain AGUETTAZ

  • Adobe "greyscale" available through Lightroom 5.4 or CC 'Basic Panel, B&W'?

    Does "Black and White" selection In Lightroom 5.4/CC "Basic Panel" completely, fully convert an image to Adobe "Greyscale"? Do not want to create another large file by having to go into PS CC just to 'convert to 'greyscale'. Need to know if all color in files are removed when selecting B&W for publishing purposes, please.

    thanks for your time and your response Geoff, but alas that is one of the criteria I've already tried without success.  :-)
    Here's what I just got on four random images;
    This is on image 3 but the same thing applies to all of them.
    Before;                     brightness 0, contrast 0, blacks 0,
    Auto (one image)       brightness 23, contrast 10, blacks 6,
    Group, sync on          brightness  23, contrast 10, blacks 5,
    is auto still lit?                 YES
    Apply auto again        brightness 23, contrast 10, blacks 6,
    Point one is that the AUTO button is still lit after being applied. ?
    Point 2 is in this case only the blacks are moving, allbeit only one notch I know, but I seem to recall it being a larger number on the other files I was trying it with and it varies from image to image as I recall.
    The same thing seems to happen with the other auto button in DEVELOP, HSL / Color / B&W but the differences seem more noticable there, but there's more of them...
    Thanks again.

  • Need to make one folder available to 2 users

    Hi
    I have setup a new user and want to allow both the user accounts on one mac to access the SAME MOVIES folder, without have to swap stuff between the Public folder is this possible?
    All help appreciated
    Thanks
    Sven

    If you want both users to have read/write access to the contents of the folder, the best way to do this under Tiger is by setting up Access Control Lists on that folder:
    1) Log in as an administrator, and create a folder /Users/Shared/Movies.
    2) To enable ACLs in your Mac, open Terminal, paste this command:
    sudo fsaclctl -p / -e
    3) Paste this command into Terminal:
    sudo chmod +a "USERNAME allow delete,chown,list,search,add_file,\
    addsubdirectory,delete_child,file_inherit,directoryinherit" \
    /Users/Shared/Movies
    ...where USERNAME is your user's short name in lower case. (the backslashes allow you to paste this directly into Terminal without worrying about line breaks.)
    4) Repeat step 3, for the other users to whom you wish to give access, using their short user name.
    5) Move all of the movies you want to share into /Users/Shared/Movies
    Presto, you're done! The ACLs will allow all of the specified users to read and write anything that is added to that folder from this point forward, without having to twiddle with the permissions.
    This is what my wife and I do to share an iPhoto library between our two user accounts.
    ACLs is one of Tiger's most underrated features, IMO!
    eMac   Mac OS X (10.4.4)  
    eMac   Mac OS X (10.4.4)  

  • How to make extension available for all users in a multi user environment

    Hi,
    In a multi-user environment, a user install a dreamweaver extension,but just the user who install the extension can use it.
    Is there a way that administrator install the extension and make this extension available for other users in multi-user environment(e.g. the Windows 7)
    Thanks

    In a multi-user environment, a user install a dreamweaver extension,but just the user who install the extension can use it.
    Is there a way that administrator install the extension and make this extension available for other users in multi-user environment(e.g. the Windows 7)
    Dreamweaver had this capability many releases ago, but it has been dropped, so it's no longer available.
    Regards,
    Randy Edmunds
    Dreamweaver Development
    Adobe Systems, Inc.

  • Adobe Gamma for Windows 7

    Is Adobe Gamma available for Windows 7 for monitor color calibration?

    Thanks
    On Fri, Jul 4, 2014 at 8:24 AM, Jeff A Wright <[email protected]>

  • How do I make iTunes music available in more than one user account?

    I have 2 user accounts on my computer. One for me and one for my wife. What I'm wondering is how I can make it so that the music in iTunes in my user account can also be available in her user account. When I'm on her user account iTunes is empty and there are no songs in it. I want for her to be able to have my same library in her iTunes. How can I do this?
    PowerBook G4   Mac OS X (10.4.7)  

    Hi Bob,
    you could try coping all your music onto an external drive & choose that drive as both of yours music folders. It should work... I think.
    Or just burn a data disc of your tracks & import them to the second account.
    I've not got two accounts on my machine but the above should work, in theory. Give them a try. Though I'm unsure about purchased tracks.
    Rory

  • How do I make firefox available to all users in Windows 7?

    I've installed Firefox on a Windows 7 computer. It is only available for the user who was logged in at the time. Is there a way to make it available to all users on that computer, or do I have to run the installer under each login?

    ''ricmcdav [[#question-1045158|said]]''
    <blockquote>
    I have already installed firefox on about 15 pc's. Just realized it is user specific. Any way change it to all users or do I have to reinstall using "run as admin".
    </blockquote>
    ''forgottengods [[#answer-686397|said]]''
    <blockquote>
    I believe you just use Firefox sync, to have the profiles mimic each other. Here is a link (https://support.mozilla.org/en-US/kb/how-do-i-set-up-firefox-sync).
    </blockquote>
    Thanks but The link returns a page not found,

  • How can I make addons available for enterprise users by an central service and forbid the installation from any other sources

    in the company I´m working for it´s not possible to install add-ons by the Users . That´s what I´m going to change.
    We use Firefox ESR 17 and Window 7.
    I want to make add-ons available for everybody by integrating an internal central service. That is possible by customizing the "extension.webservice.discoverURL" to the server I´m talking about. The Problem is that nobody should be able to install add-ons from any other source, for example addons.mozilla.org, local media,...
    Do you have an idea, how this problem can be solved?
    Maybe there is a possibility by using the lockPref "xpiinstall.enabled false" in conjunction with a whitelist defining my Server?

    Does any of this or similar blogs by the same author help
    *http://mike.kaply.com/2012/07/03/customizing-firefox-blocking-add-ons/
    Although with many hacks there could be some sort of workaround that advanced users may employ when attempting to circumvent the measures, such as the ability to use Firefox in safe-mode and then install add-ons, or even run a browser from a memory stick.
    You may well get a better answer on some other forum. This mozillazine forum deals with some coding issues, not sure but they may consider your sort of question on topic.
    * http://forums.mozillazine.org/viewforum.php?f=25

Maybe you are looking for

  • Java 7 Update 25 does not work consistently with FF 23.0.1 running in Mac OS 10.8.4. All plug-ins are up to date. Why?

    2013 iMac running Mac OS 10.8.4 & FF 23.0.1. When I attempt to access a site (usually a city government site) that requires Java, the applet runs, but the content fails to appear. Sometimes if I play with the various plugins, close FF and restart it,

  • Redundancy Interface for Content Server Release 6.x

    Third-generation Content Server is UCS C220 (Not Vmware). I see from TCS Release 6.x Quick Start which cannot use LAN2. I'm not sure. How to connect LAN for redundancy interface or not because it have many NIC card. Dual 1-Gb Ethernet ports: LAN1 (Ar

  • Error on making package: snownews

    Hi, I'm learning how to build my own packages, succesfully I made fluxbox and gxmame packages, but with snownews I've got an error in makepkg process , I hope you guys help me out. My PKGBUILD: pkgname=snownews pkgver=1.5.6.1 pkgrel=1 pkgdesc="Text m

  • Error updating eDirectory info on a Pool

    Hi all, I have several problems with pools/imanager. Main problem is that when I am updating eDirectory info for a pool, I have a great error: Error: Storage Error IPRINT_POOL: Cannot update eDirectory for this pool. Error Number: Unknown error with

  • Tascam US-800 and Lion

    I bought a Tascam US-800 audio/MIDI interface to replace the US-122 that quit working when I installed Lion (it only has 32-bit drivers). I'm using it with Garageband. It works fine when I first start up/restart the computer, but when I go back to it