Preview 4.2 and Adobe 9.1.2 -- compatible??

Received a .pdf file that said open with Adobe Reader 9.0. I opened with Preview (4.2) and all filled fields (including check boxes) were visible. I inserted a scanned signature page and when I sent the .pdf file back to a PC user, all of the filled fields (check boxes as well) were blank. I installed Adobe Reader 9.0 (9.1.2 update) and my field were blank as well. I have never had a problem going between the two before. Any thoughts?

Network,
While I don't disagree with anything you've said, I feel some clarification is necessary.
Network 23 wrote:
Preview is fine for most things.
By "most", you mean 99.923% of all PDFs.
The PDF format is capable of much more than Apple supports, and Apple is not always up to date with their PDF version support, so there are a few cases Preview can't handle. For example, in filling out PDF forms, showing overprints and transparency properly in a CMYK file, and some of the online shared document review features. Adobe Reader does all that better. If you don't run into situations like that, you might be fine with Preview.
I haven't run into any of those situations in several years. I did have some fill-in PDF forms recently, but the Mac version of Reader had such poor text alignment that I actually had to use the full version of Acrobat in Windows. In the end, I wasted my time because the lawyers re-typed it all anyway.
So, the moral of my story is that very few people need anything more than Preview. For those that do, there are great freeware programs like Skim and shareware like PDFClerk that do far more than Acrobat . So, if you are having trouble downloading Acrobat or installing it. Or if you are still waiting for it to launch. Or if Acrobat has thoroughly trashed your printer drivers or "Save as PDF" feature, just use something else.

Similar Messages

  • Preview in Browser and Adobe Browser Lab show website differently? Please help

    Hi...working on my first website and I have a question about the differences in viewing the site through
    choosing file...preview in browser....
    from within Dreamweaver, and using the Adobe Browser Lab to view the website.
    There seems to be a very significant difference between the two. When I preview firefox from within dreamweaver, my site is just how I want it.
    When I go to browser lab, it is...well... a disaster.
    I'm attaching screenshots of the two as well as my code, so it can show how different they are. Here is a screenshot of the website as it looks when I use the preview in browser function from within dreamweaver to view it in firefox. This is how I'd like it to look.
    And here is a screenshot of what it looks like when I preview it in Adobe Browser Lab in Firefox.
    The quote is underneath the logo, the left div text is flowing over the center div, the nav bar graphics are too narrow, the photo is hanging outside the div it should be contained in. Not what I want.
    Does anyone have any insight into how I would fix this or which version is correct?
    I'm stumped. This is my first website: shouldn't these two things be similar? And which one is correct?
    and here is my code:
    <!DOCTYPE HTML>
    <html>
    <head>
    <meta charset="UTF-8">
    <title>Your Career Direction Career and College Counseling</title>
    <style type="text/css">
    <!--
    @font-face {
        font-family: 'museo_sans_500regular';
        src: url('museosans-500-webfont.eot');
        src: url('museosans-500-webfont.eot?#iefix') format('embedded-opentype'),
             url('museosans-500-webfont.woff') format('woff'),
             url('museosans-500-webfont.ttf') format('truetype'),
             url('museosans-500-webfont.svg#museo_sans_500regular') format('svg');
        font-weight: normal;
        font-style: normal;
    @font-face {
        font-family: 'museo_sans_500italic';
        src: url('museosans-500italic-webfont.eot');
        src: url('museosans-500italic-webfont.eot?#iefix') format('embedded-opentype'),
             url('museosans-500italic-webfont.woff') format('woff'),
             url('museosans-500italic-webfont.ttf') format('truetype'),
             url('museosans-500italic-webfont.svg#museo_sans_500italic') format('svg');
        font-weight: normal;
        font-style: normal;
    @font-face {
        font-family: 'binary_itcregular';
        src: url('binaritcbol-webfont.eot');
        src: url('binaritcbol-webfont.eot?#iefix') format('embedded-opentype'),
             url('binaritcbol-webfont.woff') format('woff'),
             url('binaritcbol-webfont.ttf') format('truetype'),
             url('binaritcbol-webfont.svg#binary_itcregular') format('svg');
        font-weight: normal;
        font-style: normal;
    }body {
        margin: 0;
        padding: 0;
        color: #000;
        font-size: 100%;
        line-height: 1.4;
        background-image: url(images/background.gif);
        background-repeat: repeat;
    /* ~~ Element/tag selectors ~~ */
    ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
        padding: 0;
        margin: 0;
    h1, h2, h3, h4, h5, h6, p {
        margin-top: 0;     /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
        padding-right: 15px;
        padding-left: 15px;
        font-family: "Museo Sans 500", "Museo Sans 500 Italic", "Museo 700", "Museo 500", "Museo 300", Arial;
    h1 strong {
        color: #C60651;
        font-size: 90%;
        font-family: "Binary ITC Bold";
    h1 strong em {
    a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
        border: none;
    /* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
    a:link {
        color:#414958;
        text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
    a:visited {
        color: #4E5869;
        text-decoration: underline;
    a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
        text-decoration: none;
    /* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
    .container {
        width: 80%;
        max-width: 1260px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
        min-width: 780px;/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
        background: #FFF; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
        margin-top: 0;
        margin-bottom: 0;
        margin-right: auto;
        margin-left: auto;
        font-family: "Museo Sans 500", "Museo Sans 500 Italic", "Museo 700", "Museo 500", "Museo 300";
        border-right-width: thick;
        border-left-width: thick;
        border-right-style: solid;
        border-left-style: solid;
        border-right-color: #C60651;
        border-left-color: #C60651;
    /* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
    .header {
        padding-top: 40px;
        font-family: "Museo Sans 500", "Museo Sans 500 Italic", "Museo 700", "Museo 500", "Museo 300", Arial;
    #Quote {
        float: right;
        clear: left;
        margin-right: 50px;
    /* ~~ These are the columns for the layout. ~~
    1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.
    2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.
    3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.
    4) If you prefer your nav on the right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.
    .sidebar1 {
        float: left;
        width: 15%;
        padding-bottom: 10px;
        margin-top: 40px;
        border-top-color: #FFF;
        border-left: #FFF;
        margin-left: 25px;
        background-color: #FFF;
        font-family: "Museo Sans 500", "Museo Sans 500 Italic", "Museo 700", "Museo 500", "Museo 300", Arial;
    .content {
        width: 60%;
        float: left;
        margin-top: 40px;
        padding-top: 10px;
        padding-right: 10px;
        padding-bottom: 10px;
        padding-left: 0;
        font-family: "Museo Sans 500", "Museo Sans 500 Italic", "Museo 700", "Museo 500", "Museo 300", Arial;
    .sidebar2 {
        float: left;
        width: 30%;
        background-color: #D3CCB2;
        margin-top: 40px;
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 0;
        border-top-color: #FFF;
        border-right-color: #FFF;
        border-bottom-color: #FFF;
        border-left-color: #FFF;
        border-right-width: 5px;
        font-family: "Museo Sans 500", "Museo Sans 500 Italic", "Museo 700", "Museo 500", "Museo 300", Arial;
    /* ~~ This grouped selector gives the lists in the .content area space ~~ */
    .content ul, .content ol {
        padding-top: 0;
        padding-right: 25px;
        padding-bottom: 15px;
        padding-left: 60px;
        font-family: "Museo Sans 500", "Museo Sans 500 Italic", "Museo 700", "Museo 500", "Museo 300";
        font-size: 100%;
        color: #666;
    #Quote {
        float: right;
        clear: both;
    /* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
    ul.nav {
        list-style: none; /* this creates the space between the navigation on the content below */
        font-family: "Museo Sans 500", "Museo Sans 500 Italic", "Museo 700", "Museo 500", "Museo 300", Arial;
        line-height: 250%;
    .nav {
        font-family: "Museo Sans 500", "Museo Sans 500 Italic", "Museo 700", "Museo 500", "Museo 300", Arial;
    ul.nav li {
        font-family: "Museo Sans 500", "Museo Sans 500 Italic", "Museo 700", "Museo 500", "Museo 300", Arial;
    ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
        padding: 5px 5px 5px 15px;
        display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
        text-decoration: none;
        color: #333333;
        background-color: #FFF;
        font-family: "Museo Sans 500", "Museo Sans 500 Italic", "Museo 700", "Museo 500", "Museo 300", Arial;
    ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
        color: #C60651;
        font-family: "Museo Sans 500", "Museo Sans 500 Italic", "Museo 700", "Museo 500", "Museo 300", Arial;
        background-color: #FFF;
        background-image: url(images/navbar2.gif);
    /* ~~The footer ~~ */
    .footer {
        padding: 10px 0;
        position: relative;/* this gives IE6 hasLayout to properly clear */
        clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
    /* ~~miscellaneous float/clear classes~~ */
    .fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
        float: right;
        margin-left: 8px;
    .fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
        float: left;
        margin-right: 8px;
    .clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
        clear:both;
        height:0;
        font-size: 1px;
        line-height: 0px;
    .container .content {
        width: 50%;
        font-size: large;
    #footer {    width: 100%;
        background-color: #FFF;
    .container .sidebar2 h4 img {
        padding-left: 20px;
        padding-top: 0px;
    .sidebar2 p img {
        border: medium solid #C60651;
    #Insert_logo2 {
        border-top-width: 4px;
        border-right-width: 4px;
        border-bottom-width: 4px;
        border-left-width: 4px;
        border-top-color: #fff;
        border-right-color: #fff;
        border-bottom-color: #fff;
        border-left-color: #fff;
    .container .content p .content strong {
        font-family: "Museo Sans 500", "Museo Sans 500 Italic", "Museo 700", "Museo 500", "Museo 300", Arial;
    .container .content .content {
        font-family: "Museo Sans 500", "Museo Sans 500 Italic", "Museo 700", "Museo 500", "Museo 300", Arial;
    .container .content ul li strong {
        font-family: "Museo Sans 500", "Museo Sans 500 Italic", "Museo 700", "Museo 500", "Museo 300", Arial;
        font-size: 95%;
        line-height: 150%;
        list-style-type: disc;
    test {
        font-family: "Binary ITC Bold";
    .container .sidebar2 p img {
        margin-right: auto;
        margin-left: auto;
        border-top-width: medium;
        border-right-width: medium;
        border-bottom-width: medium;
        border-left-width: medium;
        border-top-color: #C60651;
        border-right-color: #C60651;
        border-bottom-color: #C60651;
        border-left-color: #C60651;
    li strong {
        line-height: 130%;
        list-style-type: circle;
        color: #978980;
    .container .content ul {
    .container .sidebar1 .nav {
        margin-top: 10px;
        margin-bottom: 10px;
    .nav li a {
        background-image: url(images/navbar2.gif);
        background-repeat: no-repeat;
        background-position: right center;
        left: auto;
        right: auto;
        clip: rect(auto,auto,auto,auto);
    .container .sidebar1 h6 {
        padding: 0px;
        color: #000000;
    #footer h3 strong {
        font-size: 60%;
        color: #978980;
    .container .content p {
        padding-left: 5%;
        padding-right: 5%;
        font-family: "Museo Sans 500", "Museo Sans 500 Italic", "Museo 700", "Museo 500", "Museo 300", Arial;
    .container .sidebar2 p {
        padding-right: 8%;
        padding-left: 8%;
        padding-top: 5px;
    #Insert_logo2 #Insert_logo2 {
        padding-left: 15px;
    .container .content ul {
        color: #C60651;
    h6 {
        color: #000;
        font-family: "Museo Sans 500", "Museo Sans 500 Italic", "Museo 700", "Museo 500", "Museo 300", Arial;
    .sidebar1 h8 strong {
        font-size: 80%;
        font-family: "Museo Sans 500", "Museo Sans 500 Italic", "Museo 700", "Museo 500", "Museo 300";
    .container .sidebar1 h7 {
        font-size: 40%;
        color: #978980;
    .h7 {
        font-family: "Museo Sans 500", "Museo Sans 500 Italic", "Museo 700", "Museo 500", "Museo 300", Arial;
        font-size: 15%;
    .container .sidebar1 h8 {
        font-family: "Museo Sans 500", "Museo Sans 500 Italic", "Museo 700", "Museo 500", "Museo 300", Arial;
    -->
    </style><!--[if lte IE 7]>
    <style>
    .content { margin-right: -1px; } /* this 1px negative margin can be placed on any of the columns in this layout with the same corrective effect. */
    ul.nav a { zoom: 1; }  /* the zoom property gives IE the hasLayout trigger it needs to correct extra whiltespace between the links */
    </style>
    <![endif]--></head>
    <body>
    <div class="container">
      <div class="header"><!-- end .header -->
        <p class="clearfloat"><a href="#" id="Insert_logo2"><img src="images/YCD-logo-tag-RGB-web-SM.gif" alt="Insert Logo Here" name="Insert_logo" width="638" height="110" id="Insert_logo2" style="background: #FFF
        ; display:block;" /></a></p>
        <div id="Quote"><img src="images/quote.gif" alt="Choose a job you love" width="355" height="81"></div>
        <p class="clearfloat"> </p>
      </div>
      <div class="sidebar1">
        <ul class="nav">
          <li><a href="#">Home</a></li>
          <li><a href="#">Students</a></li>
          <li><a href="#">Parents/Educators</a></li>
          <li><a href="#">Professionals</a></li>
          <li><a href="#">Bio/Contact</a></li>
          <li><a href="#">Q &amp; A Blog</a></li>
          <li><a href="#">Testimonials</a></li>
        </ul>
        <p> </p>
        <p> </p>
        <p> </p>
        <h8><strong>Your Career Direction</strong><br></h8>
        <h6>96 Harvard Avenue<br>
        Maplewood NJ 07040<br>
        [email protected]<br>
        (973) 996-0207</h6>
        <h7>© Your Career Direction, LLC, 2012<br>
      </h7>
        <p> </p>
      </div>
      <div class="content">
        <h1><strong><img src="images/Whether-you-are.gif" width="266" height="48" alt="Whether you are"></strong></h1>
        <ul>
          <li><strong>Considering your college choices &amp; career options</strong></li>
          <li><strong>Preparing for the world of work after college</strong></li>
          <li><strong>Seeking a new position to further your career</strong></li>
          <li><strong>In-transition and considering new opportunities</strong></li>
          <li><strong>Seeking to make a significant and meaningful career</strong> <strong>change</strong></li>
        </ul>
        <p> </p>
        <h1><img src="images/One-thing-is-for-sure.gif" width="310" height="38" alt="One thing is for sure"></h1>
        <p>We all need to direct our own careers, our own lives!</p>
    <p>Given today's competitive job market, global economy, and changed corporate culture, we can no longer depend upon others to ensure our professional futures. Choosing or changing your career direction requires self-reflection, career education and an action plan. </p>
    <p> Building a successful and rewarding career requires linking your interests, education and skills, with trending industries, job opportunities and your experience.  It takes making smart decisions about your college major, vocational training and continuing education options. With motivation, persistence and top notch job search skills, you can succeed in finding a path to building a career that is right for you.</p>
    <p>At Your Career Direction, we are your advocate. We listen, assess, strategize, inspire, counsel, and network on your behalf. With a personalized, holistic approach, we'll work with you to help you create an action plan; a path designed to get you to where you want to go. </p>
    <p> </p> 
    <!-- end .content --></div>
      <div class="sidebar2">
        <p><img src="images/Counselingastudent.gif" width="321" height="256" alt="Lisa Mark counseling a student"></p>
        <p>By combining an understanding of your interests and current skills with what&rsquo;s happening in today's marketplace we&rsquo;re able to partner with you to develop new career ideas, target companies, and generate job and internship opportunities. We provide step by step assistance to ensure success in your written communications, presentation skills, job search, interviews and life choices.</p>
    <p>At Your Career Direction, YOUR career is our passion. Our mission is to educate and counsel you to choose your own path in life and become what you want to be. </p>
    <p> </p>
    <p> </p>
      <!-- end .sidebar2 --></div>
      <div class="footer">
        <div id="footer">
          <h3 align="center"> </h3>
        </div>
        <p> </p>
      <!-- end .footer --></div>
    <!-- end .container --></div>
    </body>
    </html>
    Thanks for your help.

    You are using % widths for your layout which means it will look different depending of the size of each users monitor. Although this is probably the better way to go these days, it is not one size fits all and will work more effectively if you include min and max widths, and also media queries that change your layout depending on the monitor size. This is more advanced coding and will take time if you want to do that. Alternatively, you could design using pixel widths and have it look consistent across all desktop browsers and throw a few media queries in for the mobile side.
    Responsive Web Design
    http://coding.smashingmagazine.com/2011/01/12/guidelines-for-responsive-web-design/#more-7 5660
    More on Media Queries
    http://mobile.smashingmagazine.com/2010/07/19/how-to-use-css3-media-queries-to-create-a-mo bile-version-of-your-website/

  • With OSX10.7.5 and Adobe Reader 11.0.02 when I try to open a PDF downloaded from the web I get 'There was an error opening this document. This file is damaged and could not be repaired. Preview will not open either. Older PDFs OK.

    I am running OS X 10.7.5 and Adobe Reader 11.0.02. In the last few days I have been unable to open PDF's downloaded from the web. Reader gives the error message 'There was an error opening this document. The file is damaged and could not be repaired'. Removing Reader and trying to use Preview to open these files give the error 'Preview cannot open this file. It may be damaged or use a file format that Preview doesn't recognise' (or something like that). Downloading the same files with Reader removed from my Mac Preview opens the files OK.
    I was recently prompted to update Adobe software but did not note exactly what the update was nor when it was done.
    Reader and Preview will both open PDFs I downloaded a week ago. Reader will also open files downloaded on another Mac running OS X 10.0.0 and copied to my Mac. Any ideas?

    Back up all data.
    Triple-click the line of text below to select it, the copy the selected text to the Clipboard (command-C):
    /Library/Internet Plug-ins
    In the Finder, select
    Go ▹ Go to Folder
    from the menu bar, or press the key combination shift-command-G. Paste into the text box that opens (command-V), then press return.
    From the folder that opens, remove any items that have the letters “PDF” in the name. You may be prompted for your login password. Then quit and relaunch Safari, and test.
    The "Silverlight" web plugin distributed by Microsoft can also interfere with PDF display in Safari, so you may need to remove it as well, if it's present.
    If you still have the issue, repeat with this line:
    ~/Library/Internet Plug-ins
    If you don’t like the results of this procedure, restore the items from the backup you made before you started. Relaunch Safari again.

  • Preview and Adobe fonts problem/missing in PDF

    I have a PDF document that doesn't show some fonts. The PDF was displaying fine on preview and then all of the sudden the next day it got messed up. I didn't performed any update or installed any new app. The problem persists in both Preview app and Adobe Reader; at least Adobe tells me: "Cannot find or create the font 'BYGBIR+Helvetica-12-0'. Some characters may not display or print correctly." Here's a screen shot of what it looks like.

    L Huffman,
    First of all, Welcome to the Discussions!
    Try to select one of files in question by clicking once and then press the key combo command + i or go to the File menu and select Get Info.
    Once the Get Info pane is open drop down (if not already in the open position) the disclosure triangle next to "Open with:" and change the application that will open "this" file. To change all files of the type make sure to click on the "Change All" button.
    That should do it....post back if that is not what you are trying to do.
    littleshoulders [:-)

  • OSX Mountain Lion Preview Hijacks Adobe PDF and Adobe Photoshop

    My pdf files and all my images that I have designated to Adobe Reader  and Photoshop in the "Get Info" window of these files... continually  Default to Preview after a few days. This must stop... I never had this  issue in Snow Leopard or Lion! Yes... I do hit the "Change All" button  each time. Apple and Adobe seem to be at WAR over Preview, and we are  payng the price! I POSTED THIS 2 MONTHS AGO AND MTN LION CONTINUES TO DO THIS EVEN AFTER A "SOLUTION" WAS GIVEN:
    For Adobe Reader, try deleting the application, downloading it and reinstalling. I just did this and the first time I opened it, I was asked if I wanted to make it the default.
    http://get.adobe.com/reader/
    I am conviced that there really isn't any solution to this problem and that it is clearly something that is going on between Apple and Adobe!

    ...and I've never heard of that issue before. You should be thinking "how do I troubleshoot and fix this on My Computer?"
    Try generic troubleshooting - repair the hard drive:
    http://support.apple.com/kb/ts1417
    and also repair permissions.

  • I have Macbook Pro and Adobe CC. 3D won't work.. I can open the 3D panel options but clicking ok or even choosing preview brings up an error message [can't]

    I have Macbook Pro and Adobe CC. 3D won't work.. I can open the 3D panel options but clicking ok or even choosing preview brings up an error message [can't]
    My friend has exact same Mac and CC and he has the same problem. We both have up to date Yosemite and CC versions.
    Any ideas?

    Hi,
    Could you please confirm the CC application you are using.
    It would be great if you post a screenshot of the problem.
    Regards,
    Sumit Singh

  • AMD and Adobe Collaborate on Upcoming Version of Adobe Premiere Pro Software

    AMD and Adobe Collaborate on Upcoming Version of Adobe Premiere Pro Software to Enable Breakthrough Video Editing Performance through Open Standards
    AMD A-Series APU, Radeon and FirePro graphics technology work seamlessly with next version of Adobe Premiere Pro software to provide real-time editing, effects, compositing and color grading
    http://www.amd.com/us/press-releases/Pages/amd-and-adobe-2013apr5.aspx
    SUNNYVALE, Calif. —4/5/2013
    AMD (NYSE: AMD) today announced its collaboration with Adobe Systems Incorporated to deliver OpenCL™ hardware-accelerated video editing for the first time on the Microsoft Windows platform with the next version of Adobe® Premiere® Pro. This collaboration further demonstrates AMD’s commitment to enabling partner ecosystems with cross-platform open standards, empowering Adobe to amplify the editing experience for creative professionals everywhere. The combination of expanded support for open standards and the Adobe Creative Cloud™ brings unmatched access to the most up-to-date and powerful professional post-production tools anywhere.
    The next version of Adobe Premiere Pro has been optimized to take full advantage of a wider range of AMD professional- and consumer-class graphics processing units (GPUs) and accelerated processing units (APUs), delivering  unprecedented real-time editing with formats from DV to HD and 4K Ultra HD at high frame rates. Now Adobe and AMD extend this advanced OpenCL functionality to creative professionals running the Windows operating system. The expanded support on Windows and OSX complements the already popular Mac OSX OpenCL support available on Adobe Premiere Pro.
    “AMD and Adobe are dedicated to delivering professional- and consumer-level solutions that support open standards and provide artists everywhere with the ability to create at the speed of thought,” said Neal Robison, senior director, Software Alliances at AMD. “Through AMD’s strong relationship with Adobe, video editors no longer have to wait for the rendering of edits, effects and composites ─ most everything can now be achieved at high-quality in real-time.”
    Coupling AMD graphics hardware with the latest Adobe software, video professionals and prosumers alike will benefit from seamless, high-quality feedback. The next version of Adobe  Premiere Pro with support for OpenCL harnesses the power of discrete AMD graphics cards and AMD A-Series APU’s to enable real-time edits, application of dozens of effects, support for the new Lumetri deep-color engine, and multi-stream and mixed format accelerated workflows with AMD Eyefinity multi-display technology.
    From its APUs and notebook graphics cards to professional workstation cards like the AMD FirePro™ W-series, AMD technology works transparently with Adobe Premiere Pro to provide scalable GPU-accelerated editing solutions for inspired prosumers and creative professionals everywhere. The software is accelerated by OpenCL to efficiently harness the compute power of AMD APU and graphics products and achieve up to 4.3X faster exports from a source format with effects to a preferred final destination format for quick and easy distribution and publishing1.
    “We’re all about creating the best software possible, and at NAB we’re revealing some incredible enhancements to our video editing tools,” said Simon Williams, director of strategic relations at Adobe. “Our customers require powerful systems that enable them to work quickly and efficiently. While we already support OpenCL on the Mac, today’s announcement gives creative professionals the opportunity to tap into the massive compute resources of AMD APUs and GPUs on Windows-based PCs, broadening the type of accelerated experience they can have with our upcoming software.”
    Video professionals and enthusiasts utilizing the Adobe Creative Cloud gain a competitive advantage through immediate access to AMD hardware-accelerated features and functionality with the latest Adobe video production software. Adobe Creative Cloud offers an end-to-end, cross-platform tool kit with industry-leading software seamlessly integrated with all the hardware needed to create, collaborate and stay connected.
    At NAB, Adobe is previewing the next generation of its professional video and audio products (NAB Booth SL3910.) Learn more about the next versions of Adobe’s pro video and audio tools at: www.adobe.com/go/nab_reveal. More information about Adobe's upcoming new video tools will be unveiled at Adobe MAX, The Creativity Conference, May 4-8 in Los Angeles, Calif.
    Supporting Resources
    With Adobe Creative Cloud a simple monthly membership gives you the complete collection of Adobe creative desktop applications. Along with cloud storage, Creative Cloud members automatically get access to new tools and product updates as soon as they’re released.
    For more information about AMD and Adobe at NAB Show
    For more information about AMD Performance
    For more information about AMD and the new version of  Adobe Premiere Pro
    Details about AMD and Adobe
    For more information about AMD FirePro™ Graphics
    For more information about Adobe
    For more information about AMD
    About AMD
    AMD (NYSE: AMD) is a semiconductor design innovator leading the next era of vivid digital experiences with its groundbreaking AMD Accelerated Processing Units (APUs) that power a wide range of computing devices. AMD's server computing products are focused on driving industry-leading Cloud computing and virtualization environments. AMD's superior graphics technologies are found in a variety of solutions ranging from game consoles, PCs to supercomputers. For more information, visit http://www.amd.com.
    AMD, the AMD Arrow logo, FirePro and Radeon are trademarks of Advanced Micro Devices, Inc. Other names are for informational purposes only and may be trademarks of their respective owners.
    Testing was performed by AMD, test project used the “Three-way Color Corrector” effect with the NAB 2013 “sneak peek” build of Premiere Pro Next provided by Adobe, .MP4 video file, 17 seconds, 1920x1080, 24fps with .WAV audio file, 169 seconds, 1411 kb/s audio bitrate, 41 khz audio sample rate, export to Device – Apple TV, iPad, iPhone 4 and newer, 720p, 29.97 max render quality.  With OpenCL (GPU acceleration) enabled, the export took 46.6 seconds. With CPU only, the export took 246.1 seconds. Test system was a desktop PC configured with an AMD A10-6800K APU with AMD Radeon™ HD 8670D Graphics, 8GB DDR3-2133 running Window 8 Professional (x64) build 9200, video driver 12.102.0.0. RID-10

    CS7... or CS6.5?
    I don't have any links, but I remember a past discussion where the Adobe CEO said they would be going to an annual release cycle... with a .5 (paid) upgrade between the major version upgrades
    If that is still true, that means that what will come out this year will be CS6.5

  • Conflict between Adobe Acrobat and Adobe Reader and how I fixed it

    For the past 5 years, I have owned Adobe Acrobat version 9, and recently installed Adobe Reader as well (version 10.7). I was previously able to set up Firefox to use Acrobat to display PDF files in the browser without downloading them, but I recently noticed that this was no longer the case. Instead, every PDF file I tried to view was being downloaded instead. I came here to find a solution, and discovered that many other people are having similar problems. I followed the instructions given here (https://support.mozilla.org/en-US/kb/view-pdf-files-firefox-without-downloading-them), but found that they were actually UNhelpful. They tell you to turn off the Firefox PDF viewer by editing about:config to disable the file pdfs.js, which is the native Firefox PDF viewer-- but that will cause the PDF file type to disappear from the Tools/Options dialog, so you can't assign it to another program (whether Adobe or anything else). This makes it impossible to assign the Adobe plugin to open PDF files. I did figure out a solution on my own, and wanted to post it here to help other users with the same problem.
    I ultimately learned, through trial and error and a lot of research both here and on Adobe's website, that the root cause of my problem was a conflict in Firefox between Acrobat and Reader. I was able to solve it by upgrading Acrobat, getting rid of Reader and enabling the Firefox PDF viewer so that I could assign the PDF file type to the Acrobat plugin within Firefox. Here are the details of my problem and how I solved it:
    1. Acrobat and Reader conflict with each other in Firefox, but this isn't totally Firefox's fault. It's mostly Adobe's fault, and they pretty much admit it. Specifically, they say that Acrobat and Reader can't coexist on the same machine unless both are version 10 or higher. They tell you to upgrade to solve the problem--but I can't afford to pay for a new version of Acrobat. If you have to keep Acrobat 9.x, Adobe says the lowest version of Reader that will work with it is Reader 11. I couldn't upgrade to this because I have Vista, and Adobe hasn't issued Reader 11 for Vista (and doesn't plan to). I did cheat and download the Win 7 version of Reader 11, but it didn't help.
    2. If you have both Acrobat and Reader, you can choose a setting in Reader to make it the default PDF handler--but Firefox ignores this information and defaults to Acrobat no matter what. (This is the part we can blame Firefox for.) If you have a version of Acrobat which is below 9.5.5, Firefox actually blocks it as a security risk, so the plugin won't work at all, regardless of version number. That's why PDFs are being downloaded through your standalone program instead of being displayed in the browser. If you want to view PDFs in Firefox and keep Acrobat on your computer, you MUST upgrade Acrobat to version 9.5.5 or above.
    3. Unless you can upgrade Acrobat to at least 10.x, GET RID OF READER. As long as you can access Acrobat 9.5.5, it will work fine in Firefox and there's no need for Reader. I never used to have Reader myself, only Acrobat, but it must have been downloaded automatically when Acrobat was blocked by Firefox (which I didn't even realize).
    4. IF YOU NEED TO UPGRADE ACROBAT 9.X TO 9.5.5, YOUR LAST CHANCE IS TODAY--6/26/13. Adobe has announced that today is the "end of life" for the Acrobat 9.x platform, and all support and upgrades will cease after today.
    When I searched for updates by going to Adobe's website, it told me there were none available--but when I checked for them FROM THE ACROBAT PROGRAM ITSELF (Help/Check for updates), I was offered a 300 MB upgrade that took me all the way from version 9.0 to 9.5.5 in one step. (It did take a very long time to download and install.)
    5. Once you have Acrobat 9.5.5, this is how to enable it in Firefox:
    a. INSIDE ACROBAT, set your preference for "Internet" to "view PDF files in browser." Close Acrobat. Close Firefox if it's already open.
    b. Reopen Firefox. Check Tools/Add-Ons/Plugins to make sure the Acrobat plugin is there. Enable it if disabled. Close Firefox.
    If the plugin isn't there at all, repair your Acrobat installation through Control Panel. Then return to Firefox and enable it. Close Firefox.
    c. Reopen Firefox again. Go to Tools/Options and check the list of file types. For the names that contain "Adobe" and "Acrobat," Acrobat should be set as the default program to open them. Select it from the drop-down list if it's not. Continue to scroll through the alphabetical list--you should see another entry called Portable Document Format. If it's there, the default will be "preview in Firefox." You should be able to change this to "Acrobat (in Firefox)" using the drop-down menu. Do NOT pick the option that says "Acrobat"--this is the standalone program and will cause your PDFs to be downloaded.
    If you don't see "Acrobat (in Firefox)" as an option, this means your plugin is not working. Go back and fix it using the instructions above (including repair of Acrobat if necessary).
    d. If you don't see a file type for "Portable Document Format" at all, that means the Firefox PDF viewer is disabled. You must enable it by editing the about:config file. To see it, type about:config in the Firefox address bar. You will get a warning message--just click OK and keep going.
    This file is a long list of statements in alphabetical order. LOOK FOR A STATEMENT THAT SAYS "pdfjs.disabled" with a Boolean value of "true." Select this statement and right-click. A context menu will offer you choices including "Toggle." Select that one, which will change the Boolean value to "false." Exit about:config. Close Firefox.
    e. Now return to Tools/Options, scroll through the list of file types, and you should see "Portable Document Format." Select "Acrobat (in Firefox)" as in the instructions above. Close Firefox.
    f. The first time you try to open a PDF file in Firefox, you may get a dialog box which offers you choices of how to open the file. The first will be Acrobat, but DON'T CHOOSE THAT--it will cause your PDF to download. Instead, go to the choice that says "Open as application/pdf." You don't need to change the program that opens this file type, because your settings are already correct. Your PDF should open in the browser, with the full-featured Acrobat menu (including the option of editing or saving the file).
    I hope other users can benefit from the truly painful experience I had figuring all of this out. Good luck.

    Since it doesn't seem like you are looking for support, locking this thread.

  • Excel Print preview stopped working and when save as pdf, pdf is blank

    mac 10.5.8
    excel home and student 2011
    i was working on 2 documents for our accountant.
    created one in excel, converted to pdf
    created second one in excel, converted to pdf
    there was maybe a 30 minute time lapse between these 2 files...tops
    the first file does in fact have a print preview, and the pdf opens and is viewable.
    HOWEVER, on the second file, there is no print preview, and pdf is blank.
    (although the printer does in fact print the file with all the words and whatnot on it...)
    blank pdf prints blank.
    i tried xlsx, and xls to pdf, and nothing works.
    it seems that all of the files created before this troublesome one can be converted and seen in print preview....even if i add a new sheet to the workbook, that works just fine...can print preview and convert pdf no problems.
    now, when i try to do that with the second file, or any new excel doc, i canNOT convert or print preview....everything is blank.
    one minute it was working, the next it's not.
    it works for some excel files while not working for newer ones.
    nothing was changed in preferences for excel, preview, or the printer, unless i accidentally typed a keyboard command that would allow this to happen.
    i REALLY need to be able to convert excel to pdf!  and i really don't want to have to print them out just to scan them in and save the scans as pdf...not fun.
    i have been researching, or trying to research this here,and it seems that there is a known bug for office 2008, or for a different OS, but none of the work arounds for those issues are helping me here!
    someone, please help me get my save as pdf back!!!!

    Try different page setups and layouts.  Reinstall the Office fonts, or check for new patches from Microsoft.     Check in Microsoft Office forums.   Mind you PDF from preview and print are not as complete as Adobe Acrobat Pro, and are based on open source PDF standards.  I don't know how well the standards were at the time your Office application was written, or if 10.5's PDF standard was up to Office's snuff, or if you updating to the latest available Adobe Acrobat Reader  and Plugin will help, but between Office's and Adobe's forum you may be abl eto find an answer.

  • Preview Problem: PDF file:Adobe livecycle designer ES 10.0

    Hallo.
    How do I fix  preview problem of a .pdf file that was created with Adobe livecycle designer es 10.0.  version 1.7 ( show on the properties of the file). The file opens normally. No preview in explorer preview pane and change to printing problem too. Need to preview the file before uploading it onto the internet. All updates done: Windows 7, Explorer 11, Java (Javascript enable) Adobe reader XI. and Adobe Reader XI Pro.(Trail version). When in Explorer and using open with:Default program: select software already in stalled on computer: Browse Adobe reader XI (Acrord32.exe: properties show version 11.0.06.70) This will show as Adobe reader 9.4 on the list of programs.

    If you purchased a prior license of Acrobat and have purchased an upgrade to Acrobat XI Pro then you are eligible for free LiveCycle Designer upgrade.
    See more information on: http://www.adobe.com/products/acrobatpro/faq.edu.html
    Visit the http://www.adobe.com/go/learn_acr_livecycle_upgrade_en to request an upgrade.

  • Pdf In preview on firefox and google chrome seem ok Download becomes Blank.

    Pdf In preview on firefox and google chrome preview are fine  so open in adobe reader  the  pdf  becomes Blank.
    So i installed the newest update of adobe reader 11. still comes up blank. I tried on to other computers the file seems ok.
    Saved file from one computer onto a usb and  tried opening on problem computer  still apears blank.
    So then I uninstalled adobe reader then a program on the computer what came with the pc opned the pdf fine so i restarted the computer installed 11 came up blank.
    So i  restarted computer again installed reader 10 comes up blank
    Uninstalled re installed 11 again then created a guest account on the computer opned file still blank
    So then I imporeted the file to adobe Paint shop pro it will all appear in there.
    the file i am  Looking at is at this link
    http://k6.boardofstudies.nsw.edu.au/wps/wcm/connect/330e5ccb-782a-432b-8ce5-122a8c42967e/k 6_pdhpe_syl.pdf?MOD=AJPERES
    http://k6.boardofstudies.nsw.edu.au/wps/portal/go/personal-development-health-and-physical -education-pdhpe
    K-6 PDHPE Syllabus
    PDF - 60 pages - 709KB
    anyhelp Please girlfriend really needs this to work

    I tried your advice to  I saved both PDFs from your links (using right-click, then Save Link as), and they save and open correctly: I get nothing
    Windows 7
    adobe Reader 11.0
    To the left is a program called Pdf Complete.
    To the right is adobe
    This file we have downloaded before and lost so now we download it and get nothing. .
    Could there be anything in the preferences or settings.
    Saved the file from this computer that not worked as a pdf on to a usb thumb drive works on other computer.
    Have Just noticed adobe  reader becomes unresposive and then evently crashes when tyrying to click on other pages of this pdf that not working..
    Sorry am all over the place

  • I have put my documents on creative cloud preview and now I can not open the creative cloud preview window open and I have nothing in my creative cloud app

    I have put my documents on creative cloud preview and now I can not open the creative cloud preview window open and I have nothing in my creative cloud app

    The license allows YOU to install on a 2nd computer... it does not allow someone else to use your license
    Licenses and terms of use | Adobe
    You may also not purchase an Education version for someone, they must do that for themself... if they qualify
    Adobe Education... Start here https://creative.adobe.com/join/edu
    Education Plan https://creative.adobe.com/plans?plan=edu
    One Year Intro Price http://forums.adobe.com/thread/1448933?tstart=0
    http://www.adobe.com/products/creativecloud/students.edu.html
    http://www.adobe.com/education/students/student-eligibility-guide.edu.html
    ID Proof http://www.adobe.com/store/au_edu/academic_id.html
    I do not  know how it is done, but you MAY be able to buy her a regular subscription and pay with your credit card... just not the Education version that has strict requirements

  • Premiere Pro and Adobe Media Encoder running slow

    Hello everyone,
    I'm having trouble with CS4, which is running significantly slower than CS3 did on a older machine. The CS4 suite is installed on a Dell Precision M6400:
    Windows Vista 64-Bit
    Intel Core 2 Duo CPU T9400 @ 2.53 GHz
    8 GB RAM
    NVIDIA Quadro FX 2700M Graphics with 512MB dedicated memory
    The OS is running on a 57.5 GB HD (C:) and the Adobe suite is installed on a 298 GB Solid State HD (D:), except for Adobe Media Encoder, which is installed on the C: drive.
    My project has 4 15-16 minute sequences. The sequences are in DV NTSC, 29.97 fps,  My scratch disks are set to a folder on the C: drive. Media Cache Files and the Media Cache Database points to a folder on the D: drive.
    These are some of the problems I'm having:
    - Premiere Pro CS4 generates peak files every time I open a project
    - It then takes 3-5 minutes to render before I can preview a 16-minute sequence
    - Adobe Media Encoder takes 5 hours to render a 16-minute sequence (as flv) that has been previously rendered
    - AME takes 1 hour to render every 15 minute sequence that has never been rendered before
    Are my settings affecting their performance? Is there any way to improve it? Thanks.
    (Premiere Pro is the only app that is slow)

    The data rate for replay is one thing, the data rate from disk to memory then from memory to CPU and back the other way are different matters and ought not to be confused. It is well-established that for a computer to edit AVCHD you need top end components, and note that I said there were three tasks to distinquish with increasing hardware requirements, namely merely replaying the video, specifying edits in the editor and then the rendering. It is commonly accepted by all the industry vendors that to do remotely commercial AVCHD rendering you need a minimum Quadcore CPU then that eats data fast, in order to not let it go to waste you need a fast motherboard bus fast memory and in order for none of those to go to waste you need the fastest disk set-up you can manage. I in fact have a 4-disk RAID0 volume using SATA (I think the disk model is SATAII but I have to await return from the repair center before I can confirm). For this RAID0 volume I have run speed test software from BlackMagic because I have one of their HDTV capture cards. It recorded that this volume which remember is doing parallelised IO is just fast enough to receive a encoded HDTV stream from the BlackMagic card but too slow to receive an uncompressed HDTV stream, indeed when I tried both I found the volume did keep up with compressed but fell behind with uncompressed. Remember that with a RAID0 volume of 4 SATAII disks a given file gets spread over the four disks and hence IO is spread over those 4 3G/s data lanes. Also remember with these disks 3G/s is just a burst speed, for AVCHD we are interested in sustained serial IO which is much less.
    Before my machine broke down, I found that it took 5 hours to render 33 minutes of HDTV albeit as it went along it transcoded from AVCHD to a Microsoft HD format for Vista-only. Another interesting thing is that I found that the longer this render ran the slower it became, the estimated time started at 3 hours but the actual was five and the last one third took maybe 3 hours. Because the machine broke after that run I couldn't figure the bottleneck. For my machine bear in mind that at the repair shop we found that the Quadcore had only half the necessary electrical power plugged in, the monitor software showed however that it constantly ran around 90% of whatever capacity that reduced power supply permitted. Now then we can puzzle over why it got slower and slower and yet CPU consumption remained consistent and near to full capacity, memory was not the bottleneck because that was constant at 6.4G. But you can say that this was maybe performing like a Dualcore and was hitting some sort of wall, if you had a 1 hour render with that rate of degeneration of performance factored in what would happen to the render time, and for 3 hours you could be running indefinitely. I hope when the machine comes back the correct power supply will make it behave like a Quadcore should for this type of application. Anyway I have two theories for the degradation. First is just that PrProCS4 was getting its knickers in a twist and thereby just doing more computation per minute of video to be rendered as time went by, maybe internal resource management related to OO-type programming maybe, or related to disk IO falling behind, both these theories have problems, for the latter the CPU usage should then have dropped also.
    Anyways, you need really a Quadcore system and blazing fast disk to work fully with AVCHD commercially, we found an external SATAII disk so if I were you I would just go get one and move on with your life.
    Message du 03/06/09 16:08
    De : "Jim Simon"
    A : "JONES Peter"
    Copie à :
    Objet : Premiere Pro and Adobe Media Encoder running slow
    For AVCHD you MUST have FAST disks.
    AVCHD actually has a lower data date than DV. You need lots of CPU muscle, but disk speed is really not a factor specific to AVCHD. Anything that works for DV will work just as well for AVCHD (and HDV as well).
    >

  • Why can't I open PDFs anymore and Adobe Reader won't install.

    Why can't I open PDFs anymore and Adobe Reader won't install? This happens only in Safari. I have tried changing my security preferences but it doesn't help.

    missyzz,
    which version of OS X is installed on your Mac, and which version of Adobe Reader do you have installed? Did you ensure that all of your browsers were not running when you’d installed Adobe Reader?
    To use Preview to open PDFs, download the PDFs to your Mac, and then use Preview to open the PDFs locally. Since you can open PDFs in Firefox, it sounds like you don’t need the Preview workaround.

  • Print Preview not working for Adobe forms

    Hello experts,
    I am new to designing of Adobe forms. I have the following installations already in place:
    1. ADS
    2. Designer 7.0
    3. Adobe Reader 8.0
    I am trying to execute the standard report FP_EXAMPLE_01 to test whether Adobe forms work coherently with my system config is fine.
    When trying to execute thsi report prg , I get a very perculiar message on clicking on print preview bttn "ADS: Request start time: Tue Feb 05 12:25:05 IST 2008(200.101) "
    Now I am not sure whether it is a Basis issue with the ADS config or Printer settings ?
    Please advise.
    Regards,
    Sonika

    Hi Sonika,
    That is not required functionality. it should display a Adobe Form for Invoice processing.
    I doubt there might be some problem with ADS configuration.
    Can you please do the following test and let me know the result ?
    If the Adobe Interactive Forms have been installed correctly, the
    following tests should run without errors:
    First test:
    1) Call transaction SE38.
    2) Enter the report name "FP_PDF_TEST_00" and choose "Execute" (or press F8).
    3) Enter "ADS" in the entry field for the connection, and choose
    "Execute" (or press F8).
    4) The system should issue a dialog box containing the current version
    information.
    Second test:
    1) Call transaction SE38.
    2) Enter the report name "FP_TEST_00" and choose "Execute" (or press
    F8).
    3) Enter "FP_TEST_00" for the form, "2" for the number of output pages,
    and "ADS" for the ADS connection. The choose "Execute".
    4) Enter a valid output device and choose "Print Preview".
    5) The Adobe Reader should be displayed in the GUI, and display two
    pages with numbered lines.
    Third test:
    1) Call transaction SE38.
    2) Enter the report name "FP_TEST_IA_01" and choose "Execute" (or press
    F8).
    3) Enter "FP_TEST_IA_01" for the form, "ADS" for the ADS connection, and
    any data in the other entry fields (these are already filled with
    default values). Then choose "Execute" (or press F8).
    4) Enter a valid output device and choose "Print Preview".
    5) The Adobe Reader should be displayed in the GUI, and display a page
    with address fields.
    6) Scroll down to the frame for the new address, and fill in those
    fields.
    At the end of the form, an entry field for the date and a value help
    exists. Choose the input help button and check if the system displays
    the datepicker.
    Now you will know yourself if there is any problem with ADS configuration.
    Cheers
    Satya

Maybe you are looking for

  • Upgraded to itunes 11.4 and now it crashes on every sync

    I upgraded to itunes 11.4 (Win 7 64Bit), now every time I try to sync my iphone itunes crashes when syncing apps. Before it comes to syncing the apps everythings works fine. Calendar, contacts etc are being synced. I already de- and reinstalled every

  • Is it possible to create vendors with same name and city in FK01?

    Hi All, I need to create vendor through transaction FK01. I need to create two vendors: 1. Name-Abdul, City-Hyderabad, Country-India. 2. Name-Abdul, City-Hyderabad, Country-Pakistan. Is it possible to create in such a way. Please help. Thanks in adva

  • Bootcamp windows 7 setup was unable to create a new system partition

    I've been trying to load Win 7 sp1 64 for a week.  Tried 4 versions, all 64b, made a new USB drive each time, I always get stuck in the same place: "setup was unable to create a new system partition or locate existing system partition". I've tried ev

  • Bridge CS5 DVD burn with cache...how?

    Working in CS5 on a Mac Pro 10.6.x.  My workflow is such that I burn images to archival dvd for off-site storage.  Images are converted to DNG, tagged, rated, applied metadata, and then I build the cache... Tools->Cache and select build 100% previews

  • Not having Flash prevents me from reading the screen in Safari.

    I don't want to install the Adobe Flash plug-in and didn't mind the warning that it was out of date. Lately, however, not having Flash installed brings up a warning that  "darkens" most of the screen along with it (the warning) and I can't find a way