Share saved optimize settings?

Optimization settings include options unavailable in distiller settings ("Discard external cross references" is of special interest). The "PDF Optimizer" screen in  Acrobat Pro X includes an option for saving optimizer settings. (To reach the screen, select File > Save As > Optimized PDF.)  Is there a way to then share those settings with others? I have a team of 15 people who create their own PDFs, and I'd like them to all use the same optimization settings. Obviously I don't want to have to set up each user's settings individually.

Whether I save the custom settings to the "Users/[username]/AppData/Roaming/Adobe/Adobe PDF/Settings" from the PDF preferences or use Distiller to modify the settings and try to save (running distiller as administrator), I am unable to load a joboptions file.
(Win7pro, Acrobat X)

Similar Messages

  • PDF Optimizer Settings: Where Are They Saved?

    PDF Optimizer Settings: Where Are They Saved?
    That is, the ones that you create and then Save.
    Also the default one which came along Acrobat Pro (i.e. Standard etc)
    Thanks

    They are stored in the Acrobat User Preferences Area.  The same location is used for Pro, Standard, and Reader.  But the exact location is OS dependant.
    Open up the JavaScript Console window and run this line of code. (instructions at the links below)
    app.getPath("user","preferences");
    Thom Parker
    The source for PDF Scripting Info
    pdfscripting.com
    The Acrobat JavaScript Reference, Use it Early and Often
    Then most important JavaScript Development tool in Acrobat
    The Console Window (Video tutorial)
    The Console Window(article)

  • With Premiere elements 11, when Publish/Share (saving) a finished video, selecting H.264  .mov file type, what are the recommended Codec and Aspect settings for a crisp video and a small file size?

    With Premiere Elements 11, when Publish/Share (saving) a finished video, selecting H.264  .mov file type, what are the recommended Aspect and Codec settings , for a crisp video with a small file size?

    Gary Krouse
    We will customize a very detailed reply, but
    (a) What are the properties of your source media?
    (b) What did you or the program set as the project preset to match the properties of the source media?
    (c) What specific requirements do you have for this H.264.mov export file?
    File size can be a compromise between bitrate, file size, and quality.
    Thanks.
    ATR

  • Where are Optimizer settings stored?

    I need to deploy PDF Optimizer settings throughout my organization, like I did with joboptions.
    So far I have been unsuccessful in searching for a file with the name into which I saved my optimizer settings.
    Where are the optimizer settings stored?  I would hate to have to set these all manually for everyone.
    Any help will be greatly appreciated.

    Hi All,
    Thanks for the info.  I think this is what I need, but I opened the Javascript console and pasted in the code and nothing happened.
    (Programming, javascript, etc are not my area of expertise. My core competency is writing/editing.)
    What else do I need to do to make the Console recognize and respond that line of code?

  • PSC 2510 - Wireless setup - "Error while saving the settings to the device."

    While trying to setup my PSC 2510 to be wireless I get an error message "Error while saving the settings to the device.". This comes after selecting connecting Through Network, selecting printer device, selecting WEP, entering key, and clicking next.
    PSC 2510
    Windows Vista
    Using latest sfotware from HP to install
    Thanks
    Dennis
    This question was solved.
    View Solution.

    ISSUE RESOLVED .. based on responce from PrintDoc to penn (refrence topic "C4385 Printer - Netgear DGN2000 - wireless setup".
    PrintDoc responce helped me find my problem (to reset network settings on the printer to factory) even though diffrent printer.
    Thanks

  • Error saving column settings with ORA-01403: no data found Error

    Hi
    I have a region with multi row report updatable.
    When I am trying to change the query I am getting below error.
    Anybody let me know what will be the problem.
    ORA-01403: no data found
    Error saving column settings
    Regards
    Kiran

    Hi
    I was using below query for this region.
    SELECT
    result.segment1 Item#,
              result.inventory_item_id,
              result.revision,
              result.lot_number,
              result.Lot_Onhand,
              result.Heat,
              result.Cert_Site_Number Cert_Site_Number_Display,
              result.status_code Status_Code_Display,
    result.Cert_ID Cert_ID_Display,
              result.Cert_Site_Number,
              result.status_code,
    result.Cert_ID,
              result.transaction_id,
    result.po_header_id,
    result.po_line_id,
    result.rcv_transaction_id,
    result.shipment_header_id,
    result.shipment_line_id
    FROM          
    SELECT      
    msi.segment1,
              mmt.inventory_item_id,
              mmt.revision,
              mtln.lot_number,
              xx_utility_pkg.get_available_qty(mmt.inventory_item_id,mmt.organization_id,mmt.subinventory_code,mtln.lot_number,'ONHAND') Lot_Onhand,
              mtln.attribute1 Heat,
              mtln.attribute2 Cert_Site_Number,
              mms.status_code,
                        (          SELECT     clx.cert_id
                        FROM     xxqc.cert_mst cm,
                                  xxqc.cert_lot_xref clx
                        WHERE      cm.cert_id = clx.cert_id
                        AND cm.cert_type='MILL'
                        AND     clx.lot_no = mtln.lot_number
              ) Cert_ID,
              mmt.transaction_id,
              rsl.po_header_id,
              rsl.po_line_id,
    mmt.rcv_transaction_id,
    rt.shipment_header_id,
    rsl.shipment_line_id
    FROM      mtl_material_transactions mmt,
              mtl_transaction_lot_numbers mtln,
              mtl_material_statuses_tl mms,
              rcv_transactions rt,
              rcv_shipment_headers rsh,
              rcv_shipment_lines rsl,
    mtl_system_items_b msi
    WHERE     mmt.transaction_id = mtln.transaction_id
    AND          mmt.organization_id = mtln.organization_id
    AND          mtln.status_id = mms.status_id
    AND          rt.transaction_id = mmt.rcv_transaction_id
    AND          rsh.shipment_header_id = rt.shipment_header_id
    AND          rsl.shipment_header_id = rsh.shipment_header_id
    AND          rsh.organization_id = mmt.organization_id
    AND          rsl.item_id = mmt.inventory_item_id
    AND msi.inventory_item_id=rsl.item_id
    AND msi.organization_id = mmt.organization_id
    AND          rsl.po_line_id = DECODE(:P5_PO_LINE_NUMBER, 0,rsl.po_line_id,:P5_PO_LINE_NUMBER)
    AND rsl.po_header_id IN (     SELECT     po_header_id
                        FROM      po_headers_all
                        WHERE      segment1 = :P5_PO_NUMBER
                        AND      org_id = :P5_ORG_ID)
    AND          mtln.status_id = 90 -- Which is 'T' Status means Temporary
    AND          mmt.transaction_action_id = 27
    AND          mmt.transaction_source_type_id = 1
    AND          mmt.transaction_type_id = 18
    ) result
    WHERE result.Lot_Onhand > 0
    when I use above query I am able to update the region perfectly.
    But when I comment last WHERE CONDITION I am getting above problem.
    What could be the possilbe reason for this?
    Regards
    Kiran Akkiraju

  • What are the best optimization settings for Logic 9....

    Hey guys,
    I am running Logic 9 on a Macbook Pro 2.53GHz, Intel Core 2 Duo, 4GB RAM, OSX 10.6.4, with a AK1 soundcard. And I was wondering what the best optimization settings for this setup are?
    I have been having a few issues with drop outs in sound during playback, which is also carried over when i bounce the audio. I did some research and found my latency settings needed to be higher, so I set the I/O buffer size to 512. I am also running all samples from the local hdd, I was thinking maybe put the samples on an external drive. I also changed Logic 9 to 64bit mode.
    Does anyone know if this is right and anything else I need to do with Logic and/or the AK1??

    First, return to 32-bit mode. 64 bit still has some ß-issues and some features that are not working/disabled, and the only perk of 64-bit is that Logic can adress more than 4 GB RAM, which you don't have anyway.
    Samples on the startup drive is not a problem, unless you start using really big third party sample libraries, or zillions of EXS instruments. Some of the Logic content insists on residing on the startup disk anyway, better leave that where it is.
    If you have an external, use that to store your Logic projects, or, in other words, make it your recording disk (as recordings are stored in the project folder). You do record audio too, I assume? Anyway, if you get an external, make it a FireWire one, not USB. FireWire is much easier on the CPU, and +for audio (and sample-) streaming+ more reliable and faster than USB.
    If dropouts you hear during playback also show up in the (offline?) bounce, it is probably not a buffer issue, as the buffer is irrelevant for bouncing offline.
    So how many tracks and what kind of tracks in this project? Which plugins and how many instances of them?

  • How can i keep the optimize settings in Muse

    Hello
    I just uploaded a web site www.coopdebici.com
    I was very carefully optimizing the images in adobe photoshop, and make them always at 100%.
    When the web site was oline i takes a lot to charge some images and i just realized that Muse increase a lot the file size of most of them!
    So, how can i keep the original optimize settings?
    I don't want to replace the images manually using ftp
    Help me please
    Sebastián

    I just realized what happens.
    I see that some images keep the original names an its compression and size, but other images doesn't.
    The "problem" is with the round corners that i used, the original images are in jpg, but in order to make the round corner the Muse convert them in to png and it increases a lot the file size.
    This can be helpful for you

  • Error Saving Localized Settings mean?

    In the last month or so, I have received the following message when trying to open videos on the web and even my local weather forecast:
    "Error Saving Localized Settings
    Application is unable to access your file system "
    I get it in Safari (6.0.5) as well as Firefox.
    What does it mean?

    Good morning:
    This is not a new problem as evidenced by some web blogs going back three years.
    It started when I disabled Java Script......the victim of a lot of cautionary items on its security issues.
    Then odd things wouldn't play such as the hour-by-hour temperature display on a local TV station's site.
    And occasional video links off reputable news sites. But not Youtube.  Safari and Firefox are both afflicted.
    I enabled Java, repaired disk permissions (which I do on a regural basis) plus a few other tricks I know.
    Upgrades, etc., all  up to date.
    No luck.
    I have had three I-Macs over 13 years and Apple Care for 12 of those years.  Gawd how I miss 'em!
    I'll try your suggestions.
    Thank you!

  • In version 10.1 fcpx how do I edit in proxy, then when I am finished share with optimize footage? It was easy in 10.9 version, but I can't figure this out in 10.1, please help.

    in version 10.1 fcpx how do I edit in proxy, then when I am finished share with optimize footage? It was easy in 10.9 version, but I can't figure this out in 10.1, please help.

    The switch is in the upper right of the viewer.

  • GConf: "saving configuration settings will not be possible"

    Hello folks.
    I'm new to Arch, but not new to Linux. This problem has me stumped.
    I've just installed Gnome on top of a fresh Arch install, apart from Firefox, a few daemons (HAL, FAM), and some laptop related settings (cpufreq, pm-utils), there's nothing else on here at the minute. I've followed the instructions on the wiki, and I've Googled my heart out about this problem without a solution.
    Gnome starts fine and appears to work okay, but it refuses to save certain settings, specifically in the Sessions tool (I'm trying to setup Compiz). When I start the GConf Editor tool, these errors appear in everything.log:
    Aug 18 03:32:18 gconfd (dane-7460): starting (version 2.22.0), pid 7460 user 'dane'
    Aug 18 03:32:18 gconfd (dane-7460): Resolved address "xml:readonly:/etc/gconf/gconf.xml.mandatory" to a read-only configuration source at position 0
    Aug 18 03:32:18 gconfd (dane-7460): Resolved address "xml:readwrite:/home/dane/.gconf" to a writable configuration source at position 1
    Aug 18 03:32:18 gconfd (dane-7460): Resolved address "xml:readonly:/etc/gconf/gconf.xml.defaults" to a read-only configuration source at position 2
    Aug 18 03:32:18 gconfd (dane-7460): Resolved address "xml:readwrite:/home/dane/.gconf" to a writable configuration source at position 0
    Aug 18 03:32:41 lap-de dhcpcd[4889]: eth0: adding IP address 169.254.60.234/16
    Aug 18 03:33:22 lap-de dhcpcd[4889]: eth0: adding IP address 169.254.60.234/16
    Aug 18 03:34:03 lap-de dhcpcd[4889]: eth0: adding IP address 169.254.60.234/16
    Aug 18 03:34:44 lap-de dhcpcd[4889]: eth0: adding IP address 169.254.60.234/16
    --- These following errors occur after GConf Editor is started
    Aug 18 03:35:11 gconfd (dane-7460): Resolved address "xml:merged:/etc/gconf/gconf.xml.defaults" to a read-only configuration source at position 0
    Aug 18 03:35:11 gconfd (dane-7460): None of the resolved addresses are writable; saving configuration settings will not be possible
    Aug 18 03:35:11 gconfd (dane-7460): Resolved address "xml:merged:/etc/gconf/gconf.xml.mandatory" to a read-only configuration source at position 0
    Aug 18 03:35:11 gconfd (dane-7460): None of the resolved addresses are writable; saving configuration settings will not be possible
    I've deleted my ~/.gnome* and ~/.gconf* directories and started again, and this error still appears.
    Short of changing the permissions on /etc/gconf (which I presume is The Wrong Thing to do), I'm not sure how else to approach this problem.

    When you update to Firefox 4 it will use your existing bookmarks, passwords and other user data.
    Firefox 4 is currently scheduled to be released next week.

  • Today my daughter could download 2 aps on her phone without my permission.  We are part of family share and her settings show that she needs my permission to download anything.

    Today my daughter could download 2 apps on her phone without my permission.  We are part of family share and her settings show that she needs my permission to download everything.  How could she download the apps if I did not giver her permission.  I thought that was the point of family sharing in the cloud.

    Yes, Family sharing is almost not useable this way. Once you activate it you won't be able to load some of the best/essential apps even though they are free. But they are blocked by the Patriarch of the Family. :-(...
    I do not understand why this issue does not get bigger Attention? Does noone use familiy sharing yet? Or do they activate it right after they have loaded all those essential apps beforehand?
    http://dict.leo.org/#/search=patriarch&searchLoc=0&resultOrder=basic&multiwordSh owSingle=on

  • Energy Saver optimization settings missing in 10.5.8

    I seem to have lost my optimization settings in the Energy Saver preference pane. I'm using a unibody MBP 13" running on 10.5.8, with Energy Saver version 4.4.3.. Does anybody else have this problem, and/or has anybody found a solution? Appreciate any help.

    I'm my case there are NO options whatsoever for either battery or power adapter.
    I have gone through the other posts and it seems to have been a problem in 10.5.6 that was resolved in 10.5.7, the difference being that the options were not available ONLY in the pull down menu at the menu bar but available in the System Preferences pane. What version of Energy Saver are you running? Mine is 4.4.3 as per the System Profiler. Is there any way to update this, if mine is not the latest version?

  • Iphoto not saving slideshow settings

    HELP!  I am DESPERATE!!!!!  I have been working on a 45 minute slideshow for my parents 50th wedding anniversary party ALL WEEK.  Iphoto is NOT SAVING my settings for the transisions between photos or the time each slide plays for. It is happening at random. No one at Apple has been able to help me...as a matter of fact I thought I was going to really lose it for about the 10th TIME when the last guy I spoke to tonight told me that I needed to speak with an IAPP advisor as he could not help me only being a senior advisor.  My questions is WHY THE HECK HAVE I NOT BEEN transferred to an IAPP advisor all week when I have been calling them repeatedly trying to get issue resolved.  This was the only person who said I should speak to someone in IAPP.  I now have only FRIDAY to get this resolved as the party is at my house on SATURDAY!!!! 
    I know other people have had some similiar problems (glitches) from searching the internet and yet the people I have been speaking with say they have never had someone call up with this problem.....???? 
    Anyone else out there have this problem and find a way to fix it? 
    (BTW--they already had me go the route of trashing the psist file and some cache file among other things......)

    Terence
    Thank you for replying.  My ranting was just out of utter fustration of literally sitting at a computer since Sunday redoing and redoing everything in order to have try and have a nice slideshow for my parents rather than just dumping a bunch of photos & music into a slideshow.  It loses its punch when things don't fall into the proper place or transition right.....
    2 things Apple had me do initially:
    move a cache file and psist file out of library to desktop and then into my trash (I then did a secure empty trash)
    senior advisor tried to have me duplicate the problem while he was accessing my computer---COULD NOT. He said unless I can duplicate for him he can't help me.  He also said that he has never heard of anyone else complain of this & has never heard of anyone making a slideshow so big???  Really?  It is 45 minutes with 375 pictures.  While a little lengthy I find it hard to believe they are not used to anyone makng a slideshow this long.
    Anyways later I called back when I felt I could duplicate issue.  I spoke with another rep.  He had me change ALL SLIDES from 5 seconds to 1 second and unclick default transition thinking that this could be causing the system to keep wanting to ovverride my manual individual settings if I had any slide less than 5 seconds or another transition.  However he also was miffed by the "size" of my slideshow and said that Iphoto slideshow really wasn't meant for something of this size and suggested I use IMovie.  While I had never used it I tried it. After spending all day getting the photos in IMovie and in same order I started editing the transitions and slide times....well this was no good because if I changed one thing it caused a ripple effect and changed stuff.  Sooooooo I called Apple back and spoke with Senior advisor that told me that this is what Imovie does and I really should not use it for what I was trying to do ....he still felt iphoto slideshow was the way to go.  So we went back to iphoto slideshow hoping that the couple of small changes the other advisor had me do had worked....no luck. I then decided to try and start fresh with NEW slideshow, new settings and break up my one big slideshow into smaller slideshows & then eventually dumpt into Imovie......No luck.  With about 30 photos I noticed it wasn't saving my slide times again or now the speed of transitions.  So the bottom line is that there is a GLITCH with iphoto and I have seem similiar complaints on these forums. 
    I greatly appreciate your suggestion of trying other apps and would definately do that if I had the time but alas the party is tomorrow and I have only today to get it resolved and redone. 
    Thank You for Your Time
    Heidi

  • HFR - Data Query Optimization Settings

    hi
    In HFR, in a grid there are Data Query Optimization Settings, can you please help me on the settings property.
    Our report fetches data using lot of attributes. When we don't use MDX setting, it fetches very fast, but the alias doesn't come.
    However, when we use MDX setting, the alias comes, but the report takes lot of time to run(approx 1 min / row of data fetched)
    Can you please guide on the same.
    Thanks

    pm wrote:
    Hi ,
    I am working on below query optimization/Tuning.
    SELECT
    c_date,
    c1,
    c2,
    c3,
    c4,
    c5,
    c6
    FROM tab1
    WHERE
    ROWNUM <= &param
    AND ( c_date BETWEEN &date1 AND &date2 )
    AND c3 in (
    select c3
    from tab2
    where xxx='abc')
    ORDER BY c1, c_date;
    Note : &param,&date1 ,&date2 are parameters runtime getting from UI code .
    tab1 having huge data around 10lacs to crores. and it has range partition on c_date column and subpartiotion on c1 column.
    To get best throughput in less time, what i need to do ?
    Please do let me know steps to tune/optimize the sql query.Also which hint we can use on sql query to better results.
    Thanks in advanced.
    PMBefore you start worrying about performance tuning you should worry about the query being incorrect.
             WHERE
                 ROWNUM <= &param
                 AND   ( c_date BETWEEN &date1 AND &date2 )
                 AND c3 in (
                                             select c3
                                             from tab2
                                             where xxx='abc')
             ORDER BY c1, c_date;Presumably you want to limit the number of rows with the ROWNUM predicate AFTER the ORDER BY clause is applied.
    Please read this and learn how queries are actually processed, I can almost guarantee you this query is not doing what you think it is doing at present.
    http://www.oracle.com/technetwork/issue-archive/2006/06-sep/o56asktom-086197.html
    Cheers,

Maybe you are looking for

  • HELP! HELP! Please.... Cannot send email via SMTP....

    Hi, Not posted here before but this really is a last ditch attempt to get my email working. I'm at my wits end with this. I reported a problem that I could not send mail via SMTP (with Outlook) last December (2014). I kept getting a message from the

  • How to embed a Jpanel in JFrame

    I have made two JPanel classes JPanelclass1 JPanelclass2 and a JFrame class JFrameclass1 in netbean 5.5.1 I want to embed that JPanel in the JFrame and when a button is clicked the ist JPanel dissaper and the second JPanel appears on the same JFrame.

  • Itunes library back up question?

    Hello, I have a question about my Itunes library. I went and ripped all of my CD's through Itunes. I was wondering if there was anyway I could get those ripped files and save them to my PC. I have my Itunes library backed up, but was wondering if thi

  • Trend Analyzer Plotting Zeros (0)

    Hi, I have a simple combo chart plotting sales figures, I wanted to add a simple Trend line using Trend Anlyzer.  I add another series to my chart to point it to the Trend results cells.  When I preview, the Trend Results Cells are all populated with

  • How to get PERNR based on user ID

    Hi All, How to get PERNR based on userid. please help me in resolving this. Thanks for the support. Regards, Dhananjaya R E