Accessibility differences between version 9 and XI?

Hi I have posted a question in the Adobe Reader forum, but it is more of a developer question and I assume that is why no one has responded to it so far:
http://forums.adobe.com/thread/1155120?tstart=0
I would appreciate it if a moderator could move the thread into the 'SDK' section of this forum.

Hi I have managed to work out why I couldn't access the element windows - I had to disable protected mode within Adobe Reader.
Though now I have a different issue. When I use AutomationElement.FindFirst on the AcrobatSDIWindow, it causes my application to freeze, then Adobe Reader sits there and uses 50% CPU until I close my application.
The same code still works in Adobe Reader 9.5.3. Is there any reason for this?
I spoke to Adobe phone support about this but they wanted to charge for support. I'm not paying them if their update caused the software to break.

Similar Messages

  • Difference Between version 8 and cs3/4 ?

    Hi I have dreamweaver 8 and I use it for all my tasks related to website development.
    I just wanted to know if there is any significant difference between version 8 and cs3/4 ?
    Suggestions appreciated.

    I don't think any of those you have listed are major additions to my own personal workflow in my opinion David.
    Nice add-ons but it's not like 'I really need this'.
    I'd like a better computer each and every year but I can still do all I need with the one I have. Of course you never want to go back once you upgrade but its not as if you can't do what is needed with an older version.
    Improved css rendering? I struggle to find an improvement apart from maybe overflow:hidden; I guess it may also be down to the way you write the css. I've never really struggled with css rendering from version MX onwards, others have.
    Built in css layouts? I wouldn't touch those with a barge pole personally. They can remain in the domain of the inexperienced and when they come to alter them they are so complicated they won't have a clue where to start.
    Spry widgets? Again overcomplicated and used mainly by inexperienced users.
    Live view/live code? Personally have no use for it.
    None of those you listed would effect my workflow. But as I said it's best to download a trial and take it for a spin.
    DW in my opinion doesn't have much more in the way of development to offer apart from incorporating elements which are non-essential. Its a bit like the progress of all their software; they struggle with each new release to find anything wortwhile to include.

  • What are the differences between version 9 and X of the Reader?

    I have been running various releases of Version 9 of the Adobe Reader for a long time. I have noticed that when there is an update available for Version 9 and I click on the "more information" button on the update, it takes me to a web page where there is information on the latest levels of both Version 9 and Version X, but I cannot find any information on what the differences are between version 9 and X. I read the FAQ and found nothing on this, and I even searched this forum and was surprised that there were no topics on this question already.
    Can someone tell me the differences between the 2 versions. I am running Windows 7; is that important as to which version of Reader I should use?

    http://www.adobe.com/products/reader.html
    http://blogs.adobe.com/asset/2010/07/introducing-adobe-reader-protected-mode.html
    Both Adobe Reader 9 and Adobe Reader X work on Windows 7 .
    Hope this helps.

  • Difference between Version 20 and 21.0.025

    Hi,
    I want to know what is the deffence between version 20 and 21. i.e what are the new updates/improvements in version 21.

    Which phone do you mean?

  • File size difference between version 3 and 4

    I'd like to know how to publish a file at the smallest possible size with Captivate 4.
    I have 1 file that is 9176KB published with Captivate 3. The same file published with Captivate 4 becomes 10300KB. I didn't add any functionality just publish it once saved in 4.
    What is the same content ~1MB bigger with the new version? How do I make it smaller?
    Thanks,

    Thanks for the hint! It did make me revisit those files and now I see the reason for the small file sizes: The Apple Finder does note update the file size view once a file was added to a folder. Here's what I did:
    Opened a folder full of .NEFs in detail view in Finder.
    Converted them using DNG Converter
    Looked at the sizes of the files as they were shown in the Finder window allready open.
    Unfortunately, those file sizes are not correct. If I open a new Finder window of the same folder, file sizes are correctly reported as between 3.5 and 5 MB.

  • WHAT IS THE MAIN DIFFERENCES BETWEEN VERSIONS 7 AND 9

    .

    Version 9 does not support CAPS LOCK:-)
    Readme files at
    http://download.oracle.com/docs/cd/E10530_01/doc/nav/portal_1.htm
    will answer your question.

  • Validate_layer_with_context -- differences between version 10g and 11g

    I have a spatial table that validates without issues under v10.2.0.4.0. This table was replicated to a new database running v11.2.0.2.0. Under this environment, the validation reports an "ORA-13366: invalid combination of interior exterior rings" issue. Has anyone else experienced this situation and does anyone have an explanation?
    Thanks,
    David

    Hi David,
    Not sure if I actually solved your issue. Any incorrect ring rotation has always thrown ORA-13367 as long as I have been around, 10g or 11g. In 10g you should never have seen true if any of your rings were originally backwards. And indeed its a big polygon but for example I have been doing some testing with "uber" polygons and just the other night was running SIMPLIFY on a polygon with 1.2 million vertices and it took a while (I went to bed) but in the morning it was done.
    How are you testing ring rotation? I put a quickie function below. Are you doing things similarly? TO_CURRENT will actually reallocate rings from inner to outer if one is inside the other. But as part of the rearranging will always correct the ring orientation. In your case that seems not to have happened which is very odd. But perhaps this has something to do with the sheer number of polygons in the collection and how they interact (raw speculation). I would first try removing that particular polygon with SDO_UTIL.EXTRACT and see if there is anything squirrelly about it by itself.
    Cheers,
    Paul
    CREATE OR REPLACE FUNCTION inspect_ordinate_rotation(
       p_input       IN  MDSYS.SDO_GEOMETRY,
       p_lower_bound IN  NUMBER DEFAULT 1,
       p_upper_bound IN  NUMBER DEFAULT NULL
    ) RETURN VARCHAR2
    AS
       int_dims      PLS_INTEGER := p_input.get_dims();
       int_lb        PLS_INTEGER := p_lower_bound;
       int_ub        PLS_INTEGER := p_upper_bound;
       p_area        NUMBER;
       num_x         NUMBER;
       num_y         NUMBER;
       num_lastx     NUMBER;
       num_lasty     NUMBER;
    BEGIN
       IF int_dims IS NULL
       THEN
         int_dims := 2;
       END IF;
       IF int_ub IS NULL
       THEN
          int_ub  := p_input.SDO_ORDINATES.COUNT;
       END IF;
       IF int_lb IS NULL
       THEN
          int_lb  := 1;
       END IF;
       p_area  := 0;
       num_lastx := 0;
       num_lasty := 0;
       WHILE int_lb <= int_ub
       LOOP
          num_x := p_input.SDO_ORDINATES(int_lb);
          num_y := p_input.SDO_ORDINATES(int_lb + 1);
          p_area := p_area + ( (num_lasty * num_x ) - ( num_lastx * num_y) );
          num_lastx := num_x;
          num_lasty := num_y;
          int_lb := int_lb + int_dims; 
       END LOOP;
       IF p_area > 0
       THEN
          RETURN 'CW';
       ELSE
          RETURN 'CCW';
       END IF;
    END inspect_ordinate_rotation;

  • What is the difference between version 4.7 EE and ECC 6.0 in SD module.

    Hi SAP Gurus,
    what are the features in 4.7 EE version in general.
    what are the features in ECC 6.0  version in general.
    then give me the exact difference between version 4.7 EE and ECC 6.0 in SD module.
    if u give the information, then u will get the rewards.
    Regards,
    somu.

    Hi Somu,
             These are additional enhancements avialble in ECC6.0 other than that remaining same as 4.7E
    1.E-Commerce:- SAP ERP provides powerful e-commerce capabilities that can be expanded in an easy, cost-effective manner in line with business growth. Organizations can run a complete sales process on the Internet, and provide business-to-business (B2B) and business-to-consumer (B2C) customers with personalized and interactive online self-services.
    2.Mobile Sales for Handhelds:-SAP ERP enables sales professionals to access front- and back-office business processes and to manage critical sales activities in the field using standard PDAs or other handheld devices (including those with bar code scanners). In this area, SAP ERP provides the following functions:- Customer managementWith SAP ERP, sales professionals may enter, view, and modify detailed customer information, and view sales order history for each customer.- Sales order managementSAP ERP enables sales staff to take sales orders via bar code scanners; search, create, and modify sales orders; and list or sort sales order partners.- Material managementSupport for material management for mobile sales enables staff to view material lists or details for a specific material, search material, and display customer-specific prices.
    3.Resource-Related Down Payments and Billing:-- Supports creation of down-payment requests analogous to the functions offered by resource-related billing- Enables organizations to bill the requesting company code for services provided via a resource-related billing document.
    4.SAP Beverage Functions Available for the Consumer Products Industry:- As of SAP ERP Central Component (SAP ECC) 5.00, the following functions from the SAP beverage industry solution are available for the consumer products industry:* SAP ECC 5.00, consumer products (EA-CP 500)- Material sorting- Extra charge- Empties management- Part load lift orders- Pendulum list indirect sales- Sales returns- Excise duty* SAP ECC 5.00, supply chain management extension (EA-SCM 500)- Direct store delivery back-end- Master data- Visit control- Transportation planning (including loading units, aggregation categories)- Vehicle space optimization- Output control (including valuated delivery note)- Route accounting (including tour data entry, cash payer, route settlement)* SAP ECC 5.00, industry-specific sales enhancements (EA-ISSE 500)- Extended rebate processing.
    5.Credit Management:-Integrating sales and distribution (SD) credit management with SAP Credit Management application:With SAP ERP 6.0 application, you can also use SAP Credit Management in SAP Financial Supply Chain Management set of applications (FIN-FSCM-CR) to perform all credit checks and commitment updates for all areas of sales (SD-BF-CM). In SAP Credit Management, you can update the data from multiple systems. This enables you to execute credit checks with consistent data in distributed systems, too. Furthermore, you can connect to external credit information providers by extensible markup language (XML) interfaces. Alternatively, you can continue to use SD Credit Management (SD-BF-CM).
    6.E-Commerce: Catalog Management :-As of SAP ERP 6.0 application, you must carry out product catalog replication from your ERP solution to the Text Retrieval and Information Extraction (TREX) server for use in the Web shop, using the report ISA_CATALOG_REPLICATION.
    7.E-Commerce: Quotation and Order Management:- Order creation with reference to a contract that has been displayed* Lock of sales documents to avoid concurrent access during the order change process* Display of bills of material in the shopping basket* Free goods processing* Processing of grid products for the SAP Apparel and Footwear application* One-step business order processing* Selection of multiple transaction types in the shopping basket* Credit card support in business-to-business (B2B) Web shop* Material number format conversion* Maintenance of delivery priority in the shopping basket (B2B)* Document search for all documents across all sales areas* Interprocess communication-characteristic value display in basket and order confirmation
    8.E-Commerce: Selling Over eBay:-Creation and management of product listings on eBay leverages the e-commerce order management and fulfillment capabilities of the SAP ERP application by easily tying existing tax, pricing, shipping, and payment configurations to post-auction processing. Enhancements in 2005: * You can use the business-to-consumer (B2C) checkout instead of the eBay checkout. With the B2C checkout, you can maximize cross-selling and up-selling opportunities by leveraging B2C functionality, determine tax and shipping using the elaborate methodologies available through condition techniques in SAP ERP 6.0. * E-mail notification scenario: winner notification to keep the auction winner updated with the status of the auction and of his or her order * Monitoring through features such as single-activity trace (SAT), heartbeat, and logging * Creation and publishing of multiple-item auctions and manual retraction of winners
    9.E-Commerce: User Management:-- Web-based user management for business-to-business internet users - Assignment of authorization roles to users in web-based user management - Automatic migration of SU05 to SU01 internet users
    10.Enterprise Services in Sales Order Management:-Please check in the Enterprise Services Workplace site which enterprise services are available for sales order management on the SAP Developer Network site (www.sdn.sap.com).
    11.Internet Pricing and Configurator (IPC):-The IPC is enhanced and integrated to allow configuration within the sales documents of the SAP ERP application reusing existing model data while leveraging its improved functionality and advanced user interface within SAP ERP.
    12.Price Catalog (PRICAT): – Inbound Processing (Retail):-Inbound message processing of PRICAT essages:As of SAP ERP Central Component enterprise extension retail 6.0 (EA-RET 600) component, you can create and change article data automatically, or in an interface for mass data handling. The system takes both single and generic articles and bills of material and prices into account.
    13.Rebate Condition Records Using Scales:-As of SAP ERP 6.0 application, you can set up rebate agreements so that the scale base value and the rebate scale level is derived from the total sales volume of multiple condition records. You do this by grouping condition records in the rebate agreement.
    14.SAP Role: – Internal Sales Representative:-SAP role – internal sales representativeThis role delivers all the functions to fulfill the requirements of an internal sales representative. This includes tasks such as answering phone calls from customers and prospective customers, processing incoming inquiries and sales orders, and preparing quotations and sales contracts.Target groupThe responsibilities of an internal sales representative (or customer service representative) include the following:- Answering phone calls from customers and prospective customers- Answering product, price, and order status related questions- Processing incoming inquiries and sales orders- Preparing quotations and sales contracts- Taking sales orders and ensuring successful order processing – for example, taking care of the completeness of sales documents, releasing delivery-blocked orders, and so on - Support for the outside sales force – for example, checking on quotations, updating customer master data, and so on- Preparing reports and sales analyses for the sales manager and the sales teamWork overview This work center gives you an overview of your daily work and gives you easy access to your most important tasks. Sales documents This work center allows you to work on all your sales documents. You can create and maintain inquiries, quotations, sales orders, sales contracts, scheduling agreements, and billing documents. Order fulfillment This work center allows you to monitor order fulfillment. You can display deliveries, backorders, and shipments, and can check product availability.Master data This work center enables you to work on all your master data. You can create and maintain business partners, customer agreements, prices and conditions, and products.
    I hope it will help you
    Regards,
    Murali.

  • What are the difference between 4.6c and 4.7 versions?

    what are the difference between 4.6c and 4.7 versions?
    if any please give me answer
    regards
    ramanji

    Hi,
    Upgrade SAP or Installation of SAP R/3 and ECC
    What is ECC?  Where to find the installation steps of  ECC 5/6.0 with SQL as database and on windows platform with the steps including Solution Manager installation?
    http://service.sap.com/instguides
    ECC means Enterprise Central Component.
    There are all the relevant installation guides. You NEED SAPNet access because without a registered and licensed SolMan installation number you will not be able to generate the SolMan key for the ECC installation.
    Upgrade to 4.7
    Have you gone through an upgrade to 4.7? 
    What are the difference or changes associated with 4.7. 
    If you are currently on 4.6C and are inching forward to upgrading to 4.7 then this information might be useful to you.
    There is very little difference between 4.6 and 4.7, the only "steps" you should need are steps in SU25 ( skip step 1) Then go through all your role and perform a merge old new to bring in the new authorization objects 
    Just to forewarn you of a potential problem which have been encounter at the point of writing.
    After updating/ modifying roles in step 2C, when going back into 2C to make sure all roles are now green, 70% have gone back to red! 
    The maintenance done is ok, but there seems to be a problem while trying to go back into the roles again to re-generate. 
    SAP recognizes them as needing "adjustment", so you cannot pick them up in mass generate in PFCG as they do not come in, even though the authorizations tab is red. 
    This problem is currently with SAP and it is confirmed that nothing have been done wrongly. 
    Generally, the work is quite manageable in the upgrade, but don't be surprised at how big the upgrade is when compared to upgrading from 46b to 46c.
    If we have full software of 46c and 47E is it possible to upgrade 46c to 47E or there is a seperate 47E upgrade software need to be requested from SAP?
    Where I can get the document with upgrade steps on the service market place?
    It is of course possible and supported:
    http://service.sap.com/inguides
    --> SAP Components
    --> SAP R/3 Enterprise
    --> (choose your version)
    at the bottom there is an "Upgrade guide" for Windows and Unix.
    For Upgrades it is recommended to read ALL the notes mentioned in the 
    upgrade guide and to make sure one is using
    - the correct version of the "tp" program
    - the correct version of the "R3trans" program
    - the correct version of the "R3up" program
    All that is explained in the upgrade guide and in the corresponding notes.
    If this is your first upgrade you should take a person, that has some experience on doing that for the first time.
    Installation of SAP R/3
    Currently we are going to install SAP on a new IBM server from the existing COMPAQ server. Where can I get the steps for that. 
    Configuration is :
       OS - windows 2003 server
       DB - Oracle 9i
       SAP 4.7
    http://service.sap.com/instguides
    --> SAP Components
    --> SAP R/3 Enterprise
    --> SAP R/3 Enterprise Core 4.70 / Ext. Set 2.00 (SR1)
    --> Inst. Guide - R/3 Enterprise 4.7 x 2.00 SR1 on Win: Oracle
    The above url is the SAP Service Marketplace with all the information you need to install, configure and run system. You need to be a valid licensed customer with a user ID and PASSWORD to use that.
    Without access you won't be able to successfully run any SAP systems because it has notes, patches etc.

  • Difference between BW3.5 and BI 7.0 version

    difference between BW3.5 and BI 7.0 version

    Hi ,
    Differences between BW 3.5 and BI 7.0
    Major Differences between Sap Bw 3.5 & sapBI 7.0 version:
    1. In Infosets now you can include Infocubes as well.
    2. The Remodeling transaction helps you add new key figure and characteristics and handles historical data as well without much hassle. This is only for info cube.
    3. The BI accelerator (for now only for infocubes) helps in reducing query run time by almost a factor of 10 - 100. This BI accl is a separate box and would cost more. Vendors for these would be HP or IBM.
    4. The monitoring has been imprvoed with a new portal based cockpit. Which means you would need to have an EP guy in ur project for implementing the portal !
    5. Search functionality hass improved!! You can search any object. Not like 3.5
    6. Transformations are in and routines are passe! Yess, you can always revert to the old transactions too.
    7. The Data Warehousing Workbench replaces the Administrator Workbench.
    8. Functional enhancements have been made for the DataStore object:
    New type of DataStore object
    Enhanced settings for performance optimization of DataStore objects.
    9. The transformation replaces the transfer and update rules.
    10. New authorization objects have been added
    11. Remodeling of InfoProviders supports you in Information
    Lifecycle Management.
    12 The Data Source:
    There is a new object concept for the Data Source.
    Options for direct access to data have been enhanced.
    From BI, remote activation of Data Sources is possible in SAP source systems.
    13.There are functional changes to the Persistent Staging Area (PSA).
    14.BI supports real-time data acquisition.
    15 SAP BW is now known formally as BI (part of NetWeaver 2004s). It implements the Enterprise Data Warehousing (EDW). The new features/ Major differences include:
    a) Renamed ODS as DataStore.
    b) Inclusion of Write-optmized DataStore which does not have any change log and the requests do need any activation
    c) Unification of Transfer and Update rules
    d) Introduction of "end routine" and "Expert Routine"
    e) Push of XML data into BI system (into PSA) without Service API or Delta Queue
    f) Intoduction of BI accelerator that significantly improves the performance.
    g) Load through PSA has become a must. I am not too sure about this. It looks like we would not have the option to bypass the PSA Yes,
    16. Load through PSA has become a mandatory. You can't skip this, and also there is no IDoc transfer method in BI 7.0. DTP (Data Transfer Process) replaced the Transfer and Update rules. Also in the Transformation now we can do "Start Routine, Expert Routine and End Routine". during data load.
    New features in BI 7 compared to earlier versions:
    i. New data flow capabilities such as Data Transfer Process (DTP), Real time data Acquisition (RDA).
    ii. Enhanced and Graphical transformation capabilities such as Drag and Relate options.
    iii. One level of Transformation. This replaces the Transfer Rules and Update Rules
    iv. Performance optimization includes new BI Accelerator feature.
    v. User management (includes new concept for analysis authorizations) for more flexible BI end user authorizations.
    Regards
    KP

  • What is the difference between a full and a upgrade version?

    When I want to buy photoshop elements 8.0 i can select a full or upgrade version, the price is alsmost thesame.
    normally you would think a upgrade is just a upgrade and you can't use it if you don't already have photoshop Elements installed.
    but in many online stores they only sell the upgrade version.
    so that makes me believe you can buy it even tho you don't have any photoshop elements on your pc.
    so what is the difference?

    The only difference between the Upgrade and Full version is of the pricing. I believe right now Adobe is already offering PSE at $79 so there is no Upgrade option appearing on the website (although I am not sure about unavailability, I just stating what one of the user on the forum says).
    Legally, you should be a previous customer of PSE to buy an upgrade version and I am not sure but I believe when one go for buying the Upgrade version they do need to provide the serial number of the previous verison.(not sure though)
    Regards,
    Ankush

  • I have an old version of itunes installed in my iPod.I had a syncronize mistake and I tried to change iTunes to 10.4.1. Now iTunes doesn't recognizes my ipod because of the difference between versions. What can I do?

    I have an old version of itunes installed in my iPod.I had a syncronize mistake and I tried to change iTunes to 10.4.1. Now iTunes doesn't recognizes my ipod because of the difference between versions. What can I do?

    I reinstalled the current version of iTunes, 8.2.1.
    Current version?? Did this post appear out of a time warp?  The current version is 10.7!
    http://www.apple.com/itunes/download/

  • Differences between PT8.51 and PT8.52 versions

    Hi,
    Can I get some documentation or reference URL for differences between PT8.51 and PT8.52 versions?
    Thank You!
    Regards
    Soundappan

    In addition, specially for the YouTube generation, Gray Sparling has created a great webinar on the features of PeopleTools 8.52
    http://www.youtube.com/playlist?list=PL9B370AEEF80F8C10&feature=plcp
    I have also written a couple of blogs on some feaures of PeopleTools 8.52
    http://bloggingaboutoracleapplications.org/bi-publisher-enhancements-peopletools-852/
    http://bloggingaboutoracleapplications.org/create-interactive-dashboard-interwindow-communication-iwc/
    http://bloggingaboutoracleapplications.org/create-apealing-dashboards-peopletools-852/
    http://bloggingaboutoracleapplications.org/peoplesoft-oracle-secure-enterprise-search-ses/
    http://bloggingaboutoracleapplications.org/peopletools-852-generally/
    That should keep you busy for some wile :)

  • Documentation on differences between Version ECC 6 and Old version

    We are looking for information/documentation on differences between Version ECC 6 and Old version for HCM. Appreciate for your great help.
    Best Regards,
    Eric

    Hai..
    Re: differnce b/n 4.7 and  ecc 6.0
    Re: Difference Between SAP Version ECC 4.6, 4.7, SAP 5.0, 6.0 with SA
    https://websmp210.sap-ag.de/releasenotesRelease Notes
    http://service.sap.com/erp
    http://solutionbrowser.erp.sap.fmpmedia.com/
    http://service.sap.com/instguides
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/LOVC/LOVC.pdf
    http://solutionbrowser.erp.sap.fmpmedia.com/
    http://solutionbrowser.erp.sap.fmpmedia.com/

  • What is the difference between version 4.7EE and ECC 5.0

    DEAR EXPERTS
    what is the difference between version 4.7EE and ECC 5.0?WHAT ARE THE ADDITIONAL FUNCTIONALTIES IN
    ECC 5.0?

    hi,
    Diff between 4.7 and ECC 5.0:
    1. 4.7 is on R/3 platform, while ECC 5.0 is on mySAP ERP 2004
    2. ECC 5.0 is having ESA(enterprise Serviceoriented Architecture)
    3.ECC 5.0 is web enabled with Netweaver technology.
    mySAP ERP is the "newer" ERP with numbering conventions like ECC (which stands for ERP Central Component) 5 or 6
    mySAP (aka mySAP.com) Business Suite contains Solutions like CRM, SCM etc. The important thing to note here is that this contains mySAP ERP, the one above
    mySAP All-in-One Solution is designed for smaller companies (the ad that says SAP is not just for large companies but for great companies where the above mentioned functionality is scaled down and is made to run on one database on a PC type of setup as opposed to the full blown architectures on which SAP traditionally set to run

Maybe you are looking for