Anyone know how to update page artwork leaving Form Fields where they were?

I set up my form fields just the right way and line them up right over where they are supposed to be, but the client makes a change to the artwork that the forms sit on.
Is there any way to just update the page leaving form fields exactly where they were?
As far as cutting and pasting to th enew pdf, thats too time consuming and there is no paste in place either. So I have to keep tapping them to back to where I put them the first time, but can’t do that every time not to mention it isn’t lockdown accurate and I have to make sure I have all the forms selected. Perhaps there is at least a Paste in Place for Acrobat plug-in somewhere, that would work.

Wow, really? I keep using these links to find the answer to my question and the forum keeps bouncing me back to the forum starting page. Anyone have the current link, or is this just the Adobe server freaking out?

Similar Messages

  • Can't seem to change the Document Properties Advanced Reading Options in a Form that was created in Adobe LiveCycle. This option has been "greyed" out - anyone know how to update this to English so I can pass Accessibility Testing?

    Can't seem to change the Document Properties > Advanced > Reading Options in a Form that was created in Adobe LiveCycle. This option has been "greyed" out - anyone know how to update this to English so I can pass Accessibility Testing?

    LiveCycle forms use a very different approach to create a PDF form than Acrobat and that approach makes many features for processing PDFs non-functional.
    You might want to ask this question in one of the LiveCycle product forums.

  • Does anyone know how to use pages so you can export pdfs from the internet and automatically drag words from the document into the file name of the pdf (i.e., author, title of a scientific paper)

    Does anyone know how to use pages so you can export pdfs from the internet and automatically drag words from the document into the file name of the pdf (i.e., author, title of a scientific paper). For example, if I am downloading a paper by smith called "Surgery" that was published in 2002, it will automatically set the file name in the download to smith- surgery 2002. I have heard pages is smart enough to do this.
    thank you

    Pages can export only its own documents. They may be exported as PDF, MS Word, RTF or Text files.
    Pages can import (ie. Open a file as, or Insert a file into, a Pages document) documents in several formats, but won't rename the document as you describe. Documents that can be Opened (eg. Text, AppleWorks 6 WP, MS Word files) are converted to Pages documents, and retain their original names, with .pages replacing the original file extension. Files that can be Inserted (generally .jpg, .pdf and other image files) become part of the existing Pages file and lose their names.
    It may be possible, using AppleScript, to extract the text you want and to Save a Pages file using that text as the filename, but that would depend in part on being able to identify which text is wanted and which is not.
    How will the script determine where the author's name begins and where it ends?
    How will the script recognize the beginning and of the title, an decide how much of the title to use in the filename?
    How will the script recognize the year of publication?
    For papers published in a specific journal, with a strict format for placing each of these pieces on information, or containing the needed information as searchable meta data in the file, this might be possible. But it would require knowledge of the structure of these files, and would probably handle only papers published in a specific journal or set of journals.
    Outside my field of knowledge, but there are some talented scripters around here who might want to take a closer look.
    Best of luck.
    Regards,
    Barry

  • Does anyone know how to update OSX Mountain Lion 10.8.1. to 10.8.2. on a late 2012 Mac mini. All I get are 'not compatible' messages even using supplementary updates etc?

    Does anyone know how to update OSX Mountain Lion 10.8.1. to 10.8.2. on a late 2012 Mac mini. All I get are 'not compatible' messages even using supplementary updates etc?

    It appears that many of the problems with the HDMI are the "monitors" that are being used. Samsung and Vizeo both DO NOT support a computer input on HDMI only VGA. There probably are others, manuals must be read to confirm compatability.
    I strongly believe that the reason the 10.8.2 update was pulled is due to the fact (it happened to me) that the new Disk Utility creates a Fusion drive if aftermarket SSDs are added to the system. I think Apple wants this propriatary Fusion Drive to be something you buy from them not a "homebrew" for lots less money.

  • Does anyone know how to update/recompile PHP to include IMAP?

    I've just installed phplist (http://www.phplist.com/), which is a newsletter mailer based on php. Some of the features require that IMAP be installed with the php installation. Evidently Apple's OSX install does not include IMAP in PHP by default, but presumably IMAP can be added if PHP is recompiled. (See http://www.php.net/manual/en/ref.imap.php). I was planning on updating PHP using Alex's very helpful tutorial, available at http://osx.topicdesk.com/content/category/4/18/62/, and at the same time adding IMAP.
    Altho Alex does not touch on IMAP in his tutorial, I believe that to includ IMAP in the PHP installation, the configuration string must include "--with-imap-ssl=/sw --with-imap=/usr/share/c-client", or something similar. In any event, it seems that "c-client" does not live in /usr/share nor anywhere on my system, so I have not attempted an installation so far.
    Does anyone know how to update/recompile PHP to include IMAP? And if "c-client" is required, how do I intall that first?

    Disregard last post--that was a non-starter, but I think I have a successful installation, which I will post here as the documentation on this from php and from phplist is pretty bad:
    First get and compile the c-client library, which is necessary for those wanting to run phplist:
    sudo mkdir -p /SourceCache
    cd /SourceCache
    sudo curl -O ftp://ftp.cac.washington.edu/imap/c-client.tar.Z
    sudo tar xzf c-client.tar.Z
    cd imap-2006h
    sudo make oxp
    sudo mkdir lib
    sudo mkdir include
    Next open /SourceCache/c-client and drag all the */.h files (including the aliases) into “include.” Then drag all the */.c files (aliases too) into “lib”.
    Find “c-client.a” and change name to "libc-client.a" and place in the lib folder.
    Correct permissions on lib and include.
    Finally install php (cheers to Alex) as follows:
    cd /SourceCache
    sudo curl –O http://us.php.net/distributions/php-4.4.7.tar.gz
    sudo tar xzpf php-4.4.7.tar.gz
    cd /SourceCache/php-4.4.7
    sh
    CFLAGS=-DBIND8COMPAT
    export CFLAGS
    sudo ./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --disable-dependency-tracking --with-apxs --with-ldap=/usr --with-kerberos=/usr --enable-cli --with-zlib-dir=/usr --enable-trans-sid --with-xml --enable-exif --enable-ftp --enable-mbstring --enable-mbregex --enable-dbx --enable-sockets --with-iodbc=/usr --with-curl=/usr --with-config-file-path=/etc --sysconfdir=/private/etc --with-mysql=/usr --with-mysql-sock=/var/mysql/mysql.sock --with-imap=/SouceCache/imap-2006h --without-pear
    sudo make
    sudo make install
    sudo apachectl graceful restart
    exit
    One last question, Alex: can I safely delete the SourceCache folder now that the installation is complete? My only concern is that the config string points to items in the folder, and I'm wondering whether I ought to have placed them inside /usr/share instead of SourceCache, or doesn't it make a difference?
    Lost count Mac OS X (10.4.9)

  • Hey, does anyone know how to update your NEW APPLE ID & PASSWORD on iphone?

    Hey, does anyone know how to update your NEW APPLE ID & PASSWORD on iphone?

    Tap Settings > iTunes & App Store
    Tap the current Apple ID then click Sign Out.
    Be aware. If you change the Apple ID and password, whatever content was purchased from the prior Apple ID will not be available on the iPhone.

  • HT204053 Just updated my login to apple on mac but ipad still displaying old email for login.  Anyone know how to update ipad to new login details?

    Just updated my login to apple on mac but ipad still displaying old email for login.  Anyone know how to update ipad to new login details?

    Hello Beeched,
    Thank you for the question.  Are you seeing the previous Apple ID in the iTunes and App Store?  If you are, use these steps to sign in with your new Apple ID:
    Sign in with a different Apple ID
    Tap Settings > iTunes & App Stores.
    Tap your Apple ID.
    If you see the option to Sign In, you can change your Apple ID now.
    Tap Sign Out.
    Enter your Apple ID and Password and tap Sign In.
    Or if you don't have another Apple ID, tap Create New Apple ID.
    You can find the full article here:
    iOS: Sign in with a different Apple ID in the iTunes Store, App Store, and iBooks Store
    http://support.apple.com/kb/ht1311
    If you trying to change the Apple ID signed into iCloud, use these steps:
    On your iOS device’s Home screen, go to Settings > iCloud, then at the bottom of the screen, tap Delete Account.
    iCloud: Change iCloud feature settings
    http://support.apple.com/kb/PH2613
    Once you delete the account from your device, you will have an option to sign in with your new Apple ID in Settings>iCloud.
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Does anyone know how to update the software on an iPhone 4 when there is no software update button?!

    Does anyone know how to update the software on an iPhone 4 when there is no software update button?!
    Many thanks.

    Update it from iTunes on a computer as described at the bottom of this article; devices running an iOS version prior to 5.0 can't be updated straight from the device. It will be updated to the newest iOS version supported by the device’s hardware.
    (83714)

  • Does anyone know how to make Pages type in landscape?

    Hi.
    I recently downloaded pages thinking it would be the perfect app to use to take down notes etc whilst at college. But it onlky seems to allow me to type in a portrait mode. I mostly type in landscape cause i find it easier and i can type faster using landscape. I can use "Everynote" app to type in landscape but pages dosnt seem to allow me to even when i try turning my screen. Does anyone know how i can type landscape on pages. If so please comment.
    P.S.
    This is on my Iphone 4 that i am using it on.
    Thanks.
    Arif257

    pages and numbers do not have landscape mode on iphone and ipod.

  • Does anyone know how to update your e-mail in iCloud

    Does anyone know how to change your email address for iCloud? It won't let me back up without doing so

    I have never lost anything updating.
    What are you talking about?

  • Does anyone know how to update apps via itunes

    I have the latest software and i am having difficulties installing updates of my apps. Does anyone know how to install updates through the app store

    http://manuals.info.apple.com/MANUALS/1000/MA1565/en_US/iphone_user_guide.pdf

  • Does anyone know how to get albums back in my iTunes library they seem to have vanished

    does anyone know how to get back my albums from my iTunes library .. they seem to have vanished...

    Gomibako
    Welcome to the Apple Discussions.
    You cannot do this with iPhoto, but you can with PhotoPresenter.
    To send feedback to Apple, try using the
    iPhoto menu -> Provide iPhoto Feedback
    route. Apple don't promise to read these forums, which are User to User forums.
    Regards
    TD

  • Does anyone know how to update ipod first generation?

    Because itunes is not letting me download it from there! any suggestions?

    If you are trying to update to iOS 3.1.3 and getting the 8288 error I know on no solution.  Othere users have posted a similar question. Have you contacted iTunes.
    Apple - Support - iTunes Store - Contact Us

  • Did anyone know how to update status for Idoc Finsta01

    Hi ,
    Did anybody did updating idoc status and message for idoc type FINSTA01.
    In Lockbox idoc_input_lockbx.
    If any BADI avilibale fr this to update.
    Thanks,
    Madhu

    Option 1:
    See SAP Help as below you will get the idea-
    Certain IDoc statuses are classified as archivable in the standard system, while others are not. You can display or change this classification.
    The current status of an IDoc must be archivable before the IDoc can be archived.
    Procedure
    Choose SAP Menu -> Tools -> Business Communications -> IDoc Basis -> Control -> Status -> Maintain Status Value.
    To change entries, choose .
    Select the required status. By double-clicking you can call a detail screen, in which you can display or change the archivability.
    By using or you can display or change all statuses one after another.
    Option2: I think it might be possible using generate status file for the outbound IDOC and then change the status in the file further process it. But I am not sure, I just had a look at the Xns in WEDI and made this story
    Thanks,
    Naren

  • Anyone know how to update an excel file?

    I cannot get this to work via cfappend (nothing changes in
    the file). Any ideas?

    "The file looks good, but when I access it via code and try
    to do an
    output of it's data, it says "Object Instantiation
    Exception". Any idea
    how to correct that?"
    Not really. I don't recall ever receiving that error message.
    The only
    thing that I could possible suggest is a timing|race issue.
    If you are
    writing the file and immediately trying to read it again, the
    OS may not
    have finished writing the file and released it yet.
    Why are you trying to output the file after writing it? You
    had the
    data in memory to write the file, can you output that?

Maybe you are looking for

  • Cisco Asa 5505 and Layer 3 Switch With Remote VPN Access

    i got today a new CISCO LAYER 3 Switch .. so here is my scenrio Cisco Asa 5505 I Outside  == 155.155.155.x Inside  =      192.168.7.1 VPN POOL Address =   10.10.10.1   -   10.10.10.20 Layer 3 Switch Config Vlan 2 interface ip address =  192.168.1.1 V

  • System preferences is gone

    Has anyone ever ran into a situation where when you click on System Preferences, nothing happens? I have tried it on the Apple logo, the Finder Icon and even in Spotlight but the program does not open. Any ideas? Thanks Les

  • Flash wont work

    Flash doesn't work. Says I need to update to current version. I am. Addons shows three versions of flash. Internet Explorer works better than firefox now (the shame!) Help me right this wrong.

  • First package size is bigger then others

    Hi, I am using a data source based on a function module to extract the data from R/3 to BW. The issue is that the data pulls the data correctly and everything is fine. But its the first data package which is always half the size of the all the data l

  • Earphone volume goes to highest setting every time i start the app

    I plug my Apple Earbuds into my Iphone.   I turn the volume down ...then i go into the music app and press play and the volume jumps to the highest setting every time.  This is dangerous and painful to my ears .   How do make the volume stay turned d