Fixing cosmetic differences between Reader 8 and 9

When Reader 9 starts up, by default it clicks the Highlight Fields toggle button. In Reader 8, this was unchecked by default.
In general, this is a good thing. It makes it much more obvious to end-users which documents are fillable/editable PDFs, and which are plain PDFs that can only be printed.
However, in some cases, where your user-base is already expecting fillable forms, this means that all your carefully color-coordinated forms now dont look as good on startup.
Another issue is when you have required fields, which show up with red borders - apart from looking a bit garish, our usability testing has indicated that it can make new users freak out, thinking theyve already made a mistake before theyve even done anything.
This is compounded if you have fields with caption above the field, which in Reader 9 is rendering as two red borders.
There is a very simple way to preserve the Reader 8 behavior. Here's how:
http://avokahhh.wordpress.com/2008/07/30/a-fix-for-some-cosmetic-differences-between-reade r-8-and-9/

Can any one help me in this regards?
Thanks in Advances
Sudhakar

Similar Messages

  • Why is my SSD showing 250mb/s difference between read and write...

    So i have recently upgraded to a SSD in my 2011 MBP. 2.4Ghz i5 16Gb RAM. I swapped my HDD with a Samsung 840 Series 250Gb SSD, I noticed a huge speed bump. See attached photos. Read is clocked at 503MB/s peak, and Write is clocked at 260MB/s peak on the SSD. My Question is why is there a 250MB/s difference between read and write?? Using Black Magic Disk Speed test. Mac OS X 10.8.4 Beta.
    Thanks

    Writes are performed very differently on SSD than they do on a hard drive, and it is common for SSDs to have lower write speeds than reads.
    It's actually quite interesting if you're a geek: http://en.wikipedia.org/wiki/Write_amplification
    As long as the speeds do match your manufacturer specification for the model (and they do: http://www.samsung.com/us/computer/memory-storage/MZ-7TD250BW ) , there is nothing to be concerned about.

  • Difference between read and view only -users having both permissions can download the documents

    Hi All,
     Would like to know whats the difference between view only and read permission.
    As per my requirement, my end users who have been assigned View Only should NOT be able to Download the document from a doc lib.Whereas who have Read permissions should be able to download.
    But when i tested with few users with these  permissions, those users who are having  viewonly permissions was able to  download the documents.
    how this will be true? MS says that this is not possible if it contains server side handlers.
    my customer worried about the  download-the-document part. as per them end users who have  view only permissions should not download the docs.

    Hi,
    Please check this similar thread:
    https://social.technet.microsoft.com/Forums/sharepoint/en-US/4b21a168-443b-45d3-940c-fe52e8538290/how-to-protect-sharepoint-document-not-allow-to-download?forum=sharepointadminprevious
    Your only option is to implement IRM to accomplish your requirement.
    Nico Martens
    SharePoint/Office365/Azure Consultant

  • Why are there print differences between Reader and Acrobat Pro

    I have a PDF file generated by InDesign (CS3). When I print the PDF from Reader (8.1.4) I get lighter text than when the same file is printed by Acrobat Pro (9.1.0). A close examination of the printed letters shows that the text printed from Reader is not solid black, while the text from Pro is solid black.
    Is this typical or is there something I need to do to improve the printing from Reader?

    I am a CADD Coord. (CADD Mgr)designer) I used to do a lot of design. Just recently we have noticed that anything printed from Adobe, the reader or the full version, is printing so lightly in many cases that it looks like it is missing data. whenever we create teh PDF from Autodesk products or Bluebeam Revue, it is the same. Bluebeam prints perfect. Yet the exact same file printed through Adobe is very, very light. Even printing as image it does this. And it appears at random. Some people print ok, but the exact same printer sent by someone else, using the same method, comes out too light in Adobe.
    I have contacted Autodesk and they have punted it back. Anyone have any answers or clues to fix? i send out deliverables for clients all the time and I hate to find out they print and miss something of the design.

  • Differences between Stream and Reader

    Hi All,
    Can any one please tell me the differences between Stream and Reader
    Thanks in advance

    > If there would only be some documentation one
    could
    look at...
    What would really be snazzy is if that documentation
    were, say, hyperlinked, indexed, and easily found
    online, ..........My dream is of an online tutorial that described in plain language basic java i/o and even gave examples. Maybe someday...

  • What is the difference between Read Later and Read Later Fast?

    What is the difference between Read Later and Read Later Fast?

    I have been...they both seem to do the same thing. Since they both seem to also be Mozilla software and not intended to compete with each other, I'm thinking I'm missing some advantage that one has over the other.

  • What is the difference between READ TABLE ITAB WITH KEY  and  TABLE KEY

    Hi Experts,
    what is the difference between
    READ TABLE <ITAB> WITH KEY <K1> = <C1>
                                                    <Kn> = <Cn> .
    and 
    READ TABLE <ITAB> WITH TABLE KEY <K1> = <C1>
                                                              <Kn> = <Cn> .
    Thanks
    Akash.

    Hi akashdeep,
    Nice question. I also tried to find out, but no much success. My opinion is that for practical purposes there is no difference.
    It may have difference in case of searching, especially sorted tables. (binary search or normal linear search).
    Case1: If our table is sorted table with defined key fields, and we give WITH TABLE KEY, then faster binary search is used.
    Case2 : If our table is sorted table with defined key fields, and we give WITH  KEY, (and no field contained in the keys), then normal linear search is used.
    regards,
    amit m.

  • What is the difference between paid and unpaid versions of adobe reader

    What is the difference between paid and unpaid versions of adobe reader

    However, Adobe offers extra paid services to create PDF or to export PDF to other formats. You are not required to buy them, however.

  • Difference between CHAR and VARCHAR2 datatype

    Difference between CHAR and VARCHAR2 datatype
    CHAR datatype
    If you have an employee name column with size 10; ename CHAR(10) and If a column value 'JOHN' is inserted, 6 empty spaces will be inserted to the right of the value. If this was a VARCHAR column; ename VARCHAR2(10). How would it handle the column value 'JOHN' ?

    The CHAR datatype stores fixed-length character strings, and Oracle compares CHAR values using blank-padded comparison semantics.
    Where as the VARCHAR2 datatype stores variable-length character strings, and Oracle compares VARCHAR2 values using nonpadded comparison semantics.
    This is important when comparing or joining on the columns having these datatypes;
    SQL*Plus: Release 10.2.0.1.0 - Production on Pzt Au 6 09:16:45 2007
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    SQL> conn hr/hr
    Connected.
    SQL> set serveroutput on
    SQL> DECLARE
    2 last_name1 VARCHAR2(10) := 'TONGUC';
    3 last_name2 CHAR(10) := 'TONGUC';
    4 BEGIN
    5 IF last_name1 = last_name2 THEN
    6 DBMS_OUTPUT.PUT_LINE ( '-' || last_name1 || '- is equal to -' || last_name2
    || '-');
    7 ELSE
    8 DBMS_OUTPUT.PUT_LINE ( '-' || last_name1 || '- is NOT equal to -' || last_n
    ame2 || '-');
    9 END IF;
    10 END;
    11 /
    -TONGUC- is NOT equal to -TONGUC -
    PL/SQL procedure successfully completed.
    SQL> DECLARE
    2 last_name1 CHAR(6) := 'TONGUC';
    3 last_name2 CHAR(10) := 'TONGUC';
    4 BEGIN
    5 IF last_name1 = last_name2 THEN
    6 DBMS_OUTPUT.PUT_LINE ( '-' || last_name1 || '- is equal to -' || last_name2
    || '-');
    7 ELSE
    8 DBMS_OUTPUT.PUT_LINE ( '-' || last_name1 || '- is NOT equal to -' || last_n
    ame2 || '-');
    9 END IF;
    10 END;
    11 /
    -TONGUC- is equal to -TONGUC -
    PL/SQL procedure successfully completed.
    Also you may want to read related asktom thread - "Char Vs Varchar" http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:1542606219593
    and http://tahitiviews.blogspot.com/2007/05/less-is-more-more-or-less.html
    Best regards.

  • What's the difference between jsp and jsf?

    who can tell me what's the difference between jsp and jsf?
    I'm puzzled when I found some of the technology in jsp is so similar to the ones in jsp( javaserver page)

    Hi,
    Find the difference between JSP and JSF
    1. A developer has more control with JSP, but (should) get easier development with JSF
    2. Event handling is done differently in JSP (HTTP) and JSF (Java)
    3. The UI is designed differently (or should be at least) with JSP (markup) and JSF (components).
    4. The end product should also be defined differently - JSP page versus a JSF application.
    Is this the only thing that is need to make a decision for either or? Probably not. There are other pieces that need to be taken in account when deciding which technology to use - tools support, enough components, type of application etc.... At this point there are not enough JSF components (although there are some interesting projects underway - Ajaxfaces, Myfaces, ADF Faces, and WebChart 3d) and enterprise tools support is still limited to a few tools vendor. Looking at our ADF Faces components they are currently available as early access (not production) and demands for these components are stacking up, literally, outside my office doorstep. Although I would love to make them production - now! - it is not a viable solution since we are still checking features and fixing critical bugs.
    All this combined - not enough enterprise level components in production, lacking tools support etc... - leave customers in a vacuum where the decision is either to continue with JSP, since it is mature and has a wide developer base, or move forward with JSF not sure if the support, or the developers will be there. This is particularly sensitive to customers that need to get started now and be production by summer.
    If you are in this vacuum here are some key points promoting JSF:
    1. Fundamental unit is the Component
    2. Built in event and state management
    3. Component sets can be provided by any vendor
    4. Closer to ASP.Net or Swing development
    5. Choice of UI technology
    6. Scale up (rich clients)
    7. Scale down (mobile devices)
    8. Built into J2EE containers in J2EE 5.0 (tentative)

  • Difference between zero and blank values

    Is there a way for the system to determine the difference between zero and blank values. One can have a zero allowed for the 0 value to actualy be there in the KF but is there a way that a macro can be written by which we can use the differentiation between the zero ( a value) and blank (no value) in the KF
    I have tried to look for an explanation on the service.sap.com and sdn but was not able to find anything.
    Thanks in advance

    Thanks for your reply. You mentioned something about the "fixing" setting that could make the "0" displayed in the planning book. Could you elaborate?
    Also, in the post from user "APO APO" on 5/8, the author seemed to indicate they could see the "0" in the planning book, as quoted below:
    "I have already made the zero allowed arrangement for that in the planning area and can see the 0 values in the planning book but I am not being able to make the macro get the results."
    I just want to find out if there is any way the user can visually distinguish b/w the "0" and blank values. If not, it'll be very confusing to the users. I understand the macros can distinguish b/w them.
    Thanks in advance.

  • Difference Between Normal and External Context Mapping

    Hi,
    I wonder the Difference Between Normal and External Context Mapping.
    I1ve already read the docs and articles but I didnt understand.
    Thanks,
    Jorge Luiz
    Edited by: Jorge Castro on Oct 9, 2008 4:23 PM

    Jorge,
    With this type of Mapping (also called Reverse Mapping) you can map the context of an using component, to that of the used component.
    You can find an example of this concept in WDA ALV: If you look at component SALV_WD_TABLE (which you declare as used when you intend to use ALV), you'll see that it has a node DATA declared as external. In your using component, you map your actual data node to this node.
    This allows the ALV to leave the DATA node type open and so to be reused, adjusting it's structure depending on the using component's data.
    Edited by: Alejandro Bindi on Oct 9, 2008 4:42 PM
    Made a mistake! Have not used this in a while...Ext. mapping is the OTHER way...Using -map-> Used Fixed.

  • N97 bad music player, difference between v20 and v...

    Hi,
    Can anyone tell me the changes of the music player made in firmware version 21.0.045 compared to version 20.0.019?
    All the changes logs I can find say “music player improvements” but I can't find any.
    The difference between v20 and the version before that ware obvious.
    “Improvements” like the “back” button going back to the home screen instead of the music list you ware coming from.
    The removal of the search function in portrait mode, you can only search songs with the hardware keyboard, so no portrait touchscreen keyboard search. (very annoying when using a car dashboard stand).
    And they ruined the search function all together. Now I can only search on the first word of a song, album or artiste. First I was able to search just a (part of a)word and all songs containing that word in the title would be found. I have almost 1500 songs on my N97 with only 1/3 of 32GB used. How can the expect me to remember all first words of about 4500 songs!
    And all the album art in the lists, which makes for less songs on the screen at once. I don't like that very much, but that's just me I guess.
    So overall the made an oké music player into an annoying player ware bey I have to remember way to much to use it properly
    Of course I hoped that v21 would bring some positive chances to the music player, but I cant find any. Can Anyone tell me the changes, if any. Or are they all under the hood? But I haven't noticed any performance boosts either.
    Hope to hear from someone.

    I do not think that N97's music player  is going to be fixed in any way...
    Why? Because N97 is the worst device Nokia has ever produced! They will stop N97 software upgrading   because  many things in this phone went wrong. Now they claim they can fix it. And I claim: no, they can not. If they could save the sinking ship of N97 we would wait for so long for the solution of the problem called N97.
    Look how irresponsible N97 becomes when you start music player!
    Is this CPU issue? Playing mp3 file with 400 MHz cpu is very big deal!
    My E71 has never stopped responding, and what I dit with E71 was multitasking torture!

  • Difference between table and tenplate?

    Hi
    What is a difference between table and a template?
    Thanks

    are you refering to Smartforms?
    Well in SF, table is something that contains data. Tables could be dynamic.
    Template is a fixed format. Example if you have a invoice and the format is fixed with several vertical and horizontal lines. And you have terms and condition to be printed at the bottom. And the total amount.
    Now this template will be printed in the form even if there are line items and even if htere is no line items.

  • Difference between LSMW and CATT

    Hi all,
    Can anybody tell me the difference between LSMW and CATT?

    CATT
    SAP users use CATT frequently to upload master data or to
    make changes to master data records. SAP Consultants and
    Abapers tend to use it for creating test data. The
    transactions run without user interaction. You can check
    system messages and test database changes. All tests are
    logged. The CATT records your keystrokes while performing
    the actual transaction. You then identify the fields that
    you wish to change in that view. Then export this data to a
    spreadsheet to populate with the data required. This is
    uploaded and executed saving you keying in the data
    manually.
    To perform CATT, it has to be enabled in your production
    environment (your systems administrator should be able to
    do this - SCC4). You will also need access to your
    development system to create the CATT script.
    The process of uploading data with a CATT:
    Activate CATT in your client
    In transaction code SCC4 - click the change button
    Double click on the client number
    In the Restriction section, tick Allows CATT processes to
    be started.
    Upload data using CATT
    1. Create Import variant for the fields you need
    Transaction SCAT
    Goto Parameters
    Create Import Variant
    Goto Variant -> Edit
    Goto Variant -> Fast entry or F9
    Duplicate 01
    2. To change the MRP Group for a list of Material
    Assuming that I want to change the MRP Group for a list of
    Material.
    My text files should look something like this:
    [Variant ID] [Variant Text] &ZDISGR &ZMATNR
    --> Parameter texts MRP group Material
    --> Default Values M1 A001
    Changes to the default values displayed above not
    effective
    #01  M1 A001
    #02  ''     A002
    #03  M1 A003
    Note : '' denotes a blank in the field. e.g. Material A002
    MRP group will be replaced by a blank.
    3. Configure the recorded entry fields to read from the
    imported text file data
    In the CATT : Maintain functions test case Screen
    Double click on the Object Name
    Double click on the screen number with your desired fields
    Park the cursor on the fields
    Click Edit -> Details
    Fill in the Parameters Name and Field Contents
    Finish Save it.
    Assign your text file data.
    In the CATT : Execute test case Screen
    Click External from file and choose your text file
    CATT will now read from your text file and update whatever
    data you have specified.
    LSMW
    Using LSMW you can update any kind of data but no changes to database are allowed, where as CATT tool can update only master data, which also allows changes to the master data and also a significant testing of data is possible. LSMW is a tool that offers you 4 ways to import data into SAP, they are BDC, Direct Input, BAPI(BO), IDOC.It is used for migrating the data b/w the Non-SAP and SAP application to do for that we can take the Non-SAP application data and Converts the data into the Legacy data. After the Legacy data creation convert the data in to the "Flat file". That flat file is in the form of text file or excel format.If the file is in the form of text format
    we can create the ".txt" file ("ABC.txt")and in the form of
    excel ".xls" file is created. flat file for dos and .xls
    file for IBM. The converted file (.txt/.xls)is either upload or download. The Upload functionality if used for .txt file to SAP and where as Downloading is the concept while SAP to .txt/.xls file.
    Execute the transaction LSMW to start transfer of data,Before using the LSMW we should have good knowledge about the business object and the fields that will be transferred.
    There are 14 steps that are normally used and these are :
    1)   Maintain Object Attributes.
    2)   Maintain Source Structures.
    3)   Maintain Source Fields.
    4)   Maintain Structure Relations
    5)   Maintain Field Mapping and conversion rules .
    6)   Maintain Fixed Values,translations ,user defined routines.
    7)   Specify Files .
    8)   Assign Files .
    9)   Read DATA.
    10) Display Read Data.
    11) Convert Data.
    12) Display Converted Data.
    13) Create Batch Input Session.
    14) Run Batch Input Sesion.

Maybe you are looking for

  • Drop Down Menu not functioning

    I'm very VERY new to dreamweaver/fireworks but have been making small changes to multipul websites for a company. They have asked me to come up with a totally new design for their primary webpage and I'm having an issue with the drop-down menu. I'm c

  • JTree: how not to render the "tree connecting lines"

    I have a JTree. I would like that my custom tree renderer (using windows LAF) did not paint the dotted line that connect the hierarchy nodes. setting the icon to null in the default renderer only do not paint the folder. How can I disable also the pa

  • Wrong default house bank when paying USD invoice

    vendor ETF does not hav a house bank assigned.  Therefore, when you create a payment proposal the payment should default to the following:- HSB21 - EUR (if the invoice is in Eur) HSB22 - GBP (if the invoice is in GBP) HSB23 - USD (if the invoice is i

  • Pass Input Values to BI Publisher Report Layout from BI Answers Dashboard

    Has anyone been able successfully pass user input values from a BI Answers dashboard prompt into a BI Publisher report? I'm trying add user inputted text (notes, comments) into a report he/she runs. I've been trying with no success. I've matched the

  • 9c error (no usb ports used)

    I tried booting up my pc and I keep getting 9c errors, even though I unplugged and replugged all the wiring in my motherboard (MSI z97 Gaming 5). Even after removing all the usb connectors to my motherboard I keep getting 9c errors, there are no usb