Setting security after form has been filled

I need to make a fillable form pdf for a colleague (on Mac)... however...Once she has filled it in in Reader (on PC), she needs to 'save it as' and at that point set the security so that no-one can change anything or copy the logo. Is this possible do you know?
thank you!

so, could I set the security to not allow copying text and images, then save it still as an editable pdf (for them just to put their text in)? But when they save it, it is still editable is it not?

Similar Messages

  • Flatten or lock a fillable PDF after it has been filled

    I have a form all ready to go with an "Submit by Email" to button and all the correct form fields.  Everything works great; I can fill-in the form click the Email Submit button and I receive the filled form as a PDF to the deignated address.
    Here is the problem that I cannot solve.  The filled PDF that I receive still has the fillable form fields that would allow someone to make changes.  I would like to somehow lock or flatten the PDF once it has been filled and before it is sent via email.  I have no clue of what script or where to insert language in the XML View that would enable a flatten or lock prior to email.
    Can anyone help with the script and where exactly to place it in the XML View?
    Thanks,
    Scott

    Srini,
    I have followed your directions, but forgive my lack of knowledge or understanding, where exactly would I insert
    form1.presence = "readOnly"
    I have included a screen shot.
    Thank you for your help
    cid:[email protected]
    SCOTT EK
    Office of Energy Security | Energy Facility Permitting
    85 7th Place East, Suite 500 | St. Paul, Minnesota  55101-2198
    Office: 651.296.8813 | Fax: 651.297.7891
    [email protected]
    www.energyfacilities.puc.state.mn.us
    www.energy.mn.gov

  • License Transfer for Production Premium CS5 - form has been filled out, how do I upload and file a case?

    Hi guys,
    I would like to transfer my license to another person, we have both filled out the form but the helpline isn't working, the chat has been unavailable for the past 5 days so how do I upload it and file a case so the new owner can register the product in their name?
    Thank you

    this is the help available online, Transfer an Adobe product license
    if you've already followed those steps and need more help, you'll need to contact adobe support by clicking this link and then clicking 'still need help', https://helpx.adobe.com/contact.html

  • Cannot save form error after form has been created

    I've created a form and fucntions well.
    It has been saved as a interactive pdf.
    When people with just the acrobat reader open the file and click anywhere on the form a window pops up stating that
    " you cannot save form..." then the OK button appears
    You are able to enter data into the fields and print, but can only save the form as a blank copy.
    Any help would be much appreciated.

    You need to reader enable the form in Adobe Acrobat. Click on Advanced >
    Enable Usage Rights in Adobe Reader and Click Save Now. You can then save a
    reader enabled version of the form and users will be able to save their data
    in the form.

  • Set Cursor.vi fails after it has been called for 30 different panel refs in LV 7.1.1

    Make sure both attached files (Run LabVIEW_Cursor_TestCase.vi, SimpleVI.vi) are in the same folder. Run LabVIEW_Cursor_TestCase.vi notice that the -3 error code is returned from "Set Cursor.vi" after it has been called with 30 different panel refs. If "Set Cursor.vi" is replaced with "Set Busy.vi" the same error occurs.Is there a workaround for this problem other that setting the cursor image manually in user32.dll? I must be able to open more than 30 panels and set them all to busy. In the test case I used a single VI, simply to demonstrate the error.
    Message Edited by Jerred on 05-04-2007 10:06 AM
    Attachments:
    LabVIEW_Cursor_TestCase.vi ‏68 KB
    SimpleVI.vi ‏13 KB

    This bug is fixed in LabVIEW 8.0 and later.  Unfortunately, I know of no workaround in LabVIEW 7.x.  When I encountered this bug in one of my UIs in LabVIEW 7.x, my "fix" was simply to ignore the error outputs from the cursor VIs, and to live with the fact that I had no custom cursors after 30 windows had been opened.
    -D
    Darren Nattinger, CLA
    LabVIEW Artisan and Nugget Penman

  • When I send an email notification that the form has been sent I want the receiver to get a copy of the actual filled out form not a ling to the data, how can I make this happen?

    When I send an email notification that the form has been sent I want the receiver to get a copy of the actual filled out form not a ling to the data, how can I make this happen?

    Hi,
    you can find documentation for Designer under this website
    http://help.adobe.com/en_US/livecycle/10.0/documentation.html#task=4,5&module=2
    In Designer you can use the JavaScript API of Acrobat.
    So the Devnet for Acrobat is also a good source.
    http://www.adobe.com/devnet/acrobat.html
    http://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/js_api_reference.pdf

  • Tiles- Cannot forward after response has been committed Error

    I am trying to use following approach for my tiles implementation but i am getting error like
    java.lang.IllegalStateException: Cannot forward after response has been committed.
    I have gone thorugh the other posts regarding the same error but not helping me.
    Any clues greatly appreciated.
    Thanks,
    Sachin
    "I haven't found a way to directly dispatch to a tiles definition, but you can eliminate the need for multiple "wrapper" JSPs by creating a single "tilesDispatch" JSP that is able to dispatch to different tiles definitions, and establishing a convention for mapping URLs to that JSP, and identifying the tiles definition you want to load.
    For example, you could use the following convention to identify a tiles definition:
    /tiles/defName
    where "defName" is the name of the tiles definition (from tiles.xml) that you want to use. The code for the tilesDispatch.jsp would be as follows:
    <%@ page contentType="text/html;charset=UTF-8" language="java" %>
    <%@ taglib prefix="t" uri="http://jakarta.apache.org/struts/tags-tiles" %>
    <%
    String tilePath = request.getRequestURI();
    int slashIndex = tilePath.lastIndexOf('/');
    if (slashIndex >= 0) {
    tilePath = tilePath.substring(slashIndex+1);
    %>
    <t:insert definition="<%=tilePath%>" flush="false"/>
    The scriptlet code takes the request URL (e.g. /tiles/defName), strips off everything up to and including the final slash (e.g. defName), then the tiles "t:insert" tag is used to look up and insert the corresponding tiles definition.
    In order to map all URLs of the form /tiles/* to the tilesDispatch.jsp, you would need to add the following to your web.xml:
    <servlet>
    <servlet-name>tilesDispatch</servlet-name>
    <jsp-file>tilesDispatch.jsp</jsp-file>
    </servlet>
    <servlet-mapping>
    <servlet-name>tilesDispatch</servlet-name>
    <url-pattern>/tiles/*</url-pattern>
    </servlet-mapping>
    Note: You may need to insert a slash before tilesDispatch.jsp in the <jsp-file> element. I am using pre-compiled JSPs, so my configuration is a little different. So if <jsp-file>tilesDispatch.jsp</jsp-file> doesn't work, try <jsp-file>/tilesDispatch.jsp</jsp-file>.
    Once you have this set up, you can refer to tiles definitions using the /tiles/defName convention in your faces-config.xml. For example, if you have two tiles definitions in your tiles.xml file: tile1 and tile2, you could have something like the following in faces-config.xml:
    <navigation-rule>
    <from-view-id>/tiles/tile1</from-view-id>
    <navigation-case>
    <from-outcome>success</from-outcome>
    <to-view-id>/tiles/tile2</to-view-id>
    </navigation-case>
    </navigation-rule>
    Note that when I have used this convention, I also have used the prefix mapping for JSF. That is, when linking to a JSF page, based on a tiles definition, from a non-JSF page, the URL would be as follows:
    /faces/tiles/defName
    In this case, the Faces servlet is initially invoked, which sets up the JSF environment. Then the /faces prefix is stripped off, and the remaining URL (/tiles/defName) is routed to the tilesDispatch.jsp, which strips off the /tiles/ prefix, and inserts the "defName" definition.
    We are currently using this approach in a number of web apps, and it is working very reliably. I hope this helps.

    Hi gimbal2,
    I hope to better explain.
    In my JSF code I have the next:
    <html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:rich="http://richfaces.org/rich"
    xmlns:a4j="http://richfaces.org/a4j"
    xmlns:fn="http://java.sun.com/jsp/jstl/functions">
         <h:body>
              <ui:composition template="/template.xhtml">
                   <ui:define name="page">
                        <h:head>
                             <h:outputStylesheet ...
                        </h:head>
                        <h:form id="form1">
                             <rich:dataTable      id="table"
                                            value="#{listBeanRequest.elements}"
                                            var="element">
         </h:body>
    </html>
    In the listBeanRequest class, the method getElements() has a line, Integer h = Integer.valueOf("a");, which efforts the java.lang.NumberFormatException
    An in my web.xml I have:
    <filter>
         <filter-name>SecurityFilter</filter-name>
         <filter-class>my.filter.SecurityFilter</filter-class>
    </filter>
    I'm using JSF 1.2 running on Apache Tomcat 6

  • Event Handling when EditText has been filled

    I'd like to call some code after an EditText has been filled.  But I'm having a little trouble figuring out which events I need to watch.
    The tricky part (it seems) is that I need to catch the event any time data is added to or changed in the EditText.  This includes anytime SBO changes the data as well (which means the EditText may not get/lose focus).
    Anyone do something like this?  Or have an alternative?
    It's the Item field (uid = 33) on the Service Call form (form type = 60110).

    Hi,
    U can do it at Validate after action event by code
    if(pVal.FormType==60110 && pVal.ItemUID=="33" && pVal.ItemChanged==true)
    //Write ur own code ,whatever u want
    Hope u will get help...
    Regards,
    Lalit Narayan

  • The version of "Adobe Flash Player" on your system does not include the latest security updates and has been blocked. To continue using "Adobe Flash Player", download an updated version from Adobe's website.

    The version of “Adobe Flash Player” on your system does not include the latest security updates and has been blocked. To continue using “Adobe Flash Player”, download an updated version from Adobe’s website.

    You haven't actually asked a question, but as stated you should only download Flash Player directy from Adobe.
    Nor have you said what version of OS X and Safari you are running.
    You can check here:  http://www.adobe.com/products/flash/about/  to see which version you should install for your Mac and OS. Note that version 10,1,102,64 is the last version available to PPC Mac users*. The latest version,10.3 or later, is for Intel Macs only, as Adobe no longer support the PPC platform. Version 11.0.1.152 is for Lion.
    * Unhelpfully, if you want the last version for PPC Macs, you need to go here:  http://kb2.adobe.com/cps/142/tn_14266.html  and scroll down to 'Archived Versions/Older Archives'. Flash Player 10.1.102.64 is the one you download. More information here:  http://kb2.adobe.com/cps/838/cpsid_83808.html
    You should first uninstall any previous version of Flash Player, using the uninstaller from here (make sure you use the correct one!):
    http://kb2.adobe.com/cps/909/cpsid_90906.html
    and also that you follow the instructions closely, such as closing ALL applications first before installing. You must also carry out a permission repair after installing anything from Adobe.

  • How to settle the expenses after AUC has been capitalised.

    Hi All,
    I have a understanding that after AUC has been settled, we can edit the settlement rule in WBS element and settle directly to the capitalised assets.
    I can not see the settlement rule but investment profile since the project being a Capital comes from Investment measure and automatically created.
    Can you tell me how to create a new settlement rule in this case. It is Urgent
    Regards
    VK

    Hi Vijay,
    This requires a change in the settlement rule since the AUC is no more and it must be the settlement reveiver earlier which should be changed to the main asset after capitalisation.
    Please go to Transaction code CJ20N, select the WBS and go to settlement rule via edit > Cost and set the receiver as the fixed assets itself instead of AUCV since AUC has been transferred to main assets.
    You can then settle using CJ8G or CJ88 but CJ88 is a better option.
    I think, I have answered the same query.
    Regards
    Bharat

  • Workflow Shows as 'In Progress' after Workflow has been completed.

    Hello All,
    I have created a custom workflow using SharePoint Designer. Within this workflow I have multiple 'approval process' tasks. In theory this was so that once the first user had approved the item then the next would be prompted to approve the item, and
    so on. The users that the item must be approved by are set when the item is submitted initially.
    Just so anyone reading this knows I have no formal experience/education in SharePoint workflow design, but I would like to think I know my way around SharePoint(in general) at this point.
    My problem is, the company I work for is just starting out using SharePoint workflows, and from what I understand workflows that are 'In Progress' are related to server performance. I noticed today that there are 5 items in the list which
    under the 'workflow status' column display that they are 'In Progress' which is entirely correct. However, when I go to -> 'List Settings' -> 'Workflow Settings' this workflow is showing 8 workflows 'In Progress'.
    Thank you to anyone who is able to help me with this,
    James

    Hi,
    According to your post, my understanding is that workflow shows as 'In Progress' after Workflow has been completed.
    To send the task one by one, you can select one at a time(serial) when you select Task Process Participants.
    Per my knowleadge, when you go to -> 'List Settings' -> 'Workflow Settings', it show all the workflows you associated to the list.
    To see the running workflow, you need to select an item, right click the title, and then select the workflow.
    However, each workflow enstance can only start once on an item.  In other word, you can not start the same workflow again untill the previous one is completed.
    As you said, workflow shows as 'In Progress'.
    Please make sure all the users have approved the tasks.
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • My computer does not eject the disc after it has been burned.

    I understand that my computer is supposed to automatically eject a disc after it has been burned. Mine doesn't. Instead, I hear a "Plonk," which I assume is announcing that the burning process has been completed.
    First of all, is it true that the disc is supposed to be ejected after the burn has been completed? Secondly, how can I restore that function?

    Diane Wordsmith wrote:
    To clarify...are you importing songs from a CD into iTunes, or are you burning songs from iTunes onto a blank CD? If it's the former, iTunes won't eject it...you'll just hear a chime or noise when it's done. If it's the latter it should eject.
    For the second poster, it sounds you are importing. In which case, you will just hear the sound when importing is finished and you eject the CD yourself.
    Just to make sure that I understand you correctly, here's what I did: Imported songs from website. They were in RealPlayer format. I then converted the song files into MP3 format, and put them into my iTunes music library. Finally, I put the songs in a New Smart Playlist, and burned them into a blank disc.
    Given this situation, should I expect the disc to automatically eject when the burning is competed? If so, what do I have to do to get it to work properly?

  • Removing a speed dial after it has been setup

    How do I remove a speed dial after it has been set ?

    Open speed dial page and click the - icon to right of number.
    + +

  • After password has been reset how do I reset keychain?

    After password has been reset how do I reset keychain?

    That article is a great help if you remember your OLD login password.
    If not, the bad news is in this article:
    OS X: Keychain Access asks for keychain "login" after changing login password
    read it carefully, It explains how to change your keychain by using the OLD password.
    If you don't remember your original (former) account password
    If you don't remember your original password, you'll need to delete the keychain. Deleting a keychain also deletes all the password data saved in that keychain.
    If this applies, it means is that your old saved passwords are lost.
    You will have to start collecting them anew and adding them to the new keychain. Use Web mail and log in to your email with a Browser. Get them to send you your old password or reset it, then record the new one in Mail Preferences, and it will be saved in the current login keychain.
    You will have to do a similar exercise with your other saved passwords.

  • How to add DNS server to CER after Server has been Built

    How to add DNS server to CER after Server has been Built?
    The reason why, the CER 1.3.1 that I upgrade to 7.1, had the switch list by hostname,
    The install of 1.3.1 had the LMHOST file editted with all the switch names.
    Is there such thing as a host file on 7.1 CER? If not, that is where I need to add the DNS server now. As they will have to add the switch hostnames to the DNS server.
    Thanks
    Kallol

    I found where to set the DNS via CLI...
    admin:set network dns
          set network dns options
          set network dns primary
          set network dns secondary
    Also it requires me to configure the domain name.
    set network domain name

Maybe you are looking for