Change to earlier target version and question on combs

Is there a way to change the target version of a form without rebuilding it?
I built some forms targeted at Acrobat 8 because of features used (combs mostly) but the client needs Acrobat 7 compliance (government IT policy).
Also, I tried out the combs in Reader 7 and they seemed to work ok - does anyone know why they're not supposed to be version 7 compliant?

Under the File Menu/Form Properties in the Defaults Tab you can set a target version. If you have added features to the form that are beyond this target version you will see warnings in the Warnings/Report palette. To activate this palette click on Report under the Window menu.
I am going from memory here so the story may not be 100% correct but you will get the idea.
The UI to add the comb to the form was added in Designer 8. The xfa grammar (the part that describes the comb in the xml template) has been available from the beginning. So the interpretation of the grammar to the comb is OK. Previous to version 8 of Designer you had to code the xml by hand (hence the term it is not supported). Make sure you test it but I am sure that it will behave the way you want.

Similar Messages

  • I have a macbook pro 13" early 2011 version and what to install windows 7 on it via bootcamp but not sure that whether to install x64 or x86 version? which one will work better

    i have a macbook pro 13" early 2011 version and what to install windows 7 on it via bootcamp but not sure that whether to install x64 or x86 version? which one will work better

    There is no need for anyone to use 32-bit version anymore.
    Retail comes with both. Or you can save on just buying 64-bit System Builder disc.
    Better support for today's hardware with larger video graphic memory and systems.
    Better memory management.

  • I am trying to run a trial version of aperture 3.1, I have in the past run an earlier trial version and found it unsatisfactory, so neverwent ahead with the purchase. Now when I try to trial run the current version, I keep getting "trial expired" messages

    I am trying to run a trial version of aperture 3.1, I have in the past run an earlier trial version and found it unsatisfactory, so I never went ahead with the purchase. Now when I try to trial run the current version, to see if it has improved on my system, I keep getting "trial has expired" messages.

    I believe that Apple and most other vendors allow only one free trial.
    You could call 1-800-SOS-APPL and ask customer support.

  • Target version and Enable Process management

    Hi John,
    Why cant we enable process management for a version which is a target version?
    Sravan

    I think you need to direct that question to Oracle
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Some web pages come up blank, generally following a link, that have opened without issues in earlier FF versions. Pages open OK in IE8 and/or in Chrome. Have tried the cookies clearing etc as suggested elsewhere, without success.

    I'm running FF 3.6.8. Certain websites (no apparent pattern, no secure sites) come up blank (white screen), showing "Done" on the footer. It generally happens when clicking on a link in another web page but no login or similar is involved to get to the intended site. Have cleared the cookies and followed the advice for a similar issue stated elsewhere on the Help forum, to no avail. Have also not added any add-ons since that recent FF upgrade.
    The affected sites have come up without issues in earlier FF versions, and they do load in IE8 and in Chrome. A representative example is shown below. - Will appreciate any helpful comments and recommendations!

    "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"<br />
    "Remove the Cookies" from sites that cause problems: Tools > Options > Privacy > Cookies: "Show Cookies"<br />
    <br />
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).<br />
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]<br />

  • HT3965 This screen shot has changed with the new version

    The layout has changed with this new version and the main screen does not have the same menu on the left anymore.  I cannot see how to change the name, transfer files, etc.  It also keeps freezing and crashing.  Anybody else having problems?  And how to I do all of these things since this has all changed?

    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • Problems with JDBC/Oracle version and types.

    Hello all,
    I am having a boring version problem here. We, recently, changed our Oracle 8i (8.1.7) for a Oracle 9i (9.2.0.6).
    We have several Java/J2EE applications running on JBoss and accessing that Oracle Database.
    We haven´t changed the JDBC driver version and we started to notice that a lot of cursors have been stucked and are not been closed.
    Searchin in Google and metalink we´ve decided to update ou JDBC driver version from classes12_8.1.7.1.jar for this ojdbc14.jar (9.2.0.5).
    After this change we started to have a lot of ClassCastExceptions, specially in this case:
    When my app call this procedure:
    MY_PROC(USR IN VARCHAR2, ID OUT NUMBER)
    in my Java app, using such code:
    CallableStatement call = conn.prepareCall("{ call MY_PROC(?,?) }",
    ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_READ_ONLY);
    call.setString(1, user);
    call.registerOutParameter(2, OracleTypes.INTEGER);
    call.executeQuery();
    BigDecimal id = (BigDecimal) call.getObject(2);
    Instead of BigDecimal, the JDBC driver returns me an Integer object, using driver version 9. With the 8i driver it works fine (although we still have the cursor problem).
    The fact is, we have a lot of points to change in our apps if we change the driver version, which is not good.
    Is there any other suitable thing we can do to solve our problem and minimize our work.
    Recall we use Java / JBoss / Oracle 9i.
    Thanks
    Daniel

    Hello all,
    I am having a boring version problem here. We, recently, changed our Oracle 8i (8.1.7) for a Oracle 9i (9.2.0.6).
    We have several Java/J2EE applications running on JBoss and accessing that Oracle Database.
    We haven´t changed the JDBC driver version and we started to notice that a lot of cursors have been stucked and are not been closed.
    Searchin in Google and metalink we´ve decided to update ou JDBC driver version from classes12_8.1.7.1.jar for this ojdbc14.jar (9.2.0.5).
    After this change we started to have a lot of ClassCastExceptions, specially in this case:
    When my app call this procedure:
    MY_PROC(USR IN VARCHAR2, ID OUT NUMBER)
    in my Java app, using such code:
    CallableStatement call = conn.prepareCall("{ call MY_PROC(?,?) }",
    ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_READ_ONLY);
    call.setString(1, user);
    call.registerOutParameter(2, OracleTypes.INTEGER);
    call.executeQuery();
    BigDecimal id = (BigDecimal) call.getObject(2);
    Instead of BigDecimal, the JDBC driver returns me an Integer object, using driver version 9. With the 8i driver it works fine (although we still have the cursor problem).
    The fact is, we have a lot of points to change in our apps if we change the driver version, which is not good.
    Is there any other suitable thing we can do to solve our problem and minimize our work.
    Recall we use Java / JBoss / Oracle 9i.
    Thanks
    Daniel

  • How can I view Alexa Status Bar on Firefox 6.0.2 Windows 7 64bit? After instalation is only available Alexa Toolbar and settings changed in Alexa Toolbar isnt saved. On earlier Firefox versions this problem is not available.

    On earlier Firefox versions all was ok and problem is avilable for installation Firefox 6.0.2

    Try http://forums.adobe.com/thread/892474

  • Technical Design Review Question: Data target Mapping and transformation

    I got my hands on technical design documentation for a project on COPA budget. I came up with a few questions but I will post them separately for fast closing and awards:
    In the discussions of Data target Mapping and transformation, there was a table of characteristics, showing dimensions, BW filed, Source field, data type, etc.
    1. What is the technique in deciding which characteristics get grouped together into a particular dimension?
    2. Why do some dimensions only have one characteristic and what is its significance?
    3. I saw one BW field, OVAL_TYPE (description= valuation type) included in three dimensions: Customer, Material and Valuation Type(only field=OVAL_TYPE). What is the significance of this repetition?
    Thanks

    Morning,
    To define Dimension means, to group all characters together, which do have a relationship "1 to n" and not "n to m" to reduce data volume (cardinality). If you reduce cardinality (which means to define 1:m relationship whenever it is possible and group them within one common dimension) you increase performance (make performance better) because of less data volume. It is essential to understand that this can not be changed easily after definition in PROD. So data modeling is also from this point of view very important.
    Example:
    An accounting object has a "m:n" relation ship to the accounting partner object. that's the reason way accounting object and accounting partner object do not belong to the same dimension.
    Ni hao
    Eckhard Lewin

  • Using Adobe Photoshop CS2 version 9 and have updated it, but when stacking photos, it comes up with PSD, whereas I want Jpeg, and I change the format to Jpeg and the box then comes up with cannot save as there is a program error. Be very grateful for help

    Using Adobe Photoshop CS2 version 9 and have updated it, but when stacking photos, it comes up with PSD, whereas I want Jpeg, and I change the format to Jpeg and the box then comes up with cannot save as there is a program error. Be very grateful for help with this, please.

    jpg does not support Layers.
    Just to make sure, what exactly do you mean by "stacking photos" and what do you want to achieve thereby?

  • I'm using Iphone 5 .After updating it with the latest software i.e iOS 7.0.6 I'm not able to see the wats app and imsg on my notification until and unless i activate the "Show on Lock Screen" which was not same as in the earlier software version.Help plz

    I'm using Iphone 5 .After updating it with the latest software i.e iOS 7.0.6 I'm not able to see the wats app and imsg on my notification center when my phone is locked until and unless i activate the "Show on Lock Screen" under each application. which was not same as in the earlier software version.I dnt want my messages or watsapp msges to be displayed on home screen when locked but should be displayed on the notification center on lock condition.
    Please suggest a solution or @Apple please get a software release which can remove this bug .

    We aren't Apple, just users like you. Have you tried a reset? Hold down the home button along with the sleep/wake button until the screen goes black and you see the Apple, then let go. (No data loss)

  • I just bought a new computer.  My old computer was a 32bit system but my new one is a 64bit.  I own ps cs6.  My question is"will I be able to deactivate ps on my old system, and download the 64 bit version and install and activate it or do I have to buy t

    I just bought a new computer.  My old computer was a 32bit system but my new one is a 64bit.  I own ps cs6.  My question is"will I be able to deactivate ps on my old system, and download the 64 bit version and install and activate it or do I have to buy the 64bit version in order to move forward.

    Nope, you can install it on your new computer with no issues. The disc contains both the 32 and 64 bit versions.
    Benjamin

  • I own CS6. I just built a new computer with Win-7. How do I change to the 64 bit version and install on the new computer?

    I own CS6. I just built a new computer with Win-7. How do I change to the 64 bit version and install on the new computer?
    Lance

    download the installation file(s) and activate with your serial number,
    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  12 | 11, 10 | 9,8,7
    Lightroom:  5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.
    window using the Lightroom 3 link to see those 'Important Instructions'.<

  • I have purchased a film from the istore and it had transferred to my download but I can not do it as it say I don't have enough storage. I pressed the he version and know SD are smaller how can I change it to SD version?

    I have purchased a film from the istore and it had transferred to my download but I can not do it as it say I don't have enough storage. I pressed the HD version and know SD are smaller how can I change it to SD version?

    Tap Settings > General > About then swipe down, you'll see Available.
    Make sure there's at least 500MB's of storage space.

  • I've bought a student plan but every time I open currently downloaded programms I see an automatically opened window that says I'm using trial version and still have several days to use it. How can I change it?

    I've bought a student plan but every time I open currently downloaded programms I see an automatically opened window that says I'm using trial version and still have several days to use it. How can I change it? It makes me nervous , as it demands serial number, but e-mail i've got from Adobe doesn't contain any serial number or invitation or something like that.

    Vetscheriascha to validate the software you will want to resolve the connection error between the computer and our activation server.  Please see Sign in, activation, or connection errors | CC, CS6, CS5.5 - http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html for information on how to resolve the connection error.

Maybe you are looking for