Save pdf with new instances of subform

I have a pdf file saved as dynamic XML forms with typical button to add instances of a subform.

The form works fine, but the problem is not showing the bodies added after save and open.

Can someone tell me how to fix?

Attached is an example.

https://www.hightail.com/download/elNJblRwY3k5eFZjR05Vag

Thanks in advance

Hello

There are two things that you need to change in your form, to make it work.

1. for the subform "dades_linies_suport" activate "repreat element for each data item" option in the links palette.

2. change the script in the "ShowMoreBtn" in:

_dades_linies_suport.addInstance(true);

That's all!

I hope this helps.

Tags: Adobe LiveCycle

Similar Questions

  • Create a new instance of subform on click of a button

    I need a new instance of the subform:

    assessment. Page3.standards.Standardsdetail

    be created when you click on this button:

    assessment. Page3.addanotherstandard.button1

    I tried this code on the button:

    () xfa.form.assessment.Page3.Standards.Standardsdetail.addInstance

    true );

    but it does not work.

    I am a beginner and I'm learning how to do all this with the help of the book create dynamic with Adobe LiveCycle Designer Forms but I can't seem to understand this one.

    In the subform which is supposed to be repeat you must indicate that you will allow more than one. Click the subform in the hierarchy, and then click the object/link tab, click the box that says subform repeat for each data item.

    Paul

  • Save PDF with unprintable fields

    Hi guys

    I created a PDF with some calculations with adobe acrobat pro (10.1.16). Some fields are visible but unprintable. My problem is, that the functions save as file pdf with the print function doesn't work any more (Mac User).  With this feature, I could save my file in pdf without this fields. Is there another solution to generate a PDF without this unprintable fields?

    Thanks for the help, Elio

    It can be done with a script, but I think you can also do it with the built-in commands. There is a command to show/hide fields and there is a command to execute a menu item where you can select file - save as.

  • Cannot save PDF with CD player?

    I'm unable to save any PDF with CD player. The economy icon is removed, and CTRL S does nothing.  Any ideas?

    Is that what you have made changes in registered pdf format previously? If this isn't the case, as Bernd said, Save... as the first. Then, when you make changes, you can use Save.

  • script to save .pdf with different presets generates the file size low resolution wildly different interactive operation

    The script below is adapted in part from that has been with Illustrator and other pieces and the pieces that I picked up the Forum.  When I run it on a 15.3 Mg .ai file it produces

    . The same PFS size that would be the case if I manually created at Headquarters printing and by default; but the low-resolution sort option to 9 Mg as opposed to the 439 K he "should" be.

    Please someone be kind advise me how can I change the script to work as I want that: I had counted on my custom screening done the work for me.  Thank you in advance.

       var jiName=app.activeDocument.name
    
       var pos = jiName.indexOf(".ai"); 
          if (pos > 0){
              jiName=jiName.substr(0,(pos))  
          }
        var pos = jiName.indexOf(".pdf"); 
          if (pos > 0){
             jiName=jiName.substr(0,(pos)) 
          }
        
        var saveProof = new Window ("dialog", "Save Proof");
            saveProof.orientation="column"
            saveProof.alignChildren = "center";
            
      var sPGroup1 = saveProof.add ("group");
            sPGroup1.orientation="column"
            sPGroup1.add ("statictext", undefined, "File Name");
                
      var save_pdf = sPGroup1.add ('edittext {text:"", characters: 30, justify: "center", active: true}');
            save_pdf.text=jiName+".pdf"
            
      var sPdQButtonGroup = saveProof.add ("group");
            sPdQButtonGroup.alignment = "center"; 
            sPdQButtonGroup.alignChildren="row"
            sPdQButtonGroup.add ("statictext", undefined,"File Quality");
      var HQ=sPdQButtonGroup.add ("radiobutton", undefined, "  HI-RES  ");
      var IDefault=sPdQButtonGroup.add ("radiobutton", undefined, "  Standard  ");
      var lowres=sPdQButtonGroup.add ("radiobutton", undefined, "  low-res  ");
            sPdQButtonGroup.children[1].value = false;
            sPdQButtonGroup.children[3].value = false;
            sPdQButtonGroup.children[2].value = true;
            sPdQButtonGroup.active=true;
            sPdQButtonGroup.visible=true;
            
      var sPButtonGroup = saveProof.add ("group");
            sPButtonGroup.alignment = "center"; 
            sPButtonGroup.alignChildren="row"      
                
      var sPok=sPButtonGroup.add ("button", undefined, "Save Proof");
      var sPcancel=sPButtonGroup.add ("button", undefined, "Exit");
            sPButtonGroup.active = true;
               
            sPcancel.onClick = function() {
               //sP_ok=false;
               saveProof.close();
                           }
            sPok.onClick = function() {
                
                  app.executeMenuCommand('save'); // save existing Illustrator file
                  
                  var my_pdf= new File("users/Les/Desktop/PROOFS/"+save_pdf.text); //Full File Path 
                  
                  saveFileToPDF(my_pdf);
                              
                  function saveFileToPDF(myFile){  
                  //Setup Save Options for PDF  
                  var saveOpts = new PDFSaveOptions();  
                  saveOpts.compatibility = PDFCompatibility.ACROBAT6;
                  saveOpts.generateThumbnails = true;  
                  saveOpts.preserveEditability = true;
                  saveOpts.requirePermissionPassword = true;  
                  saveOpts.permissionPassword = "*-*-*-*-*-*";
                  saveOpts.compressArt = true; //default
                 saveOpts.embedICCProfile = true;
                 saveOpts.enablePlainText = true;
                 saveOpts.generateThumbnails = true; // default
                 saveOpts.optimization = true;
                 saveOpts.pageInformation = true;
                  
                  if (HQ.value==true){
                    saveOpts.pDFPreset = '[High Quality Print]';
                  }
              
                  if (IDefault.value==true){
                    saveOpts.pDFPreset = '[Illustrator Default]';
                  }
              
                  if (lowres.value==true){
                    saveOpts.compatibility = PDFCompatibility.ACROBAT4;
                    saveOpts.pDFPreset = 'Smallest File Size v4';
                  }
              
                  //  
                  var originalInteractionLevel = userInteractionLevel;        //save the current user interaction level  
                  app.userInteractionLevel = UserInteractionLevel.DONTDISPLAYALERTS;      //Set user interaction level to suppress alerts  
                  app.activeDocument.saveAs(myFile,saveOpts);        //Save File  
                  userInteractionLevel = originalInteractionLevel;        //Set user interaction level back to original settings 
                                }
                            
                  saveProof.close();
                  
            }
                
      saveProof.active=true
      saveProof.show()
    
      
    
    

    Oh, please check that: ' "saveOpts.preserveEditability = true;".

    Maybe try to disable this option.

  • Why can't I open one of my old PDFs with new version 11

    When I install the latest version, can I opened all my old files PDF it just crashes on opening and done nothing for several minutes until I finally just close the window.

    It's on a 64-bit windows computer 7. My only solution is to uninstall the 11 and reinstall the older 9 which will open its doors the files very well.

    Hi zidge17511,

    Please try to disable the Protected Mode and see if it works.

    Edit-> preferences-> Security and uncheck the option enable the Protected-Mode in the start box and enable improved security. see if it works.

    In addition, please follow the steps here: http://helpx.adobe.com/acrobat/kb/cant-open-pdf.html

    ~ Deepak

  • Objective to Focus when add new Instance

    [LC Designer ES2 9.0] With the help of generator of the Action to add a new instance of subform SITE, where the first field is called SiteName.

    If I set the action to put emphasis to SiteName, the focus switches to the * original * SiteName field of instead of the new instance.

    Users must add usually a number of additional sites, and every time, I want to focus on the first field of the most recent instance, not the original instance. How to accomplish this? Thank you!           ~ Carol

    There is no attachment... can ghoulish you send it to me [email protected]

    Paul

  • Record of. PDF with repeatable subforms adds a new Instance.

    Hey everybody,

    I have worked with dynamic forms LiveCycle Desinger for a few years now, and this is the first time I see this kind of behavior.

    I have a very big form in LiveCycle Designer. There or 50 subform repeatable sections. I save the designer, and then open it in Adobe Acrobat X Pro. Acrobat Pro, whenever I have re-record it then re-open, a new instance is added to each subform repeatable.

    If I fill it, save it, and then reopen it, he has all my info, as well as a subfrom empty additional below each section.

    I have no formcalc in the presave, nor do I have any global fields in my form... In addition, each single repeatable subform named. I am at a loss.

    I have a sample of this pdf here. If you have a different file hosting site you prefer, do let me know.

    I'd appreciate any help anyone could offer. I don't know what is the cause.

    -Scott

    Hello again everyone,

    I found the answer to my problem. I had a devil of a time from Googling the problem, so I'll put some sentences that I tried below, where like-minded individuals has a similar problem.

    The main problem was with data binding. I had left the data binding for all as the default 'using the name (...) '. I was under the impression that as long as the sibling elements have been appointed to the same thing, there is a conflict. I was wrong.

    In my form, I used static subforms to organize the fields available in a dynamic repeatable subform. The static subform called "sf_positioning". It happens that this field has an uncle named the same thing. It was close enough to provoke a conflict, making the repeatable subform record an additional instance whenever the data has been saved. This can be corrected in one of two directions... ((1) set one of the subforms wrongful use "no data binding" (use this only if the content of the subform is not be exported or merged) or 2) give the subforms of unique names.

    I need to look if everything must be particularly well appointed... As I said, it makes more sense to me that the only restriction should have been on the sibling elements, but I will in the future to make sure there are at least three degrees of separation between just like named controls/subforms.

    Hope that helps someone else...

    And what follows is some of my attempts at Googling the problem. I hope that this will facilitate the solution to find for others:

    -Player which extends shape Dynamics breeze repeating subforms.

    -Economy adds a new instance of the repeatable subform.

    -Whenever I save, I get more empty instances of a subform repeatable.

    -Repeatable subforms not working does not go as planned.

  • I can't save my PDF files. When I hit Save as an empty window appears instead of a menu of files or folders Windows Explorer view. I'm a Publisher and save files under new names of files after changing them. Why can't I just save these files in Adobe DC (

    I run Acrobat Professional so that I can change/brand place/comment in the PDF files. At one point recently I noticed "Acrobat Reader DC" in the name of the file at the top of the page. I do not have ask this or do anything to get there that I was aware of this. I adjusted for the new look of the screen and edited several files without incident. But yesterday, I opened a large file which had been addressed to me in Dropbox. When I downloaded and opened it and tried to change it, the selection tool was not aligned properly, so the selected areas were elsewhere on the page, where the cursor was. I restarted my computer and was able to change the file more or less normally (I noticed more little glitches with this CD player but I can live with them). But when tried to save the file with a new file name, like I always do to differentiate files that changed since the original files, the save window is empty. There is no option to save the file with a new file name. In fact. There is no option to save the file with the changes! I thought maybe it was a problem with this file only, but when I tried to edit a file provided by regular e-mail, I met the same problem trying to save to a new file name. What is the relationship between my old Acrobat Professional and Acrobat Reader DC? Why can't save files normally? I managed to save the changes I did by saving it in the cloud to Adobe (I had to then because I could not send the file by e-mail because of its size - I tried to send it to me)., but I'd rather widely navigate in Windows Explorer to work with files. I suspect that there is some simple aspects about what I am simply absent or do not know. Can anyone help?

    Hi Nathalie,.

    Please take a look at this thread and let us know if we get to the brand:

    "Save as" box pop up does not allow me to save the document.

    Best,

    Sara

  • Java Script to save as PDF with password...

    Hi people.  My goal is to have a script to perform the following functions:

    1. Enter the name of the active document

    2 Save as PDF using the active doc name with password lock in the same directory the *.ai file is located

    I started to play with the code, but I don't know what I'm doing... newbie.

    Here's the code that I currently use.

    var curDoc = app.activeDocument;
    var destFolder, sourceFolder, files, fileType, sourceDoc, targetFile, pdfSaveOpts;
    //var destName = "~/Desktop/Testpassword1.pdf";
    var destName = targetFile
    saveFileToPDF(destName);
    //sourceFolder = Folder.selectDialog( 'Select the folder with Illustrator files you want to convert to PDF', '~' );
    //saveFileToPDF(destName);
    //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    if ( sourceFolder != null )
    {
        //files = new Array();
        //fileType = '*.ai';
        //fileType = prompt( 'Select type of Illustrator files to you want to process. Eg: *.ai', ' ' );
        
        // Get all files matching the pattern
        //files = sourceFolder.getFiles( fileType );
        
        if ( files.length > 0 )
        {
            // Get the destination to save the files
            destFolder = Folder.selectDialog( 'Select the folder where you want to save the converted PDF files.', '~' );
            for ( i = 0; i < files.length; i++ )
            {
                sourceDoc = app.open(files[i]); // returns the document object
                                        
                // Call function getNewName to get the name and file to save the pdf
                targetFile = getNewName();
                
                // Call function getPDFOptions get the PDFSaveOptions for the files
                //pdfSaveOpts = getPDFOptions( );
                
                // Save as pdf
                sourceDoc.saveAs( targetFile, pdfSaveOpts );
                
                sourceDoc.close();
            }
            alert( 'Saved' + destFolder );
        }
        else
        {
            alert( 'No matching files found' );
        }
    }
     ///++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
     function getNewName()
    {
        var ext, docName, newName, saveInFile, docName;
        docName = sourceDoc.name;
        ext = '.pdf'; // new extension for pdf file
        newName = "";
            
        for ( var i = 0 ; docName[i] != "." ; i++ )
        {
            newName += docName[i];
        }
        newName += ext; // full pdf name of the file
        
        // Create a file object to save the pdf
        saveInFile = new File( destFolder + '/' + newName );
        
    
        return saveInFile;
    }
    ///++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    function saveFileToPDF (dest) {
    
    var doc = app.activeDocument;
    
    if ( app.documents.length > 0 ) {
    
    var saveName = new File ( dest );
    saveOpts = new PDFSaveOptions();
    saveOpts.compatibility = PDFCompatibility.ACROBAT5;
    saveOpts.generateThumbnails = true;
    saveOpts.optimization = true;
    saveOpts.preserveEditability = true;
    saveOpts.bleedOffsetRect = [2,2,2,2];
    saveOpts.trimMarks = true;
    //=======================  COMPRESSION ===========================
    saveOpts.colorCompression = CompressionQuality.JPEGMAXIMUM;
    saveOpts.colorDownsamplingMethod = DownsampleMethod.BICUBICDOWNSAMPLE;
    saveOpts.colorDownsampling = 300;
    saveOpts.colorDownsamplingImageThreshold = 450;
    //-----------------------------------------------------------------------------------------------------------
    saveOpts.grayscaleCompression = CompressionQuality.JPEGMAXIMUM;
    saveOpts.grayscaleDownsamplingMethod = DownsampleMethod.BICUBICDOWNSAMPLE;
    saveOpts.grayscaleDownsampling = 300;
    saveOpts.grayscaleDownsamplingImageThreshold = 450;
    //-----------------------------------------------------------------------------------------------------------
    saveOpts.monochromeCompression = MonochromeCompression.CCIT4;
    saveOpts.monochromeDownsamplingMethod = DownsampleMethod.BICUBICDOWNSAMPLE;
    saveOpts.monochromeDownsampling = 1200;
    saveOpts.monochromeDownsamplingImageThreshold = 1800;
    //====================  END OF COMPRESSION =======================
    saveOpts.colorConversionID = ColorConversion.COLORCONVERSIONREPURPOSE;
    saveOpts.colorDestinationID = ColorDestination.COLORDESTINATIONWORKINGCMYK;
    ///
    saveOpts = new PDFSaveOptions();
    saveOpts.requirePermissionPassword = true;
    saveOpts.permissionPassword = "pink";
    saveOpts.pDFAllowPrinting = PDFPrintAllowedEnum.PRINT128LOWRESOLUTION;
    doc.saveAs( saveName, saveOpts );
    }
    }
    

    It takes a lot of work.

    too many errors with the code list.

    It should be re written from scratch.

    This gives a bash.

    //---------------------------------------------------
    //          Save as LOCKED pdf
    //---------------------------------------------------
    //
    //          Qwertyfly
    //          03/07/2015
    //          Version 1.0
    //
    //---------------------------------------------------
    //
    //          Set your password here
    var pass = 'pink';
    //
    //---------------------------------------------------
    if ( app.documents.length > 0 ) {       //make sure we have a file open to work with
        var doc = app.activeDocument;
        if ( doc.fullName.toString().substr(doc.fullName.toString().lastIndexOf('.')) == ".ai" ){       //Make sure your working with an ai file
            var myFile = new File(doc.fullName.toString().substr(0,doc.fullName.toString().lastIndexOf('.')) + ".pdf");
            var saveOpts;
            setSaveOptions();
            saveFileToPDF(myFile);
        }else{alert("Active Document is not an '.ai' file")}
    }else{alert("No Document Open")}
    
    function saveFileToPDF(myFile){
        var originalInteractionLevel = userInteractionLevel;        //save the current user interaction level
        userInteractionLevel = UserInteractionLevel.DONTDISPLAYALERTS;      //Set user interaction level to suppress alerts
        doc.saveAs(myFile,saveOpts);        //Save File
        userInteractionLevel = originalInteractionLevel;        //Set user interaction level back to original settings
    }
    
    function setSaveOptions(){
        //  Setup Save Options
        saveOpts = new PDFSaveOptions();
        saveOpts.compatibility = PDFCompatibility.ACROBAT5;
        saveOpts.generateThumbnails = true;
        saveOpts.optimization = true;
        saveOpts.preserveEditability = true;
        saveOpts.bleedOffsetRect = [2,2,2,2];
        saveOpts.trimMarks = true;
        //=======================  COMPRESSION ===========================
        saveOpts.colorCompression = CompressionQuality.JPEGMAXIMUM;
        saveOpts.colorDownsamplingMethod = DownsampleMethod.BICUBICDOWNSAMPLE;
        saveOpts.colorDownsampling = 300;
        saveOpts.colorDownsamplingImageThreshold = 450;
        //-----------------------------------------------------------------------------------------------------------
        saveOpts.grayscaleCompression = CompressionQuality.JPEGMAXIMUM;
        saveOpts.grayscaleDownsamplingMethod = DownsampleMethod.BICUBICDOWNSAMPLE;
        saveOpts.grayscaleDownsampling = 300;
        saveOpts.grayscaleDownsamplingImageThreshold = 450;
        //-----------------------------------------------------------------------------------------------------------
        saveOpts.monochromeCompression = MonochromeCompression.CCIT4;
        saveOpts.monochromeDownsamplingMethod = DownsampleMethod.BICUBICDOWNSAMPLE;
        saveOpts.monochromeDownsampling = 1200;
        saveOpts.monochromeDownsamplingImageThreshold = 1800;
        //====================  END OF COMPRESSION =======================
        saveOpts.colorConversionID = ColorConversion.COLORCONVERSIONREPURPOSE;
        saveOpts.colorDestinationID = ColorDestination.COLORDESTINATIONWORKINGCMYK;
        ///
        saveOpts.requirePermissionPassword = true;
        saveOpts.permissionPassword = pass;
        saveOpts.pDFAllowPrinting = PDFPrintAllowedEnum.PRINT128LOWRESOLUTION;
    }
    
  • After I converted the PDF to Word how to select some pages to save as a new document? Thank you

    After I converted the PDF to Word how to select some pages to save as a new document? Thank you

    You said you have a Word file and use certain pages in the file to create a new document.

    Use Word to create a new Word file that has the pages you want for the original Word file.

    You now have a "new document" desired pages.

    With Acrobat Standard or Pro installed, you can create a 'new document' PDF.

    If you don't have Acrobat Standard or Pro, or a subscription to an Adobe online service that can create PDFS from MS Word, you can use the Microsoft process to create PDF that comes with MS Word.

    Be well...

  • Hidden fields are visible in the new instance of the subform.

    Hi all.

    I have the following problem:

    I have a subform with a check box and a text field.  When the box is checked, the text field is visible.  When it is disabled, it is hidden.

    I also have a button which adds another instance of the subform.  When I click and add another subform, the masked text field is visible in the new instance instead of stay hidden until the box is checked.  Also, when I add the new subform instance and select the check box, the hidden field becomes visible at first to the subform.

    Here is what I use to hide and show fields:

    If (this.) RawValue == 1)

    (form1.subform1.textfield1.presence = "visible");

    on the other

    (form1.subform1.textfield.presence = "hidden");

    The foregoing is in the initialize event and change.

    I would really appreciate help to learn how to keep each instance does not affect another, as well as the way to keep the field hidden in newly added instances of the subform.

    Thanks in advance.

    J

    Hello

    You can add the action to the checkbox for the workflow. To do this, you can right click on the checkbox under the hierarchy Panel and then click on 'Add Action '. Also if you want the field to be hiddedn in the new instance and then at design time, you must set the property of as hidden control.

    Steps to get the workflow.

    1. make a right click on the checkbox control--> click Actions--> add an Action

    2. select in the drop-down list. When the check box is cleared.

    3 set the visibility of the textfield to hidden.

    4 click Add new action as indicated below.

    5. select in the drop-down list. When the box is checked.

    6 set the visibility of the textfield visible.

    7. click OK to create the action and close the window of action.

    To set the TextField to select hidden textfield and open its property of the object. Set the value of the presence as hidden.

    ************

    Please download the https://acrobat.com/#d=hM8oyP3be4O3HRBt14CkYg sample file

  • Problem with Instances of subform at the first opening

    Hi all

    I have a complex form with multiple subforms that I need to have zero cases for the first time the form is opened. Most of these subforms that I put the initial case = 0 on the palette object do exactly this - they behave and open with zero cases! However, I have a subform that always starts with an instance (instance 1 instead of zero cases). I really want to get around this, as I did in the past when it has heppened. I want to solve it.

    I tried

    • Unpack the subform and repacked in a new subform
    • Manual change of the < occur / > element in the XML file for the subform.
    • several times to try different things in the object palette - the check box of the original meter always comes back to disabled and the County empty - I see actually it unchecking itself and removing the '0', just after I go back to Design view of the preview. This occurs even after I manually put the values in the XML file. I recheck the object palette to see that my changes are reflected there (they are) and then he comes back... to the return of the preview, and my < occur / > edit disappears.
    • I looked for the scripts that could be the cause - without a bit of luck.

    I met this kind of thing before and finally abandoned and used the property of 'presence' as a workaround. Subforms not always get used by the user and they should only exist when the user needs them. I plan to export the XML data in this form and exporting a lot of just empty elements presents another problem, I would like to avoid.

    Any suggestions are welcome. I hope that someone knows a solution - I spent too much time on it.

    See you soon,.

    Stephen

    I'm sorry. did you or did you not reproduce this with a simplified version of your form?

    Player will perform the initial design layout as you see in Designer, unless changed via the script at run time.

    I can't reproduce what you ask in a simplified example. I suggest you log a ticket with the help of Adobe Enterprise, so that your form is open to the public (since you can't share in a public place).

  • Have just bought a new iMac and imported all my old data.  When I try to open a pages document it says that it cannot be opened because it is too old, and that to open it, I have to save it with Pages ' 09 first.  So, how he back up if I can't open it?

    Have just bought a new iMac and imported all my old data.  When I try to open a pages document it says that it cannot be opened because it is too old, and that to open it, I have to save it with Pages ' 09 first.  So, how he back up if I can't open it?

    Start the OS X App Store, then click on the item toolbar updates. V5.6.1 pages should be available, and this will open documents Pages ' 09, ' 08 and ' 06. In messages to this community, you should always share what version specific pages and OS X that you are currently using.

  • Help me buy a new all-in-one which will scan to pdf with preview multipage

    I need a new all-in-one, like the OfficeJet HP 6700 Premium e-all-in-one printer, which I watched in a store.  The box was not clear about the capabilities.

    What I do with old HP all-in-one on an old XP, (11-12 years) old machine is scanning documents to preview multipage PDF, so I can adjust the margins and other things, and if I did not have many PDF files for a multi-page document.  I do this a LOT, I need, it is not a such PITB.    I have not found a way to do this with the printers I have, my new computer so I have to go do it on a slow XP machine in another room.  I can only print at the old printer to my new computer.

    I'm used to using the HP, but those I have is old, my old XP machine (6 years) so it is more reliable and my new computer Windows 7 Professional 64 - bit, and Windows 7 drivers for my old all-in-one are not full function, if they still exist, plus we have several computers and tablets on our network now.   None of the older all-in-one I will do what I need for my new computer, if they'll even install (you look, Dell).

    What I need to know, it's done with Windows 7 on HP OfficeJet 6700 Premium e-all-in-one printer?  (Scan multipage PDF with the HP software preview.) The info on the box was not clear.  If not, is there a model preferably wireless all-in-one that will work for me?  I can plug it into a USB port on my new computer, there are several USB 2.0 and 3.0 ports.  I would like to be able to print wireless from other devices, but this isn't a deal breaker.  I don't want to have to download a few fragmentary shareware or buy a high price to accomplish what I was able to do with the software before HP, on old all-in-one.

    That's what I needed.  Why hell isn't in the ^ & *) & ^ % manual?

    http://support.HP.com/us-en/document/c03584750

Maybe you are looking for