Text boxes, change the text of locking

Hello

Is it possible to create text boxes in Adobe Reader ms and their locking in place, but being able to add text and editing text says?

If there is any other way to add says "boxes" that are locked and change the text inside them while I am also open to these suggestions.

The main problem, unlocked boxes, I use is that I want them to be a specific width and once I go and change the text and click outside the box, width changes and the text is aligned is more correctly, since I'm getting centered.

I found this other question by another person who seems to be exactly what I'm looking for, but I'm afraid that I don't understand the response:

Restrict editing of text only; not move the content irrelevant.

Form fields are available in the product that I use?

Thank you!

You can only add form fields in Reader by using a script like this, I developed: Scripts Adobe custom: Reader - create form fields in Adobe Reader

However, you cannot apply a security policy that will prevent users from adding text outside your fields.

I think a better solution for you would be to get Acrobat, if. It will allow you both to add form fields and apply a security policy (and many other things).

Tags: Acrobat

Similar Questions

  • Leave the dialog box change the text display/display

    I have a dialog box that is created with some text objects attached to its buttons. The user can make choices for each one, press OK, and asked of their choice. What I would like is for the buttons to the user in the text, so that they can see it in the context as they decide (that's the only reason why they are buttons; otherwise, they would be static text). I know how to handle this with a palette, but I wonder if there is a way to do it with a dialog box. With the help of a palette for all this seems unfair; I really don't want users to be able to make changes to the document, while the palette is open, and I don't want to change anything in the document until the user clicks OK. It is a dialogue with a palette as oddity, really.

    The problem is that. showText() and setting the activePage throw them the error "Cannot process the request because a modal dialog box or the alert is active." I tried to adjust the dialog box to .the = false or .visible = false, but it has no effect. Is it just impossible? This feature, change the view but not the content, seems to live in a grey zone between the way in which the work of dialog boxes and palettes of way work, so I don't know if I'm just a useless way. Any idea would be appreciated.

    Here's a code example to illustrate what I'm doing:

    #target indesign
    
    
    main();
    
    
    function main(){
        if (app.documents.length == 0){createTestDoc();}
        runDialog();
    }
    
    
    function createTestDoc(){
        //create a test document
        var myDocPre = app.documentPresets.add({name: "testPre", createPrimaryTextFrame: true, pagesPerDocument: 5});
        var myDoc = app.documents.add(true, myDocPre);
        var myPSty = myDoc.paragraphStyles.add({name: "newPageSty", startParagraph: StartParagraph.NEXT_PAGE});
        var myCSty = myDoc.characterStyles.add({name: "CSty", underline: true});
    
    
        myDoc.textFrames[0].contents = "1\r2\r3\r4\r5";
        myDoc.textFrames[0].texts.everyItem().appliedParagraphStyle = myPSty;
    
    
        app.findTextPreferences = app.changeTextPreferences = NothingEnum.NOTHING;
        app.findTextPreferences.findWhat = "^9";
        app.changeTextPreferences.appliedCharacterStyle = myCSty;
        myDoc.changeText();
    
    
        myDocPre.remove();
    }
    
    
    function runDialog(){
        //find text with a particular character style and send that text to my dialog creation function.
        var myDoc = app.activeDocument;
        var myCSty = myDoc.characterStyles.itemByName("CSty");
        if (myCSty.isValid){
            app.findTextPreferences = app.changeTextPreferences = NothingEnum.NOTHING;
            app.findTextPreferences.appliedCharacterStyle = myCSty;
            var myResults = myDoc.findText();
            myDialog(myResults);
        }
    }
    
    
    function myDialog(textRngs){
        //create the dialog.
        var myWin = new Window("dialog", "Test Dialog", undefined);
        var mainGroup = myWin.add("group");
        mainGroup.orientation = "column";
        //each text range gets a row.
        for (var i = 0; i < textRngs.length; i++){
            var myTextRng = textRngs[i];
            var myRow = mainGroup.add("group");
            myRow.orientation = "row";
            var myBut = myRow.add("button", undefined, myTextRng.contents);
            //attaches the text object to the button.
            myBut.targetObject = myTextRng;
            //does nothing - just a reminder that the actual dialog will do something at the end based on the info entered.
            myRow.add("editText");
            
            myBut.onClick = function(){
                //this is what I do when I want this functionality within a palette. Selects the text so that it can be seen in context.
                if (!(this.targetObject.hasOwnProperty("select") && this.targetObject.hasOwnProperty("showText"))) {}
                else{
                    this.targetObject.showText();
                    this.targetObject.select();
                    
                    //OR
                    //tried this as an alternative, but setting myWin.visible does nothing.
                    //myWin.visible = false;
                    //myDoc.layoutWindows[0].activePage = this.targetObject.parentTextFrames[0].parentPage;
                    //myWin.visible = true;
                }
            }        
        }
        var OKGrp = myWin.add("group");
        var OKBut = OKGrp.add("button", undefined, "OK");
        
        OKBut.onClick = function(){
            //do something
            myWin.close();
        }
        myWin.show();
    }
    

    You have no choice: If you want the script to interact with the text that you will need to use a palette.

    P.

  • How can I reverse the function of the curves in the dialog box change the curves

    in the oldest version of PS, there was a small set of arrows to reverse the function of the curves in the change the curves dialog box. I miss it greatly, because I use them in front of the standard direction for more than 20 years.

    A way to change this DC?'

    old_ps_curves_dialog.jpg

    Wow. guess I should have tried to click that. the description made zero sense to me. couldn't guess that's what he did.

    Thank you.

  • By selecting the text box to change the text field

    I worked on a form to allow suppliers to fill their reports of endoscopy online.  I'm trying to do something very simple.  If a user selects a check box change the value in a text field.  Either we allow the code to run once.  It will change the value once - even if I think it's to set an incorrect value in the code - but that is neither here nor there at this point.

    Here's the code that should work in my opinion.

    Form1. EndoscopyPage1.TestChkBox::click - (JavaScript, client)

    If (this.rawValue == 1)

    {

    TestTxt1.rawValue = "ON"; the user cannot enter field

    }

    on the other

    {

    TestTxt1.rawvalue = "off"; the user can enter the field

    }

    I tried the following as well

    If (TestChkBox.value = 0) then

    TestTxt1.editValue = 'Off ';

    endif;

    If (TestChkBox.value = 1) then

    TestTxt1.editValue = "ON";

    endif;

    I have attached the file as well.  My trial fields are in the middle of the first page.

    It's just a typo. You typed rawvalue rather than rawValue "V" must be upper case.

    See the attahed to the snap.  It works for me after you change this property.

    Nith

  • Impossible to change the lock to one of my account screen

    Hello

    Since a few days, I am unable to change the screen image locked tea of my main account on my Surface.

    I used to use an app called Chameleon automatically change this wallpaper with daily photo of Bing, but it did not work so well and uninstalled.

    Since then, whenever I try to change this picture once again, I have the following message "screen lock error: fail to set the LockScreen image.» Please try again ".

    Reinstall the application did not help...

    I tried to force the political group without success and I have no problem with other accounts...

    Thank you.

    Hello

    Since a few days, I am unable to change the screen image locked tea of my main account on my Surface.

    I used to use an app called Chameleon automatically change this wallpaper with daily photo of Bing, but it did not work so well and uninstalled.

    Since then, whenever I try to change this picture once again, I have the following message "screen lock error: fail to set the LockScreen image.» Please try again ".

    Reinstall the application did not help...

    I tried to force the political group without success and I have no problem with other accounts...

    Thank you.

    Hi, I had the same problem, after playing with him for a while, I found that in the 'customize' under 'Settings PC' if I (with mat mouse/mouse) right click on one of the photos shown as recent choices just above the Browse, an option will appear to "Return to default values", it worked for me...

  • Change the link of Action dialog box

    I'm following this tutorial ( Oracle JDeveloper 11 g Release 2 tutorials - creating a Web Application using EJB, JPA, and JavaServer Faces ) and step 2: create a workflow defined with two Pages JSF, step 21. In the dialog box change the binding Action, in the value field, enter #{pageFlowScope.sal} I'm lost - I do not know how to open the link Action Edit dialog. I looked on the internet and it seems that it should open automatically after the addition of data control, but it did not happen or I missed it somehow... How should I open this dialog box?

    User, please tell us your jdev version!

    If you do not get the dialog box (don't know why you don't get it) you can open it yourself. Switch to the links tab (the tab is below the editing area in jdev). You find the action, you need to edit on the left side in the section "links". Select the link of action that you want to change (getEmployeesFindBySal in your case) and click on the pencil icon on the top right. This opens the dialog box you are looking for.

    Timo

  • Impossible to change the table column heading alignment in 11.1.1.5

    11.1.1.5 work.

    I want to align to right one of my headers of columns in the Table view. I'm going in the criteria, the column properties tab. Format of the column and clicking the Format icon next to the column heading box. I'm on the column properties dialog box, change the background color, adding a border and right Horizontal alignment setting. See the table in the results, I see the background color of the column heading, and I see the border. However, the column header text is always aligned to the left.

    What Miss me it please?

    Hi Mark,

    You do not have lack of what, whether Oracle has missed this basic functionality! This is a bug :-(

    Bug 12696084: FORMAT HEADINGS > HORIZONTAL ALIGNMENT does NOT WORK IN THE TABLE OR the PIVOT VIEW

    Rgds,
    DpKa

  • How can I change the bookmark/folder names?

    How can I change the name of a bookmark or folder. Focused on aid, I see not a response to this specific problem.

    1. Select bookmarks > organize bookmarks.
    2. In the library window, select the bookmark or folder to rename.
    3. In the name box, change the name of the element. The change takes effect as soon as you click anywhere else.
    4. Close the library window

    Another way to do is with the bookmarks bar:

    1. Choose view > sidebar > bookmarks.
    2. Right click on the bookmark or folder to rename, and then click Properties.
    3. In the name box, change the name of the element.
    4. Click Save.
  • Envoy 5530: How can I change the destination by default ANALYSIS folder

    Cannot find the dialog box change the default destination ANALYSIS of My Documents to My Documents / scan my folder when you use the scan of the screen of the printer.

    Hello

    Please try:

    (a) double-click the desktop printer icon.

    (b) click on 'Advanced '.

    (c) click the "Destination":

    d click Browse, and then select where you want to set as default

    (e) click on apply... Ok

    Kind regards.

  • Change the operating system selected a virtual machine under tension in vCenter

    Is this possible? I looked in the box change the Settings - Options - but I can't see the usual fall down?

    You should turn off the machine.

    If you have made a mistake by setting for 32-bit or 64 - bit or vice versa, it does not really affect the virtual machine.

    If you have entirely changed the operating system, then you will need to power off and do it right that there is again a critical impact. the operating system you choose decides the type of SCSI controllers and things.

    I suggest you set a stop and do time.

  • Why is OK disabled in Debugger dialog box change value?

    Hello

    For some reason any OK disabled in the dialog box, change the value of the debugger. None of what I've seen so far explains why this happens. The variable stores an oracle.jbo.domain.Date, and the source ADF library was imported into the project.

    Ideas?

    James

    Is the AutoCorrect on my cell phone. I meant type, not a torus.

    Yes, you should be able to change a string or int type in your code.

    Timo

  • can we change the password of DBSNMP and OUTLN user


    Team,

    Oracle version: 10g and 11g

    For security reasons, we are changing the password for a GENERAL and OUTLN schema.

    y at - it an impact if you change the password for these 2 users,.

    OEM is configured we will change the password in the configuration also files

    What about OUTLN users? If I change the password of any effect on the database?

    Thank you

    PMP

    You follow Oracle MOS:

    How change DBSNMP password of database 10 g and 11g monitored by DB control (Doc ID 259387.1)

    why you need to change the password is locked to OUTLN in most cases?

  • InDesign CC - header/title on each page is not selectable and not available as a text box, so I can not change the words or letters

    I'm working on a newsletter, and on each page there is a red title obnoxious that I need to change, but I'm not like a text box and I can't select it using the tools of mouse.
    I need to get rid from which change the titles, but I can't seem to find a way.

    Help please!

    They could be:

    On a master page - go to the master page (Pages panel) to modify or replace (Ctrl / Cmd + Shift + click) to make them directly on the page of the document

    On a locked layer - see the layers panel; Click on the lock (if present) to unlock

    Locked - objects choose object > unlock all on the spread

  • How do you change the font in several text boxes?

    I just started using illustrator and I can't understand it.  Maybe someone can point me in the right direction.

    I made a bunch of text boxes using the text tool.  Is there a way I can link the boxes and easily change the font?

    Thank you

    Justin

    No need to link them. Select all, and then change the font.

    As with any other object, many text objects can be selected by shift-click or drag with the rectangle Selection tool. If you make a habit of placing all the text on a dedicated layer, you can lock the other layers and just select all (Cmd + A Mac / Win Ctrl + A).

  • You can change the font size using the form in the preview (not with the text box). Having also arrow drawing trouble in preview.

    You can change the font size using the form in the preview (not with the text box). Having also arrow drawing trouble in preview.

    What problems are you having with the arrow? You go to Tools-> annotate-> arrow and an arrow appears. Then you can drag around the head and tail to make it to the desired location.

Maybe you are looking for

  • Calendar synchronization problem

    My iPhone and my wifes iPhone & IPad are linked like family. Lately if I add a new event in my calendar appears in the calendar of the iPad, it does not appear in his iPhone . If I changed the default calendar from iPhone to another calendar of the e

  • WiFi disconnects randomly on my Y510p

    Hey, I want to update my wireless card if necessary, I read that there is a whitelist, so I would like to know who the card wifi I can use, which receives 5 ghz

  • No Audio output device is installed (Windows 10 64 bit, HP Pavilion 500 series)

    Model number: 500-007 a Operating system: 10 64-bit Windows Description of the problem: no sound. Hello I came from TenForums forum, hoping to find a solution to the problem of noise from my office. Status of the solution of the problem is at: http:/

  • events triggering not on value change

    Is there a problem to have several event facilities in a VI that handle the same event? Specifically, I have a stacked sequence where in an image, there is an event loop (structure of the event in awhile put in loop) which manages the user interface

  • Synchronize the clocks of 2 PCI cards for analog inputs with e/s digital reference

    I'm trying to synchronize the clocks of reference of 2 PCI cards so that the analog inputs are synchronized. However, my appilcation has also digtial e/s on two cards, and who apparently made the mistake DAQmxErrorResourcesInUseForRoute_Routing. This