More "flexible" watermarking?

I do portraits of show animals.  Which means I want to "sign" my images with a small signature in different spots depending on the particular image.  In LR5, I can place a watermark on an image, but I haven't been able to figure out how to adjust it without creating a NEW watermark.  After doing this enough times, I end up with a couple dozen water marks that all have the same content, but are in very slightly different places.  And, of course, I haven't come up with a way of naming them so I can find exactly which one sits in exactly which spot...
Is there any way to make the positioning of the watermark more flexible, so I can just move it where I want, then export the image WITHOUT having to create a new watermark every time?
Yes, I can VERY easily do this in Photoshop by just dropping a signature with a transparent-background layer on the image, but it seems silly to have to go into Photoshop JUST to put a signature watermark on an image...
Ideas?

Dave,
I do this by having a single Signature Watermark preset that I update each time. Since my signature is almost never going to be in the same place on any image, I don't worry about saving it from export-to-export.
Create a Signature Preset called Floating Signature.  When you are ready to export, invoke Floating Signature. Launch the editor. Move the watermark to where you desire and then Select Update Preset "Floating Signature" from the pulldown at the top left of the Watermark Editor.  It will allow you to use the modified watermark without ending up with many slightly different watermarks.
Not as elegant as you might like, perhaps but it does keep you from getting a big list of slightly-different watermarks, and avoids going to Photoshop.

Similar Messages

  • What is more flexible ?

    Hi,
    Reading the generics faq, I have encountered this text:
    "In general, if you have an API that only uses a type parameter T as an argument, its
    uses should take advantage of lower bounded wildcards (? super T). Conversely, if
    the API only returns T, you�ll give your clients more flexibility by using upper bounded
    wildcards (? extends T)."
    Could anybody please explain me how would somebody benefit
    by using this convention ? Any examples ?
    Thanks,
    Adrian

    Hi Simu,
    That's right - an excellent example :)
    Moreover - I do understand what you write here
    and why it's useful here. But according to what was
    written in the sun's faq (let me quote it again):
    "In general, if you have an API that only uses a type parameter T as an argument, its
    uses should take advantage of lower bounded wildcards (? super T). Conversely, if
    the API only returns T, you�ll give your clients more flexibility by using upper bounded
    wildcards (? extends T)."
    An example you could fit into this convention could be (let's quote again):
    public static <T> List<? extends T> doSomething(List<? super T> l) {
       return new ArrayList<T>();  // what else could I put in here ? I can't
                                                       //put just anything since I don't know what the T
                                                       //is going to be, so no subtypes available ...
                                                      //as for formal method's parameter l - there isn't
                                                      //any other benefit  then being able to invoke eg:
                                                      // l.add() .... or is there something else ?
    }So we accept a parameterized formal method's parameter whose
    type parameter is bounded wildcard. I understand that it is useful
    as we are able to call e.g.: l.add() But sometimes it is not that case
    and we want to accept List<? extends T>. So why does author assume that
    List<? super T> is in general better ? (Why is he assuming that in general
    we want to be able to call parameter's methods which have type parameter
    in its signature more often ?) And secondly, as I wrote as comment, what is
    the benefit of RETURNING List<? extends T> ?
    And have a look at what I wrote about copy method again:
    Original from Collections:
    public static <T> void copy(List<? super T> dst, List<? extends T> src) {}My propose:
    public static <T> void copy(List<? super T> dst, List<T> src) {}They BOTH work.
    Thanks for your patient :)
    Cheers,
    Adrian

  • The Transform Each Effect: more flexibility is needed please...

    Is this really wishful thinking?
    Hi,
    I was reveiwing recently an episode on AdobeTV with Colin Smith regarding a very neat trick applying a style with Illustrator and repeating business cards on the same page. Very cool idea and way of using that effect indeed. I particularly like the fact that you can store and save that effect as a style so you can use it over and over again.
    http://tv.adobe.com/watch/no-stupid-questions-with-colin-smith/illustrator-business-cards/
    A question came up to my mind about an issue and some possible limitations of this "Effect", since it can only resize objetcs by entering  % values but nowhere can one can enter numeric values instead. Of course you can perform that task with the "Transform Pannel" but you cannot do it with the "Transform Each Effect". Let's say that you have many logos on a page that you would like to reduce/enlarge to a certain width or height for each one as 2" width for example, you would have to do the math first to figure our what would be the % and then transfer this result in % to the "Transform Each Effect" so it can do the task.
    In such a case, you cannot use the "Transform Panel"  to reduce all the logos at the same time to a individual width of 2" because Illustrator  then consider the width of all the logos globally or as a "Group" but not each one of them. So you would end up with the wrong result. And, going futher with the math would means further steps and maybe involves then other "Trial an error" tests before acheiving what you are looking for.
    For a better understanding, please view the above video where the author explain and debates quite clearly that point::
    http://youtu.be/V4-Ee9mJAOA
    Like the author says at the end of in his video, you can always make a small "Action Script" but it involves more steps andfurther testings. So more flexibility is needed here from the "Transform Each Effect" and I tend to agree with the gentlemen on that matter. As you may know, many of us who are involved in production the simple task of rearranging/transforming logos is performed many times for certain projects. By adding this feature to the "Transform Each Panel" would be a great help to us all. Also, just imagine if that feature could then be save as a "Style", what a great time saver it would be for all of us!
    I know that you can first rezise one object with the "transform Panel" an then use the the "Transform again" command  in order to apply it to the others. But you cannot do it to all at the same time because Illustrator apply that transformation then globally. Also, if the some logos are let's say of various sizes it does not work at all.
    Is there another way some of you may know how to do it simpler? Is there a special "Plugin" available with Illustrator that you may know who could perform that type of task?
    May I finally point out that i'ts not a matter of doing that small task but the pain rather resides in doing it over and over again. So I do beleive that flexibility is needed here for us all...
    Thanking you in advance and looking forward to read you,
    Robert Marchand
    P.S.:
    Sorry, but English is a "Work in progress" in my case...

    oh yeah. sorry. Two new errors were generated (same
    type). ...Yeah, sorry I didn't look closely enough.
    May I suggest a different approach? This is far from perfect, but is a big improvement of your current code:public class Inventory
        public static void main( String args[] )
            Iteminfo[] myItems = new Iteminfo[3];
            myItems[0] = new Iteminfo( 01, "Laptop", 15, 2000 );
            myItems[1] = new Iteminfo( 02, "Desktop", 25, 1500 );
            myItems[2] = new Iteminfo( 03, "Server", 10, 5000 );
            System.out.println("Inventory Program Part 2\n\n");
            displayItems(myItems);
            System.out.printf( "The total of all inventory is: $%.2f. \n\n", getInvTotal(myItems));
            System.out.printf( "The sorted inventory list is: ");
            sortItemInfo(myItems);
            displayItems(myItems);
        static void displayItems(Iteminfo[] myItems)
            for(int i = 0; i < myItems.length; i++)
                System.out.printf("Item "+(i+1)+": \n\n");
                myItems.displayInfo();
    static double getInvTotal(Iteminfo[] myItems)
    double total = 0.0;
    // Do the same thing with the for-statement here as
    // well, and add everything to the variable total.
    return total;
    static void sortItemInfo(Iteminfo[] myItems)
    // your sort algorithm here
    Try to finish it.
    Good luck.

  • Enhanced Calc Script more flexible than native Essbase Calc Script?

    What makes an Enhanced Calc Script more flexible than native Essbase Calc Script?
    Run on Save or @CALCMODE function or Run time prompts or Can be run over the web or Substitution Variables or Custom Defined Functions.
    Appreciate if u reply ASAP!!
    Thanks in Advance!!!

    Some posts on the subject
    Business Rule
    Business rule
    Business rule
    Cheers
    John
    http://john-goodiwn.blogspot.com/

  • Need for more flexibility in deciding who can edit shopping carts and do GR

    Hello,
    Running ECS SRM 5.0
    As far as I know, there are two options when it comes to who can edit and change shopping carts and also do goods receipt.
    These two options are controlled by roles. The normal is that you can only do this with documents created by you, or you can do this for all documents by using admin role and central receiver.
    My business needs more flexibility here. We want to have ie one person in each organizational unit that can edit SC and do GR for  everybody in his unit (and only there).
    Is there a way this can be controlled, i.e. in a badi?
    I know about shop on behalf of and that is a workaround that we can use, but I am looking for a more smooth solution
    rgds
    GAR

    Hi
    Have you tried using the BADI - BBPWFL_LIST ??_
    Please go through this ->
    Re: How to limit what a Purchaser can see in the Sourcing Cockpit
    Re: Filtering content in the SRM confirmation worklist
    Re: Resctriction while displaying work items in sourcing cockpit..
    Please revert in the event of any query.
    Regards
    - Atul

  • IExternalizable more flexible?

    has anyone used the IExternalizable interface? ...
    I have a fundamental question. When I haved serialized my object ... and have saved as a file .... and now I wants to make some changes in the class ... e.g. add an attribute ... I can not re-convert the file into an object of this class ... because in the readExternal method is now one more attribute, which the stored object (file) does not own ....
    is there a way to make this more flexible?
    -- // german
    Hallo hat schon mal jemand das im Titel erwähnte Interface benutzt? ...
    Habe mal ne grundlegende Frage dazu. Wenn ich mein Objekt serialisiert habe... und als Datei abgespeichert habe.... und nun in der Klasse einige Änderungen vornehmen möchte... z.B. ein Attribut hinzufügen... dann kann ich die Datei nicht wieder in ein Objekt dieser Klasse umwandeln... weil in der readExternal methode nun ein Attribute mehr abgefragt wird, welches das gespeicherte Objekt (Datei) nicht besitzt....
    gibts da Möglichkeiten das flexibler zu machen?
    Beispiel Code:
    Klasse A
         var attr1:String;
    Fall 1: Klasse(Objekt) wird als Datei gespeichert (mit Hilfe von IExternalizable) und auch wieder geladen... alles Prima...  
    Fall 2: Klasse(Objekt) wird als Datei gespeicher ....... und nun wird sie Verändert wie folgt....
    Klasse A
         var attr1:String;
         var attr2:String;
    Bei Fall 2: ist ein laden der gepeicherten Datei zurück in ein Objekt nicht mehr möglich.. Error #2006 The supplied index is out of bounds....  was ja logisch ist... wie macht man das jetzt dynamischer!?

    You can try one of these:
    Sites for Ordering Bound Books
    Ofoto
    Shutterfly
    SharedInk
    ImageStation
    PhotoWorks
    Viovo
    Blurb
    You can also Google for "online books" or "online book creation", etc.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.≤br>
    Note: There now an Automator backup application for iPhoto 5 that will work with Tiger or Leopard.

  • Making GOA more flexible

    Hi everyone!
    I have to make GOA more flexible, do you know maybe how to achive that?:
    1. GOA is replicated not only as a contract in r/3, but can also be replicated to SRM local contract. Is it possible,  for example by assigning it to local purchase organization in SRM (in Distribution)
    or
    2. GOA can be used as a source of supply in SRM, to be able to reffer SRM local PO to GOA.
    SRM 5.0, Extended Classic.
    Thanks in advance for any reaction....

    Hi
    The IDOC to be maintained is: BLAREL
    <u>For more detailed information you can visit the links below -> </u>
    http://help.sap.com/saphelp_srm50/helpdata/en/00/f5c93f4d903b1ce10000000a114084/content.htm
    https://websmp104.sap-ag.de/~sapidb/011000358700002529571998/blarel02_d.htm
    Also you can have look at notes:
    643823
    953269
    671764
    641919
    Regards
    - Atul

  • More flexible imports for Camera Raw please

    Even if there are NO changes to the settings between individual (non-sequential) images, each import of a camera raw file must be approved by clicking okay for each file. In projects which involve hundreds (thousands?) of unique stills this is needlessly tedious.
    Instead, the option of one CR dialogue would suffice that could (again, optionally) be applied to all.
    Adopting Photoshop’s Camera raw dialogue’s ability to process BATCH images in the window and opening them all in PS seems like a natural solution to AE import hangup.
    This should also  allow for the option to re-open the dialogue after import on one or more stills to modify the contents and then close.
    In addition the fact that AE insists that a still need be at least one full second seems like an unnecessary restriction. Why is it not possible to import an image as just one frame?
    The modification I suggest would saves tremendous time and allows for incredible flexibility.
    We had an animation project where we have to manipulate1200 stills in After Effects to create an animation. Since the stills were not shot sequentially and the editing/compositing needed to happen within AE, importing as a sequence was not an option. The impediments in basic import functions added a full day's work just to import the files(!). We ended up selecting the images in LR, applying minor correction, exporting the selects as DNG files, importing them into AE (clicking the OKAY button in the CR dialogue for each of 1200 images) then selecting all the images and creating proxies so they were easier and faster to work with.  (note: we ended up buying a proxy creator script because AE won’t generate proxies for multiple items in one action)
    This is not an isolated case for one project. We require this function all the time. But the tedious importing of 1200 images in one project really broke our morale.
    Thank you for your consideration.
    ><({(º>

    If you have a suggestion for making AE better, please file a feature request. They get tracked and they prioritize what the AE team puts their (limited) resources to. Forum posts can't be tracked, but they are a good way to suggest to other AE users that there might be a new feature they should also request.

  • Any calendar apps available that give much more flexibility in scheduling intervals and notification times?

    I am looking for a calendar app that lets me schedule like Outlook.  For example, Meeting occurs on the 3rd Wed of every month, or event occurs every month on the 21st, or every weekday, etc.  Also would like more options on notification timing than just 2 days or 1 day or 2 hours or 1 hour, etc.  What if I want 2 weeks notification so I can prepare special information, or how about 4 hours notification so I can drive to the meeting, etc.
    Also something that will ACCURATELY sync with my Outlook calendar and NOT duplicate appointments!  As one example, Every time I sync I get ANOTHER instance of my daughter's birthday.  Yes I want to remember, but I only need the one instance.  Last time it came up I was reminded 7 times (all at the same time) about it.  I have to sync then go through the upcoming events and delete duplicates.  A royal pain in the ... behind.
    I am syncing with MS Outlook 2010 on a Windows 7 Home Premium, 64 bit OS and my iPhone has iOS 5.1.1, and is a 4S (model MC922LL).  My iTunes is 10.6.3.25.
    Thanks for your help.

    No point in whinging here, we are all just users. Use Apple feedback.

  • Need more flexibility than photo sites.....

    Looking to make Christmas cards and photo books, and need more customization than allowed on Snapfish, etc.  Any recommendations?

    If you are in Europe try Photobox.com (and if I refer you with your email details I can get a bonus 'gift'!).  

  • More Flexibility for Turning On/Shutting Down Mac

    Greetings,
    I have a Mac which I use to stream iTunes to my ATV 2. However, it is not very accessible to turn on/off. As it is for business demonstration purposes, I set it to turn on and off at specific timings.
    However, it needs to be on from Tuesday to Friday at 11am - 9pm and on Weekends from 9am - 6pm. I searched the net for alternatives as the built in scheduler is too simple. There was no improvements since the first few releases of OS X.
    Perhaps there is something settings in scheduler that I'm missing out or there are 3rd party softwares I could use?
    Please advise.
    Cheers!
    Terry

    I did download this file more than 6 different times and from different macs. Same results. The MBP update is already installed but via the Software update and now I am trying to reinstall it to see if it solves my problem.
    When I run Disk utility, I got an error which I repaired but it seems like it wasn't repaired at all. I verified the permission more than 3 times, repaired more than 3 times, verified the disk and repaired as well but no luck. I keep getting the same log error whenever I try to verify disk permission.
    Here is the log file: http://www.roderickballan.com/mac/
    @ Barney-15E
    Where to find the log file? I can't see anythin when I shut down. It logs out and hang there.
    Thank you both!
    BTW, I am Roody I guess I should join both accounts in some way.
    Message was edited by: iRoody

  • New feature request -- more flexibility in file management

    I'm new to iPhoto and hope someone can help.
    I have a large, existing image database (5000+) that I'd like to migrate into iPhoto. I have an established organizational flow where I use a third-party utility to rename my files using the EXIF date as YYYY.MM.DD_000X.JPG (where "X" is a serial number than is incremented automatically). The photos are then organized into a Finder folder hierarchy using YYYY/MM.
    If in Preferences I check "Copy files to iPhoto library folder" then iPhoto copies all my files to the "iPhoto Library" folder, doubling the disk space consumed. That's a substantial percentage of my Mac Mini's hard drive capacity! Worse, iPhoto arbitrarily organizes the imported files into year 2000 and year 2005 folders, without creating folders for 2001, 2002, 2003, 2004, or 2006. So if I import additional images in the future I have no control over how it will be organized in the Finder. My organizational scheme and workflow are hosed!
    If in Preferences I UNcheck "Copy files to iPhoto library folder" then I lose other necessary functionality. For example, if I delete a file in iPhoto the actual file WON'T be deleted from the disk (even after "Emptying the Trash" in iPhoto). I verified this several times. The file structure on the disk and iPhoto's library will get out of synch unless I manually delete in both places, which is unmanageable if you delete a lot of photos! It also wastes disk space.
    Can't Apple simply add a "Monitor folders" feature like Photoshop Elements and many other programs have which automatically detects when files are added or deleted from the directory structure the library points to? This would be soooo much better than forcing iPhoto users to live with the kind of frustrating trade-offs described above.
    iPhoto is the 3rd or 4th image editing program I've tried over the years. I WANT to like iPhoto because I really like my Mac Mini, but the reality is I may at some point want to move on to something better. If I use iPhoto it appears I either have to live with losing control of my organizational structure or losing basic functionality like having photos deleted from the disk.
    Am I missing something here? Is there a workaround so that I can get what I want from iPhoto?
    Thanks!
    Phil
    Mac Mini Dual Core   Mac OS X (10.4.7)  

    Hi Phil
    Welcome to the iPhoto discussions.
    First thing to remember is that everything you want to do, all the organisation takes place within the iPhoto window. Ignore what goes on in the iPhoto Library folder, you simply never, ever have to do any work in there. In fact it is strongly recommended that you never touch or change anything there as it will profoundly affect the running of the app.
    Given the above, you can import your pics into iPhoto and then Trash your originals. Yes, once you are happy that iPhoto has taken all the pics in, you can throw away your originals, this eliminates the problem of the doubled-up disk space. But, you may ask, what if I want to keep my originals. iPhoto does this for you. If you edit or alter a pic in iPhoto you can always revert to the original as iPhoto keeps the original.
    <<So if I import additional images in the future I have no control over how it will be organized in the Finder. My organizational scheme and workflow are hosed!>>
    Yes it is, totally done for - because you are not organising the pics in the finder any more, you're organising them in iPhoto.
    You can organise pics in just about any way imaginable in iPhoto: by date, by time, by keyword, by ratings by a combination of them all. Want to find the pics taken in June 2003, no problem. Want to find only the pics of your dog taken in June 2003? No problem if you use keywords. Want to find all the pics of your dog that don't have your cat taken any month in 2003 except June? You get the picture.
    Drag a folder of pics to the Source pane in iPhoto, it will create an album. You can recreate you current system in iPhoto quite easily, and then improve upon it. Keywords are particularly powerful, as are smart albums. I have a library of over 8,000 pics, and as I import them I add keywords. With a smart album I can find every pic of my daughter that I have, and as I add more they get added to the smart album automatically.
    You can still continue to rename your files in whatever way is meaningful to you prior to importing. That doesn't have to change. Just do it prior to importing to iPhoto. The you can use Spotlight to find a pic called 2003.10.23_004.
    Or you can just drag it from the iPhoto window to your desktop and it makes a copy - your original is still safe. You can e-mail pics from within iPhoto and so on.
    The most important thing to remember is that your organisation is done within iPhoto. It does the heavy lifting.
    If anything I've said is unclear, don't hesitate to come back and ask more.
    Regards
    TD

  • More flexible jsf tables

    i am trying to build a table using jsf.
    it should group by category (read/unread) and/or date, then the actual data.
    my DTO contains all rows plus the extra info (read/unread+date)
    my first thought was: i just need a table with three rows per item. the first two could then check if a group change occurred and render themselves as colspan="xx". the third row will then contain the values.
    so it turned out, it is not really possible to do this?
    what is your approach to this? what syntax do i need for this?
    i am using myfaces dataTable on this first approach.
    a more dirty approach would be using 3 nested datatables - the main list containing 2 rows read/unread tables containing X rows (one for each date) containing the actual data - very ugly i want to avoid this.

    andreasmbi wrote:
    do you have a short code example for this? html inside datalist or the other way round?Just think logically. The t:dataList renders in fact nothing but just iterates through the items. You need to write HTML around it yourself. You can render HTML conditionally using f:verbatim or h:panelGroup.

  • How to have more flexible printing with keynote

    I would like to print 3 slides on a handout page that use the space well so they can be legible. What I am finding now is the slides come out tiny and tinier when in portrait.
    I would also like to print notes legibly- they are so teeny- and have them on the same doc as the slides so i can study my notes. why is this now seeming so difficult whereas the former keynote version had many more options?
    Thanks,
    Sri

    We are all waiting on an update to fix this problem, no idea when this will happen.

  • More flexibility for cakendars

    I have been asked to produce calendars for a number of clients but have found iphoto's calendar feature frustrating as you cannot add artwork or company logo to the lower section of the front cover under the main image. It would be great if Apple could add an image place holder like the ones used on pages templates to add small images where the text is placed to give the look a more personal or corporate feel. - So come on Apple, send us an update!
    Jayson.

    If you have a local source to print calendars there's a way you can add your additional graphics to the pages.
    1 - while in the calendar mode start to Print and select PDF->Send PDF to iPhoto. That will create a 2000 x 1600 pixel jpg file for each page of the calendar an import it into iPhoto. (Note: immediately do a batch rename and set the title to Page. This will re-title the files Page -01, -02, etc. so you won't have any problem keeping them in order. You'll know what I mean when you see the naming convention that is used)
    2 - using a 3rd party editor like Photoshop Elements, PS,Acorn or other application that handles layers, add your graphics, flatten the image and save as a jpg. Not familiar with InDesign but it might be able to edit the jpgs also.
    3 - you can recombine the pages into a pdf file by using Combine PDFs. It will take graphic files as well as pdf files and join them into a new pdf file. Add the jpg files in order and save. You can have a local printer like The UPS Store (formally Kinkos). They offer calendars which are wire bound similar to Apples so should be able to print your pdf and bind it.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    Note: There now an Automator backup application for iPhoto 5 that will work with Tiger or Leopard.

Maybe you are looking for

  • How to add a new column (Project Number) in the action items table under NPD Module?

    There are two projects with same name and created by same person in NPD. So when it is displayed in "Action Items" table, It looks similar. To avoid this, I need one more column (Project Number) to be added in the "Action Items" table and " Strategic

  • Isight camera recording left to right in photobooth

    Please Help my isight camera is recording left to right in photobooth

  • UNDO in TextArea

    Hello! Is there a way to allow CTRL+Z (undo) for text written in TextAreas? Thank you!

  • Solaris 10 x86 Version

    So, when is Adobe going to get their heads out of their collective ***** and release FM for Unix again (Solaris and Mac)?  I grew up with FM under Unix (way back to version 2).  The Solaris sparc 5.5 version is way out-of-date. There are several of u

  • Editing Pdfs using the Annotations and Drawing Markups

    I regularly use the Annotations and Drawing markups on Pdfs on Mac to edit, but since updating to Adobe Reader 11 everything has gone haywire. The Pdf freezes constantly. Although I can still edit on screen, none of the Markup shows in the toolbar so