JavaScript works in Pro but not Reader - NotAllowedError

I have created a web form in Adobe XI Pro. We have some progress bars at the top with number of fields completed type of thing. All of my JavaScript works perfectly in Acrobat. I save it like so Save As Other > Reader Extended PDF > Enable More Tools. Again everything works in Acrobat. When I open the PDF in Reader the JavaScript won't work. My forms still fill I can save and such, but no JavaScript progress bars. We create this form frequently and it has always worked. I assume it is some sort of new update to Adobe XI Pro. Here is the error I receive in the debugger:
NotAllowedError: Security settings prevent access to this property or method.
Doc.title:27:Document-Level:Progress
I was thinking it might be related to the security settings these are the only 2 things not allowed.
Document Assembly : Not Allowed
Page Extraction: Not Allowed
But as I read through the forums I am not sure that is actually the problem. Any ideas?
Thanks in advance,
Jen

//Turn off the warnings when JavaScript is enabled
this.getField("JavascriptWarning").display = display.visible;
this.getField("ProgressTracking").display = display.visible;
//Required fields warning
this.alerted = false;
//Define all required fields
this.first = this.getField("FirstName");
this.family = this.getField("FamilyName");
this.addressOne = this.getField("AddressOne");
this.addressTwo = this.getField("AddressTwo");
this.postcodeOne = this.getField("Postcode-1");
this.daytimeTelephone = this.getField("DaytimeTelephone");
this.payrollReference = this.getField("PayrollReference");
//---P46
this.nationalOne = this.getField("NationalInsurance1");
this.nationalTwo = this.getField("NationalInsurance2");
this.nationalThree = this.getField("NationalInsurance3");
this.nationalFour = this.getField("NationalInsurance4");
this.nationalFive = this.getField("NationalInsurance5");
this.nationalSix = this.getField("NationalInsurance6");
this.nationalSeven = this.getField("NationalInsurance7");
this.nationalEight = this.getField("NationalInsurance8");
this.nationalNine = this.getField("NationalInsurance9");
this.title = this.getField("Title");
this.surnameOne = this.getField("SurnameFamilyName-1");
this.firstOne = this.getField("FirstorGivenName-1");
this.dobOne = this.getField("DOB-1");
this.dobTwo = this.getField("DOB-2");
this.dobThree = this.getField("DOB-3");
this.dobFour = this.getField("DOB-4");
this.dobFive = this.getField("DOB-5");
this.dobSix = this.getField("DOB-6");
this.dobSeven = this.getField("DOB-7");
this.dobEight = this.getField("DOB-8");
this.houseOne = this.getField("HouseOrFlatNumber-1");
this.restAddressOne = this.getField("RestOfAddress-1");
this.dateOne = this.getField("Date-1");
//---Leidos Employee Bank Details For Payroll
this.employeeNumber = this.getField("EmployeeNumber");
this.bankName = this.getField("BankName");
this.bankAddressOne = this.getField("BankAddressOne");
this.bankAddressTwo = this.getField("BankAddressTwo");
this.bankPostcodeOne = this.getField("BankPostcode-1");
this.bankSortCodeOne = this.getField("BankSortCode-1");
this.bankAccountNumber = this.getField("BankAccountNumber-1");
this.effectiveDate = this.getField("EffectiveDate");
//---Baseline Personnel Security Standard
this.birthPlace = this.getField("PlaceOfBirth");
this.birthNationality = this.getField("NationalityAtBirth");
this.presentNationality = this.getField("PresentNationality");
//Load them all into an array
this.REQUIRED = [first, family, addressOne, addressTwo, postcodeOne, daytimeTelephone, payrollReference, nationalOne, nationalTwo, nationalThree, nationalFour, nationalFive, nationalSix, nationalSeven, nationalEight, nationalNine, title, surnameOne, firstOne, dobOne, dobTwo, dobThree, dobFour, dobFive, dobSix, dobSeven, dobEight, houseOne, restAddressOne, dateOne, employeeNumber, bankName, bankAddressOne, bankAddressTwo, bankPostcodeOne, bankSortCodeOne, bankAccountNumber, effectiveDate, birthPlace, birthNationality, presentNationality ];
//Define the colors to be used
this.gray = ["RGB", 0.208, 0.208, 0.208];
this.amber = ["RGB", 0.992, 0.905, 0];
this.red = ["RGB", 0.937, 0.282, 0.212];
this.green = ["RGB", 0.431, 0.710, 0.016];
//Call the document-level functions to update the Checklist
updateAll();
function updateAll()
  Dupdate();
  EOWupdate();
  LNHupdate();
  EBDupdate();
  BPSSupdate();
//Updates the P46 entry.
/*----------------NEW-------------------*/
function Dupdate()
  this.DfieldCount = 0
  this.DnumComplete = 0;
  //Get all required fields in the form ----------- ecFirst, ecNationalOne
  var postcodeOne = this.getField("Postcode-1");
  var nationalOne = this.getField("NationalInsurance1");
  var nationalTwo = this.getField("NationalInsurance2");
  var nationalThree = this.getField("NationalInsurance3");
  var nationalFour = this.getField("NationalInsurance4");
  var nationalFive = this.getField("NationalInsurance5");
  var nationalSix = this.getField("NationalInsurance6");
  var nationalSeven = this.getField("NationalInsurance7");
  var nationalEight = this.getField("NationalInsurance8");
  var nationalNine = this.getField("NationalInsurance9");
  var title = this.getField("Title");
  var surnameOne = this.getField("SurnameFamilyName-1");
  var firstOne = this.getField("FirstorGivenName-1");
  var dobOne = this.getField("DOB-1");
  var dobTwo = this.getField("DOB-2");
  var dobThree = this.getField("DOB-3");
  var dobFour = this.getField("DOB-4");
  var dobFive = this.getField("DOB-5");
  var dobSix = this.getField("DOB-6");
  var dobSeven = this.getField("DOB-7");
  var dobEight = this.getField("DOB-8");
  var houseOne = this.getField("HouseOrFlatNumber-1");
  var restAddressOne = this.getField("RestOfAddress-1");
  var dateOne = this.getField("Date-1");
  var dFields = [postcodeOne, nationalOne, nationalTwo, nationalThree, nationalFour, nationalFive, nationalSix, nationalSeven, nationalEight, nationalNine, title, surnameOne, firstOne, dobOne, dobTwo, dobThree, dobFour, dobFive, dobSix, dobSeven, dobEight, houseOne, restAddressOne, dateOne];
  //Check required fields for completion and visibility
  for (var i in dFields)
  if (dFields[i].display == display.visible)
  this.DfieldCount++;
  if (dFields[i].value != "" && dFields[i].name != "ReceiveCopy")
  this.DnumComplete++;
  if(dFields[i].name == "ReceiveCopy")
  if(dFields[i].value == "Yes" || dFields[i].value == "No")
  this.DnumComplete++;
  var t = this.getField("PFortySix");
  if (DnumComplete == 0)
  t.fillColor = this.gray;
  this.getField("DProgress").userName = "";
  else if (DnumComplete < DfieldCount)
  t.fillColor = this.amber;
  this.getField("DProgress").userName = "";
  else
  t.fillColor = this.green;
  this.getField("DProgress").value = this.DnumComplete + "/" + this.DfieldCount;
  if (this.DnumComplete == this.DfieldCount) this.getField("DProgress").userName = "Done";
//Updates the Leidos Expression of Wish entry.
/*----------------NEW-------------------*/
function EOWupdate()
  this.EOWfieldCount = 0
  this.EOWnumComplete = 0;
  //Get all required fields in the form ----------- ecFirst, ecFamily, ecAddressOne, ecAddressTwo, ecPostcodeOne, ecNationalOne
  var first = this.getField("FirstName");
  var family = this.getField("FamilyName");
  var addressOne = this.getField("AddressOne");
  var addressTwo = this.getField("AddressTwo");
  var postcodeOne = this.getField("Postcode-1");
  var daytimeTelephone = this.getField("DaytimeTelephone");
  var payrollReference = this.getField("PayrollReference");
  var nationalOne = this.getField("NationalInsurance1");
  var nationalTwo = this.getField("NationalInsurance2");
  var nationalThree = this.getField("NationalInsurance3");
  var nationalFour = this.getField("NationalInsurance4");
  var nationalFive = this.getField("NationalInsurance5");
  var nationalSix = this.getField("NationalInsurance6");
  var nationalSeven = this.getField("NationalInsurance7");
  var nationalEight = this.getField("NationalInsurance8");
  var nationalNine = this.getField("NationalInsurance9");
  var dobOne = this.getField("DOB-1");
  var dobTwo = this.getField("DOB-2");
  var dobThree = this.getField("DOB-3");
  var dobFour = this.getField("DOB-4");
  var dobFive = this.getField("DOB-5");
  var dobSix = this.getField("DOB-6");
  var dobSeven = this.getField("DOB-7");
  var dobEight = this.getField("DOB-8");
  var eowFields = [first, family, addressOne, addressTwo, postcodeOne, daytimeTelephone, payrollReference, nationalOne, nationalTwo, nationalThree, nationalFour, nationalFive, nationalSix, nationalSeven, nationalEight, nationalNine, dobOne, dobTwo, dobThree, dobFour, dobFive, dobSix, dobSeven, dobEight ];
  //Check required fields for completion and visibility
  for (var i in eowFields)
  if (eowFields[i].display == display.visible)
  this.EOWfieldCount++;
  if (eowFields[i].value != "")
  this.EOWnumComplete++;
  var t = this.getField("ExpressionWish");
  if (EOWnumComplete == 0)
  t.fillColor = this.gray;
  this.getField("EOWProgress").userName = "";
  else if (EOWnumComplete < EOWfieldCount)
  t.fillColor = this.amber;
  this.getField("EOWProgress").userName = "";
  else
  t.fillColor = this.green;
  this.getField("EOWProgress").value = this.EOWnumComplete + "/" + this.EOWfieldCount;
  if (this.EOWnumComplete == this.EOWfieldCount) this.getField("EOWProgress").userName = "Done";
//Updates the Leidos Limited New Hires entry.
/*----------------NEW-------------------*/
function LNHupdate()
  this.LNHfieldCount = 0
  this.LNHnumComplete = 0;
  //Get all required fields in the form ----------- ecFirst, ecFamily
  var first = this.getField("FirstName");
  var family = this.getField("FamilyName");
  var lnhFields = [first, family ];
  //Check required fields for completion and visibility
  for (var i in lnhFields)
  if (lnhFields[i].display == display.visible)
  this.LNHfieldCount++;
  if (lnhFields[i].value != "")
  this.LNHnumComplete++;
  var t = this.getField("LimitedNewHires");
  if (LNHnumComplete == 0)
  t.fillColor = this.gray;
  else if (LNHnumComplete < LNHfieldCount)
  t.fillColor = this.amber;
  else
  t.fillColor = this.green;
  this.getField("LNHProgress").value = this.LNHnumComplete + "/" + this.LNHfieldCount;
  if (this.LNHnumComplete == this.LNHfieldCount) this.getField("LNHProgress").userName = "Done";
  else this.getField("LNHProgress").userName = "";
//Updates the Leidos Employee Bank Details for Payroll entry.
/*----------------NEW-------------------*/
function EBDupdate()
  this.EBDfieldCount = 0
  this.EBDnumComplete = 0;
  //Get all required fields in the form -----------
  var first = this.getField("FirstName");
  var family = this.getField("FamilyName");
  var employeeNumber = this.getField("EmployeeNumber");
  var bankName = this.getField("BankName");
  var bankAddressOne = this.getField("BankAddressOne");
  var bankAddressTwo = this.getField("BankAddressTwo");
  var bankPostcodeOne = this.getField("BankPostcode-1");
  var bankSortCodeOne = this.getField("BankSortCode-1");
  var bankAccountNumber = this.getField("BankAccountNumber-1");
  var effectiveDate = this.getField("EffectiveDate");
  var ebdFields = [first, family, employeeNumber, bankName, bankAddressOne, bankAddressTwo, bankPostcodeOne, bankSortCodeOne, bankAccountNumber, effectiveDate ];
  //Check required fields for completion and visibility
  for (var i in ebdFields)
  if (ebdFields[i].display == display.visible)
  this.EBDfieldCount++;
  if (ebdFields[i].value != "")
  this.EBDnumComplete++;
  var t = this.getField("EmployeeBankDetails");
  if (EBDnumComplete == 0)
  t.fillColor = this.gray;
  else if (EBDnumComplete < EBDfieldCount)
  t.fillColor = this.amber;
  else
  t.fillColor = this.green;
  this.getField("EBDProgress").value = this.EBDnumComplete + "/" + this.EBDfieldCount;
  if (this.EBDnumComplete == this.EBDfieldCount) this.getField("EBDProgress").userName = "Done";
  else this.getField("EBDProgress").userName = "";
//Updates the Baseline Personnel Security Standard entry.
/*----------------NEW-------------------*/
function BPSSupdate()
  this.BPSSfieldCount = 0
  this.BPSSnumComplete = 0;
  //Get all required fields in the form -----------
  var first = this.getField("FirstName");
  var family = this.getField("FamilyName");
  var addressOne = this.getField("AddressOne");
  var addressTwo = this.getField("AddressTwo");
  var postcodeOne = this.getField("Postcode-1");
  var daytimeTelephone = this.getField("DaytimeTelephone");
  var dobOne = this.getField("DOB-1");
  var dobTwo = this.getField("DOB-2");
  var dobThree = this.getField("DOB-3");
  var dobFour = this.getField("DOB-4");
  var dobFive = this.getField("DOB-5");
  var dobSix = this.getField("DOB-6");
  var dobSeven = this.getField("DOB-7");
  var dobEight = this.getField("DOB-8");
  var birthPlace = this.getField("PlaceOfBirth");
  var birthNationality = this.getField("NationalityAtBirth");
  var presentNationality = this.getField("PresentNationality");
  var bpssFields = [first, family, addressOne, addressTwo, postcodeOne, daytimeTelephone, dobOne, dobTwo, dobThree, dobFour, dobFive, dobSix, dobSeven, dobEight, birthPlace, birthNationality, presentNationality];
  //Check required fields for completion and visibility
  for (var i in bpssFields)
  if (bpssFields[i].display == display.visible)
  this.BPSSfieldCount++;
  if (bpssFields[i].value != "")
  this.BPSSnumComplete++;
  var t = this.getField("Baseline");
  if (BPSSnumComplete == 0)
  t.fillColor = this.gray;
  else if (BPSSnumComplete < BPSSfieldCount)
  t.fillColor = this.amber;
  else
  t.fillColor = this.green;
  this.getField("BPSSProgress").value = this.BPSSnumComplete + "/" + this.BPSSfieldCount;
  if (this.BPSSnumComplete == this.BPSSfieldCount) this.getField("BPSSProgress").userName = "Done";
  else this.getField("BPSSProgress").userName = "";

Similar Messages

  • Trailing cursor javascript works in IE, but not in Firefox

    Javascript trailing cursor works in IE, but not in Firefox
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 1.1.4322)

    Without any links to the [http://pastebin.mozilla.org code] we can only suggest you test it in more browsers such as [http://www.opera.com/ Opera] and [http://www.google.com/chrome/ Chrome]

  • InitState works in Acrobat but not Reader

    Hi I am new here and not very good with javascript, so please bare with me.
    I have created a document with five radio buttons that toggle between layers via executing OCG .state and .initState scripts depending on which button is selected.  Both work fine in Acrobat in setting the current state and the default state of the layers. But when I open the document in Reader, only .state seems to toggle between layer visibility and .initState fails to set the default state of layers.  Essentially what I need is to be able to set the default state to layers in Reader.   I noticed that the Layer Properties panal is not editable in reader and that this may be the culprit, but I can not find how to activate it or to even enable manualy setting the default state of layers to on or off.
    In addition to the FindOCG script at the document level here are samples of what I have set as mouse up actions to the radio buttons.
    FindOCG("LayerName).state = true;
    FindOCG("LayerName").initState = true;
    Each of these is its own action.
    I am using Acrobat Pro 10.1.8 and Reader 11.0.3 on Windows 7 Ultimate.
    Any help with this would be greatly apriciated.
    Thanks
    Jesse

    I have a project to create editable business cards to be distributed through our franchise system.  We have several designs and combinations of double sided business cards.  In short my goal was to be able to toggle between combinations of front and back designs (1st and 2nd pages) in the form of different layers for double sided business cards.  It seemed doable at first and is functioning just fine in Acrobat.  I thought it would be nice to distribute one PDF rather than several, which is what our franchisees like. The PDFs have form fields for all the variable information.  I can toggle between form and design layouts, but the design layouts do not hold after saving and re-opening in Reader because in adition to toggling the layer visibility I have to set the default open state of the visible layers to on so that when the PDF is re-openend, say at a press to be printed, the correct layers are displayed and printed without the press having to make any edits.  The .initState simply is not effecting the default states in Reader.  As for runtime code, I don't know what that is.  I don't know much about coding, I figured out just enough to get this far.

  • Trouble changing Camera RAW settings in Javascript (worked in CS5, but not CS6)

    I just upgraded to Master Collection CS6 from Production Premium CS5, and CameraRAWOpenOptions settings in scripts that I had working in Photoshop CS5 (64-bit) using Extendscript CS5 are no longer working with Photoshop CS6.  I get no error messages, but the settings I specify in the scripts (for example, CameraRAWOpenOptions.exposure=2.00) do not take effect when the image is opened.  Other Photoshop properties and actions within my script are working correctly.
    Note that this is an issue in Photoshop CS6.  I can use Extendscript CS5 or CS6, and the result is the same.
    Here is the way I am changing the settings in my script:
    var RawOptions = new CameraRAWOpenOptions;
    //RawOptions.settings=CameraRAWSettingsType.CUSTOM;
    //RawOptions.settings=CameraRAWSettingsType.SELECTEDIMAGE;
    RawOptions.settings=CameraRAWSettingsType.CAMERA;
    RawOptions.exposure=+2.00;
    RawOptions.vignettingAmount = 0;
    RawOptions.vignettingMidpoint = 0;
    RawOptions.contrast = 50;
    RawOptions.saturation = 0;
    RawOptions.shadows = 0;
    RawOptions.luminanceSmoothing = 0;
    var JPGopts = new JPEGSaveOptions;
    JPGopts.quality = JPEGquality;
    //Perform the loop through the files
    app.open(testListing[0], RawOptions, false);
    app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);
    for (var nfile = nstart; nfile < nstop; nfile++)
        app.open(testListing[nfile], RawOptions, false);
        FnameSave = new File(SavePath+"/"+testListing[nfile].name);
        app.activeDocument.saveAs(FnameSave, JPGopts, false, Extension.UPPERCASE);
        app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);

    I found a few of them actually work.
    CameraRAWOpenOptions.tint=0; // works (-150 to 150)
    CameraRAWOpenOptions.temperature=5500; // works (2000 to 50000)
    CameraRAWOpenOptions.luminanceSmoothing = 0; // works 0 to 100
    CameraRAWOpenOptions.saturation=50; // works =100 to 100
    CameraRAWOpenOptions.vignettingAmount=0; //works -100 to 100
    CameraRAWOpenOptions.vignettingMidpoint=0; //works -100 to 100
    These ones do not work:
    CameraRAWOpenOptions.brightness=0; // does not work (0 to 150)
    CameraRAWOpenOptions.contrast=0; // does not work (-50 to 100)
    CameraRAWOpenOptions.exposure = 0; // does not work (-4.0 to +4.0)
    CameraRAWOpenOptions.shadows=0; // (0 to 100) does not work
    CameraRAWOpenOptions.whiteBalance=WhiteBalanceType.SHADE; // does not work
    I noticed that, doing File-->File Info--> "Advanced" tab-->expand "Camera Raw Properties" that the ones that do not work have mostly either been removed (brightness) or had "2012" added to their names in the XMP in the conversion from CS5 to CS6.
    It appears the mapping from Javascript objects/properties to how Photoshop knows them is broken with the new version.  Is there any way to fix this?
    Is there an alternate way to do this by going through XMP?
    Unfortunately, I'm wanting to use "exposure", which is one of the ones that is broken.  My main script sets a custom exposure for each image (trying to smooth out EV jumps between successive images in a sunset time lapse).

  • Button Toggle ADF Javascript(Works in Firefox but not in IE. why ?)

    I have written a code to toggle button in ADF as follows:
    <af:resource type="javascript">
    function enableDisable(actionEvent){
    alert("21");
    document.getElementById('cb1').style.background='red';
    document.getElementById('cb2').style.background='green';
    alert("221");
    function enableDisable1(actionEvent){
    alert("21");
    document.getElementById('cb1').style.background='green';
    document.getElementById('cb2').style.background='red';
    alert("221");
    </af:resource>
    <af:form id="f1">
    <af:commandButton text="commandButton 1" id="cb1"
    inlineStyle="background:'red';">
    <af:clientListener method="enableDisable" type="click"/>
    </af:commandButton>
    <af:commandButton text="commandButton 2" id="cb2" inlineStyle="background:'green';">
    <af:clientListener method="enableDisable1" type="click"/>
    </af:commandButton>
    This code works fine in Firefox, But My requirement is to run it in IE which it doesn't.
    Kindly provide me solution or any pointers to resolve this.

    I do not now what the function of this declaration is, but
    please remove this from the beginning your css and IE7 also shows
    bullets:
    margin: 0;
    padding: 1;
    The padding: 1; is definitely an error cause there should be
    at least something like px behind the 1, so like padding:
    1px;

  • Javascript works in FF but not in IE7

    I finally got my first ever DW site up, at
    www.excellentbirds.com. In my happiness and excitement, I started
    tweaking things the other day, and added some JS I found that would
    essentially show a different image from an array of image names
    each time the user visited the home page. This works fine in FF,
    which is my normal browser.
    Now I just noticed (my bad!) that this doesn't work in IE7 at
    all! I ran the MS script debugger, and it said that
    the array 'urls' was undefined. That is true as it is not
    "predeclared" (the way you would in ANSI C at least).
    Would anyone be so kind as to take a quick look at the main
    page an tell me how to make this IE-safe?
    Apologies in advance for getting ahead of my knowledge!
    Thanks,
    Mitch

    On Thu, 27 Mar 2008 17:15:38 +0000 (UTC), "LiveFreeOrDie"
    <[email protected]> wrote:
    >I thought of that (being a C programmer), but wanted to
    ask. Others
    >have suggested that the "urls" really just needs to be
    declared with a
    >'var'. IOW, it is not declared properly.
    <sigh> I never really came to grips with C. I was more
    of a
    Pascal/Delphi guy. ;-)
    If I were doing it, I would replace your function with this
    inside the
    <head> of the document:
    <script type="text/javascript">
    <!--
    var urls=Array("images/SANDER0011.jpg",
    "images/SEMPLO0001.jpg","images/SPOSAN0001.jpg",
    "images/ROSSPO0006.jpg","images/PURGAL0013.jpg",
    "images/NORPAR0009.jpg","images/HOOWAR0001.jpg",
    "images/CAMAWA0005.jpg","images/BLUJAY0003.jpg",
    "images/BLBEPL0001.jpg");
    function displayRandomImage(imageName,array){
    document.getElementById(imageName).src=array[new
    Date().getTime()%array.length];
    </script>
    That would also require that you add the ID attribute to the
    image
    you want to display the random image. Change this:
    <img src="images/spacer.gif" name="changeImage" />
    To this:
    <img src="images/spacer.gif" name="changeImage"
    id="changeImage" />
    Gary

  • Email Submit button works in Acrobat but not Reader

    I have a form with an email submit button.  When those who have Adobe Reader click on the Submit button, nothing happens.  For the users with Acrobat, the submit button works as designed. The users all have the latest version of Reader, Java and Flash.  When the Acrobat users click the button a box appears asking them to select Desktop or Internet email.  Once they make a selection, the form is sent.  When the Reader users click the button nothing happens.  I'm sure there must be a setting somewhere that I need to adjust.  Can you help me?

    Hi Susan,
    I appreciate we have meandered through this, but bear with us...
    Here is a screen shot of a regular button set up to return the completed form as a PDF.
    Now if you deploy this form WITHOUT Reader Enabling the form, then users with Reader will see this warning:
    However before you deploy the form open it in Acrobat and go to the Advanced menu (in version 9) and select "Extend features in Acrobat Reader" and save the form with an amended name. Then send this new "Reader extended" form out to the users with Reader and they will be able to return the completed PDF.
    Without seeing the actual form it is difficult to work out how the submit button is set up.
    Hope that helps,
    Niall

  • Tab Order works in Acrobat, but not Reader?

    Using LiveCycle 8.0, I set the tab order in this fiscal chart so the order would flow in the direction of the arrows depicted in the chart below. Saved the LiveCycle doc; then I opened it in AcrobatPro 8.0 and enabled Reader usage rights. Saved file. It tested fine and tabbed in the order that I wanted. However......see second screen shot:
    When I tested the form in Reader 9.0, the tab order is not in the sequence that I set it up in LiveCycle. Now it tabs horizontally, then down to the next row. I need it to tab each column vertically (See screen shot above). Did I miss a step somewhere?
    Click here for the form.

    I cannot duplicate your issue .....I tried it with version 9 or Acrobat and version 8 of Reader and it behaved as you set it
    Paul

  • UTube video sound works on iPhone5S but not on Macbook Pro?

    UTube videos from a variety of sources works on iPhone5S but not on Macbook Pro? Thinking it has to do with recommended Flash settings on the MAC. Is there an app to resolve this inoperability on a MAC without having to make Flash active?

    What format is the video? Is it .wmv? Do the DVD's have any type of protection or encryption? This information will help in finding a solution.

  • Thumb drive works on MacBook Pro but not on Mac desk top

    I have bought two separate thumb drives that are MAC/PC compatible.  They will work on my MacBook Pro but not my desk top Mac.  Both are less than a year old.  Desk top will read older thumb drives w/o problems, but not the new ones.

      Model Name:          iMac
      Model Identifier:          iMac11,3
      Processor Name:          Intel Core i5
      Processor Speed:          2.8 GHz
      Number Of Processors:          1
      Total Number Of Cores:          4
      L2 Cache (per core):          256 KB
      L3 Cache:          8 MB
      Memory:          4 GB
      Processor Interconnect Speed:          4.8 GT/s
      Boot ROM Version:          IM112.0057.B00
      SMC Version (system):          1.59f2
      Serial Number (system):          QP05*****NR
      Hardware UUID:          282E0143-F041-56A4-8A82-C*****A59
    Is there anything else you need to trouble shoot this?
    Melissa
    <Edited by Host>

  • Password on apple id works on iPad but not on Mac Pro

    Pass word on apple id works with iPad but not on Mac Book Pro, what is the solution, I have tried to reset password but that does not seem to solve the problem.

    It kind of depends on where you're entering the password on the MacBook Pro. iTunes Store? App Store?
    Try the password on this website https://id.apple.com/ (click on [manage my apple id]
    If it works on that website there's nothing wrong with your apple id or password. In that case we really will need to know exactly what you're trying to do when you're getting the password error.

  • My external iSight works in iChat, but NOT quicktime 7 pro

    I'd like to get in on this...
    My external iSight works in iChat, but NOT quicktime 7 pro when i try to make a movie recording. No audio, no video, nothing. But, iChat works. This is on a brand new mac pro with the latest leopard. Any ideas????

    Hello Tommy Igoe
    With no other video capable apps running and your working iSight connected and turned on when you launch QT 7 Pro, try these suggestions to see whether one of them fixes your problem:
    (0) Try all suggestions applicable to your system from Apple's How to Troubleshoot iSight.
    (1) Check that your QuickTime Player > Preferences > Recording settings are correct.
    (2) Repair Permissions and test to see if iSight works with QT Pro now.
    (3) Disconnect all peripheral and test again to check for hardware or software conflicts.
    (4) Download and reinstall QuickTime 7.4 for Leopard. Repair permissions and test movie recording.
    If you must post back for other suggestions, please clarify and expand on your QT problem. Please be specific. For example, can you see but not execute the QuickTime Player > File > New Movie Recording menu command? Can you execute the menu command but find that the recording window does not open? Does the recording window open but you find the "Record" button is not clickable? Etc.?
    Also please tell us whether you found that QuickTime is the ONLY problem app in EVERY user account you tried when you used Apple's Troubleshooting suggestions.
    Finally, if you currently have ANY other problems with your Mac, please describe them all.
    EZ Jim
    PowerBook 1.67 GHz w/Mac OS X (10.4.11) G5 DP 1.8 w/Mac OS X (10.5.1)  External iSight

  • I have a JavaScript loop that works in Dreamweaver but not in my browsers. What's missing? Should the page load another script first?

    I know that the code is clean because it runs perfectly in DW (even with the occasional lag). Shorter loop functions have also worked in DW, but not in my Chrome or IE browsers. Is there a script or program that the HTML should run first?

    I'm sorry, of course:
    The Crow Haven Witches and Psychics of Salem
    I am designing a phone psychic hotline (don't ask! ) page, and the loop is supposed to sort the readers according to their availability. Each should appear in their respective listing.
    The setup works perfectly in DW, but none of the scripted material appears in the current page. I will add a photo of how it does look in DW.

  • My Apple keyboard works w my MacBook Pro, but not w my iPad2--what's happening?

    My Apple keyboard works w my MacBook Pro, but not w my iPad2; any suggestions?

    1. Go to Settings > Bluetooth and turn off Bluetooth on the device.
    2. Hold Power button of your keyboard until the light stops blinking.
    3. On the Mac, go to System Preferences > Keyboard > Set Up Bluetooth Keyboard.
    4. Turn on the keyboard. If it doesn't connect to the Mac, press any key of the wireless keyboard.
    5. When the keyboard appears on your Mac, choose Continue

  • Airport express working for macbook pro but not iphone 5s. Airport utility on the phone shows a blinking orange light. AU on the macbook shows green light.  The airport express shows green light itself.  Anyone know what's going on?

    Airport express working for macbook but not iphone.

    Hello ccoffey1,
    After reviewing your post, I have located an article that can help with Wi-Fi networks. It contains a number of troubleshooting steps and helpful advice for the issue you are experiencing:
    iOS: Troubleshooting Wi-Fi networks and connections - Apple Support
    Thank you for contributing to Apple Support Communities.
    Cheers,
    BobbyD

Maybe you are looking for

  • "Preview and Print " report extension in Order Management

    Looking for help on how to add extra information to this report.. I did setup the profile to implement the how to implement PrintExtensionObject interface with method getPrintExtensionXMLFragment.... and created the class file and compiled on Java_to

  • Correct Schema translation for DB2 Database.

    Hi, I am trying to change a reports runtime datasource using CR4E 2.0 jars. settableloccation method. The reports are based on command objects. code am using is: final String TABLE_NAME_QUALIFIER = "SSS.";           final String SERVERNAME = "136.51.

  • Text Free Transform Sizing Issues

    First off I'm using Photoshop CS6 on a 2010 iMac. Here is the problem, for example I open a blank file and type "ABC" in any font at at size (but for sake of ease lets say 72 pts in Myriad Pro). I then do a free transform (while holding shift to keep

  • Nikon D7000 .nef files

    I have a Nikon D7000 camera which creates raw files - .nef and my version of CS5 is not able to open them directly. Does the latest version of CS5 resolve this problem?

  • How to hide the mouse / full screen iTunes visualizer

    How can I hide the mouse in iTunes, when having the iTunes visualizer full screen?