Need help with a 9-page form

I've created a single-page PDF form with LOTS of form fields (most of them checkboxes). I need to duplicate the page/form another eight times so that I have the same form across nine pages. My problem is, if I don't change the names of the form fields on each page (which would take a REALLY long time), as soon as something gets checked on the first page, it will also get checked on all eight of the other pages. Is there a way to make my nine-page form work without having to re-name each and every form field? Thank you for any assistance you can provide! I'm working in Acrobat 9 standard on a Windows computer.

Yes, make the single page into a template and spawn it eight times, specifying that you want to rename the fields in the process. Here are some previous threads that discuss this in more detail:
http://forums.adobe.com/message/4745648
http://forums.adobe.com/thread/1084011
The code in the second topic doesn't include the parameter that causes the fields to be renamed, you you could easily include it:
// Make a template out of the first page
var t1 = createTemplate("t1", 0);
// Spawn the template to create a new page
var oXO = t1.spawn({nPage: numPages, bRename: true, bOverlay: false});
// Now that we have the XObject, spawn the rest of the pages
while (numPages < 9) {
    t1.spawn({nPage: numPages,  bRename: true, bOverlay: false, oXObject: oXO});
Message was edited by: George Johnson to correct a typo.

Similar Messages

  • I need help with a 1 Page Form with scrollable text field (5000 limit characters) and printing

    Hello, I have no training in using Adobe Acrobat Pro or Livecycle Designer so I need major help with a 1 page form that I am attempting to create. Basically the form will be used to nominate employees for a Job Well Done Award.
    The form contains the following:
    1.) The name(s) of the employees being nominated and the date of the accomplishment.
    2.) In the middle of the page I have a section for a write up, limited to 5000 characters, this is were I am needing the most help. A couple of things, about this section: The font is set at 11 and I don't want it to change. The text field has multiple-line, scroll long text enabled. The text field is a certain size and can only hold so much text, then it starts to scroll, which I am ok with, I like that feature. The issue I am having is during printing. I would like to keep the text field scrollable but when I print I would like to be able to print everything in that field. Executing this is the problem, I have no clue how to do it. I was hoping for some setting within Acrobat Pro or LiveCycle to be available, but the more I read and research this, it appears that it may require java, xml, basically some coding. I don't know for sure.
    3.) Below the text field I have another field for the person nominating to type their name and right next to that another field for a digital signature.
    4.) And finally below those two fields I have a Submit button that is setup to start email application so the form can be emailed to the proper inbox.
    Thank you in advance.

    With an Acrobat form the only thing you can do is export the text to
    another location (like a blank field on another page) or to another file
    format. With an LCD form you can expand the text box itself, but you'll
    need to ask about that over at the LCD Scripting forum.

  • Need help with centering my page

    I have done everything I can think of, including going through the many posts here to try and correct this with no luck
    Please look at:
    http://ebnerproductions.com
    and
    http://ebnerproductions.com/index2.htm
    The first was built with basically just html.
    The 2nd was done "properly" I believe with CSS and HTML. The 2nd also has "div - #wrapper"
    left and right margins are auto also... nothing changed.
    Do I need to change something in the CSS from absolute, to fixed or inherit?
    I am completely lost at this point and really really need help.
    Thank you again in advance....
    Adam Ebner

    Your CSS is corrupted -
    :visited {
        color: #6CF;<meta name="keywords"
    (note the appearance of the meta tag within the :visited selector)
    Fix that.
    Then you would need to add this rule to the fixed CSS by changing this -
    body {
        background-color: #EBEBEB;
        background-image: url(BG.jpg);
        margin-left: 75px;
        margin-top: 75px;
        background-repeat: no-repeat;
    to this -
    body {
        background-color: #EBEBEB;
        background-image: url(BG.jpg);
        margin-left: 75px;
        margin-top: 75px;
        background-repeat: no-repeat;
        width:1346px;
        margin:75px auto;
    Then ask yourself how many people will even see this page center since 1346 is way wider than the average browser viewport width on most systems.

  • Need help with Flash/PHP online form, please help, URGENT!

    ive made my online form with the scripts shown below, when i
    submit i dont get any errors... but i also dont receive any emails
    from the form, if you can see anything that ive done wrong please
    help me out..
    -------------------------------------------------------PHP
    mailer.php------------------------------------------------------------------
    <?php
    $fname = $_REQUEST["fname"];
    $mail = $_REQUEST["mail"];
    $add1 = $_REQUEST["add1"];
    $add2 = $_REQUEST["add2"];
    $add3 = $_REQUEST["add3"];
    $town = $_REQUEST["town"];
    $county = $_REQUEST["county"];
    $postcode = $_REQUEST["postcode"];
    $telephone = $_REQUEST["telephone"];
    $subject = $_REQUEST["subject"];
    $message = $_REQUEST["message"];
    $full_message = $_SERVER['REMOTE_ADDR'] . "\n\n" . $message;
    $message= $full_message;
    $fname = stripslashes($fname);
    $mail = stripslashes($mail);
    $add1 = stripslashes($add1);
    $add2 = stripslashes($add2);
    $add3 = stripslashes($add3);
    $town = stripslashes($town);
    $county = stripslashes($county);
    $postcode = stripslashes($postcode);
    $telephone = stripslashes($telephone);
    $subject = stripslashes($subject);
    $message = stripslashes($message);
    $subject = "Vision Ten Online Form ". $subject;
    if(isset($fname) and isset($mail) and isset($add1) and
    isset($add2) and isset($add3) and isset($town) and isset($county)
    and isset($postcode) and isset($telephone) and isset($subject) and
    isset($message)){
    mail("[email protected]", $fname, $mail, $add1,
    $add2, $add3, $town, $county, $postcode, $telephone, $subject,
    $message "From: $mail");
    ?>
    -------------------------------------------------------PHP-------------------------------- ----------------------------------
    -----------------------------------------------ACTIONSCRIPT
    for the
    form----------------------------------------------------------
    stop();
    System.useCodepage = true
    this.sent.onRelease = function () {
    my_vars = new LoadVars ();
    my_vars.fname = fname_box.text;
    my_vars.mail = mail_box.text;
    my_vars.add1 = add1_box.text;
    my_vars.add2 = add2_box.text;
    my_vars.add3 = add3_box.text;
    my_vars.town = town_box.text;
    my_vars.county = county_box.text;
    my_vars.postcode = postcode_box.text;
    my_vars.telephone = telephone_box.text;
    my_vars.subject = subject_box.text;
    my_vars.message = message_box.text;
    if (my_vars.fname !="" and my_vars.mail !="" and
    my_vars.add1 !="" and my_vars.town !="" and my_vars.county !="" and
    my_vars.postcode !="" and my_vars.telephone !="" and
    my_vars.subject !="" and my_vars.message !="") {
    my_vars.sendAndLoad("script/mailer.php", my_vars, "POST");
    gotoAndStop(2);
    } else {
    error_clip.gotoAndPlay(2);
    my_vars.onLoad = function (){
    gotoAndPlay(3);
    fname_box.onSetFocus = mail_box.onSetFocus =
    add1_box.onSetFocus = add2_box.onSetFocus = add3_box.onSetFocus =
    town_box.onSetFocus = county_box.onSetFocus =
    postcode_box.onSetFocus = telephone_box.onSetFocus =
    subject_box.onSetFocus = message_box.onSetFocus = function () {
    if (error_clip._currentframe !=1) {
    error_clip.gotoAndPlay(6);
    -----------------------------------------------ACTIONSCRIPT------------------------------- ---------------------------

    that php mail function looks suspect. that should be
    mail(to,subject,message,headers,parameters)

  • Need help with creating a contact form!

    I searched the forum, and found the suggestion to go to Bravenet and create the form, and then copy the code into the HTML snippet.
    I've done that - but I need to change the font - along with its color and possibly the size.
    Here is the code:
    <form method="post" enctype="multipart/form-data" action="http://pub5.bravenet.com/emailfwd/senddata.php">
    <input type="hidden" name="usernum" value="381593922">
    <input type="hidden" name="cpv" value="2">
    <!-- DO NOT CHANGE OR REMOVE THE 3 TAGS ABOVE THIS COMMENT-->
    <table border="0" cellpadding="0" cellspacing="0" align="center">
    <tr>
    <td>
    Contact Form
    </td>
    </tr>
    <tr>
    <td>
    <label for="FirstLastName" style="float:left;width:140px;">First and Last Name:</label><input type="text" name="FirstLastName" id="FirstLastName" value="" maxlength="" style="width:200px;">
    <label for="Email" style="float:left;width:140px;">E-Mail Address:</label><input type="text" name="Email" id="Email" value="" maxlength="" style="width:200px;">
    <label for="Message" style="float:left;width:140px;">Message:</label><textarea name="Message" id="Message" maxlength="" style="width:200px;height:200px;"></textarea>
    </td>
    <tr>
    <td align="right">
    <!-- YOU CAN MODIFY THE TEXT WITHIN VALUE="" TO MODIFY YOUR BUTTON TEXT-->
    <input type="submit" value=" Submit "> <input type="reset" value=" Reset ">
    </td>
    </tr>
    </table>
    </form>
    Can anyone give me a hand??
    Thanks!
    Kim

    You might want to check out wufoo.com - very customizable

  • I need help with an auto-page advance.

    I'm sure I'm doing something wrong. I have a program with 32 pages. Each page is a movie clip with text and images (with motion tweens) and sound. I want one page to play, then the next to play, etc. I have a stop(); at the last frame of each page_mc to kep it from looping. I tried this code butit does not work:
    page01_mc.addEventListener(Event.COMPLETE,nextPage);
    function nextPage(event:Event):void
    gotoAndStop("page02_mc");
    Help! (PS: I'm a novice at Flash CS4 and AS3)

    What you can try is to dispatch an event at the end of each movieclip and have listners waiting for the event for each as you move down the timeline.  For instance, let's say each frame of your main timeline is a different page movieclip.  At the end of each movieclip place this line of code:
    dispatchEvent(new Event("START_NEXT"));
    Then, on the main timeline, for each frame you create an event listener for the current mc.  If your first mc instance name was mc1, then in its frame you would have...
    mc1.addEventListener("START_NEXT", playNext);
    And since the timeline is arranged one mc per frame, the playNext function could be made generically so that all movies could use it...
    function playNext(e:Event):void {
    play();
    Since you are using frame labels, then you would probably devise some other means for advancing, but the same dispatch/listener scenario could still drive the call to move on.

  • I need help with the numbering pages in a book file

    I have a 53 chapter book that which each chapter is its own document. It used to work great. The page numbers of each document used to continue from the last page number of the previous document. That was until today when I opened it and all the page numbers now start at one. I don't know what to do. I have checked all of the options I knew to check. Each document still has the 'automatic page numbering' option selected. I truly don't want to have to go through and manully renumber every document. It will take time I do not have. If I can get somebody's help, it would be wonderful.

    Nor do I. It sounds like everything is set correctly. You might want to try creating a new Book file and add the individaul documents into it and see if that fixes things. Also, have you tried updating the numberingfrom the menu since this started?

  • Need Help With Spam Proof Email Form

    I am making a new web site using iWeb, .Mac, personal domain and forwarding from my commercial host. I want to make an email contact form that spammers cannot hijack and use to deluge use with spam. I have another web site that was created with Dreamweaver that contains a javascript form that I think that I can modify and use as an html snippet in iWeb.
    Will this work in iWeb (sending a form response to non-.mac email address? The form I am using relies on two small text documents that are stored in the templates folder of my site. The following code refers to the one line of text in the confige document.
    <input type=hidden name="config" value="templates/confige.txt">
    <input type=hidden name="success_url" value="http://myothersite.com">
    <input type=hidden name="email" value="[email protected]">
    Text of confige: mail_template=templates/emailTemplate.txt
    The confige document refers to the following text which are the field names and order.
    Name: <first>
    Store Name: <store>
    Location: <city>
    E-mail: <custemail>
    Platform: <platform>
    Comments:<storeDescription>
    How do I deal with the text documents that are stored in a separate folder in my Dreamweaver site, and can I eliminate these documents and use just the html form in iWeb?

    You might want to check out wufoo.com - very customizable

  • Need help with Albums style page, having trouble arranging the way I need

    Hello,
    I am creating a my albums styled page for an automotive club website I am working on. I love the way the albums functionality is built into iWeb with the slide shows and automatic linking and everything, its perfect. The trouble I am having is:
    on my Photos page (using my albums-styled) I want to have the albums organized into different categories. like this
    MEETS:
    grid of photo albums from car meets
    PHOTO SHOOTS:
    grid of photo albums from photo shoots
    TRACK DAYS:
    grid of photo albums from track days
    CHALLENGES:
    grid of photo albums from challenges
    and thats it, something so simple is giving me so much trouble, I have not been able to find a way to duplicate the original photo album grid thats inserted by iWeb when you select a my albums styled page. and I haven't been able to find a way for me to space them freely either so that I could at least have the text in-between to separate them into the categories that I want.
    I want to do the exact same setup for my VIDEOS page too with video albums.
    if anyone could explain to me how I could do this it would greatly appreciated thanks

    One possible method would be the following:
    1 - create individual album pages for your Meets, Photo Shoots, Track Days and Challenges.
    2 - do not include them in the navbar.
    3 - create a blank page and add thumbnail images representing each of those album pages. If you want to add frames to them you might want to follow the suggestions in this tutorial: #7 - Converting Photos w/Frames, Drop Shadows and/or Reflections into a Single JPG Image.
    4 - make each thumbnail a hyperlink to the album page it represents. This way you can arrange the thumbnail in whatever layout you'd like and even have some text description below each.
    5 - on each album page turn off the navbar.
    6 - put a hyperlink at the top of each album page and subsequent photo page sending the visitor back to the page created in step 1.
    OT

  • Need Help With ePub Book Page Numbering

    I'm not understanding how to get the page numbers set in sequential order for an ePub.
    I've created a Book with 10 sections (all independent files).
    But, as you can see in the attached image, the file numbers do not progress from one "section" to another. This is messing up the TOC and the ePub navigation.
    What am I doing incorrectly?

    Book and Page Numbering Options were set correctly to:
    Continue from previous document
    Automatically Update Page & Section Numbers
    What I missed was setting Document Numbering Options to:
    Start Section >> Auto Page Numbering
    Document Chapter Numbering >> AutoChapter Numbering
    Each of my ten Book documents were defaulting to Start Page Numbering at: 1 which was causing each document/section to begin at 1.

  • Please i need help with pop up pages

    Hi i wrote this java
    <SCRIPT language="JavaScript">
    <!--
    function launch(service) {
    window.open('http://www.dazworld.net/games/game_files/launch/' + service,'','height=141,width=244');
    //-->
    </script>
    and when i want it too pop up a game the hyperlink for the link object (text or image) is
    javascript:launch('2.htm'); the 2.htm is a specific game, this pops up and works well but i need to make it pop up in the center of the page or around there in a specific location, please can someone show me how

    Yep, I hate to sound rude (I was in the same position at one point), but there's another person who doesn't know that there are significant differences between the two languages.

  • I need help with designing a page with footnotes

    I would like to place a one or two word translation in a narrow column alongside a main text. There are many translations in this text, about one every two lines. The footnote function simply creates a long list at the bottom of the page. This creates some design challanges. Does anyone have any suggestions of what I can do to design a page where these one or two word translations appear in a column next to the text or somewhere other than a single column list at the bottom of the page. Thank you!

    I used an anchored object to create my sidebars, and use an object style for the text box. The settings below (ignore the X and Y offset will let it go from the left to the right if there's a lot of page shifting, and it will keep it on the page. It'll take some fiddling around to get it to work the way you want. The only thing I need to do is type in the width of the anchored box. Everything else is automated.

  • I need help with a web page for a client pppppppppppllllllllleeeeaaassssseee hhheellllpppp

    Ok so it seems that I have  programed the music to work propery on my webpage. The only problem is  that it does not always play. I mean sometimes it does play and then  theres the issue of songs overlaping
    certain times when I open  the page and other times not. sometimes the the music seems to play more  often on certain computers than others. Although still it plays sort of  at random moments and some times not at all.
    any ways heres a link to download the edge file of my page so you can see what im talking about.
    https://www.dropbox.com/s/llb3ai5qp19n0ca/musicwebpage.zip
    Thank you.

    Probably not.<br />
    You can try the cache of search engines like Google.
    http://www.google.com/search?hl=en&ie=UTF-8&q=cache:

  • Need help with a Purchased page on iPhone!

    My iPhone cannot access the purchased page on iPhone App store. Some time it show up the list of app that I have purchased but I have to wait about 2-4 minues for that. Also many times that App Store just shut down automatic when I open Purchased pages. This have been happen since I updated my device to IOS6. I had try my friend ID from Japan and it perfectly work. So any way to solve this problem? Thank you.

    I would say the iphone headset have 4 wires
    left channel
    right channel
    mic in
    ground
    I would say an external mic being mono at least that all iphone support
    would be 2 wires
    mic in
    ground
    then I would take a apple headset and cannibalize it
    there also are adaptors which change the apple headset into
    2 normal std 3.5mm audio output connector
    1 mono mic in connector you could chekc out those

  • Need help with a currently "in-use" form we want to switch to Adobes hosting service

    Hi, I am in desperate need of help with some issues concerning several forms which we currently use a paid third party (not Adobe) to host and "re-distribute through email"...Somehow I got charged $14.95 for YOUR service, (signed up for a trial, but never used it)..and now I am paying for a year of use of the similar service which Adobe is in control of.  I might want to port my form distribution through Adobe in the hopes of reducing the errors, problems and hassles my customers are experiencing when some of them push our  "submit button". (and I guess I am familiar with these somewhat from reading what IS available in here, and I also know that, Adobe is working to alleviate some of these " submit"  issues, so let's don't start by going backwards, here) I need solutions now for my issues or I can leave it as is, If Adobe's solution will be no better for my end users...
    We used FormsCentral to code these forms and it works for the most part (if the end-user can co-operate, and thats iffy, sometimes), but I need help with how to make it go through your servers (and not the third party folks we use now), Not being cruel or racist here, but your over the phone "support techs" are about horrible & I cannot understand them or work with any of them, so I would definitely need someone who speaks English and can understand the nuances of programming these forms, to please contact me back. (Sorry, but both those attributes will be required to be able to help me, so, no "newbie-interns" or first week trainees are gonna cut it).... If you have anyone who fits the bill on those items and would be willing to help us, please contact me back at your earliest convenience. If we have to communicate here, I will do that & I can submit whatever we need to & to whoever we need to.
    I need to get this right and working for the majority of my users and on any platform and OS.
    You may certainly call me to talk about this, and I have given my number numerous times to your (expletive deleted) time wasting - recording message thingy. So, If it's not available look it up under [email protected]
    (and you will probably get right to me, unlike my and I'm sure most other folks',  "Adobe phone-in experiences")
    Thank You,
    Michael Corman
    VinylCouture
    Phenix City, Alabama  36869

    Well, thanks for writing back...just so you know...I started using Adobe products in 1987, ...yeah...back then...like Illustrator 1 & 9" B&W Macs ...John Warnock's Helvetica's....stuff like that...8.5 x 11 LaserWriters...all that good stuff...I still have some of it working on a mac...much of it was stuff I bought. some stuff I did not...I'm not a big fan of this "cloud" thing Adobe has foisted upon the creatives of the world...which I'm sure you can tell...but the functionality and usefulness of your software can not be disputed, so feel free to do whatever we will continue to pay for, ...I am very impressed with CC PS on the 64 bit PC and perhaps I will end up paying you the stipend that you demand for the other services.
    So  I guess that brings us to our problem.. a few years back and at the height of the recession and near bankruptcy myself,  I was damn lucky and hit on something and began a small arts and crafts supply service to sell my products online to a very "niche market" ...I had a unique product and still sell that product (plus others) online...My website is www.vinylcouture.com...Strange? Yes...but there is a market it seems, for everything now, and this is the market I service...Catagorically, these are 99%+ women that use these "adhesive, sticky backed vinyl products"  to make different "craft items" that are just way too various and numerous to go into... generally older women, women who are computer illiterate for the most part...and all this is irrelevant to my problem, but I want you to have every bit of background on this and especially the demographic we are dealing with, so we can get right to the meat of the problem.
    OK...So about two years ago, I decided to offer a "plain sheet" product of a plain colored "stick back" vinyl... it is available in multiple quantities of packs ( like 5 pieces, 10 pieces, 15 pieces, in a packi  & so on)...and if you are still on my site.. go to any  "GO RIGHT TO OUR ORDER PAGE"  button, scroll down a little...and then to the "PLAIN VINYL" section...you will see the Weebly website order process.) You can back out from here, I think,..but, anyway this product is available in 63 colors + or - a few. So then the problem is,  how do they select their individual colors within that (whatever) pack?... .
    So my initial idea was to enable a "selection form" for these "colors" that would be transmitted to me via email as 'part" of the "order process".. We tried getting our customers to submit a  " a list" ( something my competitiors still do, lol, poor bastards)......but that..is just unbelievable..I can't even begin to tell you what a freakin' nightmare that was...these people cannot even count to 10, much less any higher... figuring out what colors to list and send me... well, lets just say, it wasn't working......I had to figure out a better way...Something had to be done.
    So after thinking this all out,  and yeah...due to my total ignorance, i figured that we could make a form with Live Cycle Designer (Now Forms Central)...(back then something that was bundled with Adobe Acrobat Pro), I believe, and thats what this thing was authored in... and it would be all good...LOL!
    Well not so simple...as you well know, Adobe Acrobat would NOT LET YOU EMAIL anything from itself.....it just wouldn't work (and I know why, and all that hooey), but not being one to take NO for answer,.I started looking for a way to make my little gizmo work.. So I found this company that said they can "hijack" (re-direct actually) the request to email, bypass the wah-wah, and re-transmit it to the proper parties.....for less than $100 a year,  I think...its called http://pdf-fillableforms.com/.
    A nice gentleman named Joseph Silva helped us program the thing to go to his servers and back out. Please dont hassle them...I need them...for now..it basically does work...try it...you should get back a copy of the form that you filled out...good luck however,  if you're on MAC OSX or similar...
    I have included a copy of both of our forms (and feel free to fill it out and play with it)...just put test somewhere on it...(and you must include YOUR email or it will balk)..they are supposed to be mostly identical, except one seems to be twice as large....generating a 1.7 meg file upon submission, while the other one only generates a 600K file or so...thats another issue for another day or maybe you can advise on that also...
    OK so far so good......In our shop, once Grandma buys a 10 pack (or whatever), Only then she gets to the link on her receipt page ro the relevant "selection form" ,(this prevents "Filling and Sending"  with "no order" and "no payment", another early problem we had)... which they can click on and it will usually download and open up on their device if all goes well...Then our little form is supposed to be fillable and is supposed to ADD UP all the quantities, so grandma knows how many she is buying and so forth right on the fly,  and even while she changes her mind..., and IT'S LARGE so grandma can see it, and then it TOTALS it all up for them, ( cause remember, they can NOT add)..,  except there is a programming bug (mouse-click should be a mouse-up probably or something..) which makes you click in the blank spaces to get to a correct TOTAL...about 70-80% of our customers can enable all these features and usually the process completes without problems for them especially on PC's running Windows OS and Acrobat Reader X or XI...at least for most... Unfortunately it is still not the "seamless process" I would like or had envisioned for the other folks out there that do have trouble using our form....  Many folks report to us the following issues that we know of.  First of all it takes too much time to load up...We know its HUGE...is there anyway that you can see, to streamline this thing? I would love for it to be more compact...this really helps on the phones and pads as I'm sure you well know.
    Some just tell us,"it WON'T work"....I believe this is because they are totally out of it and dont even have Adobe Reader on their machine, & don't know how to get it ( yes, we provide the links).....or it's some ancient version....no one can stop this one...
    It almost always generates some kind ( at least one time)  of "error message" which we do warn them about..., telling one,  basically that "Acrobat doesnt even like this happening at all, and it could be detrimental to ones computer files", blah-blah...(this freaks grandma out really bad)...& usually they end up not even trying to send it...  and then I get calls that even you wouldn't believe...& If they DO nut up and push the Red "Submit Form" button, it will usually send the thing to us (and also back to them at the "required email address" they furnished on the form, thats what the folks at the "fillable forms place" do) so, if it's performing it's functions, why it is having to complain?. What are we doing wrong?....and how can I fix it?...Will re-compiling it or saving it as a newer version of "FormsCentral" correct any of these problems ?
    Ok, so that should keep you busy for a minute and we can start out with those problems...but the next thing is, how can I take advantage of YOUR re-direct & hosting services?, And will it get rid of the error messages, and the slowness, and the iOS incompatibilities ? (amazingly,  the last iOS Reader version worked almost OK.. but the newest version doesnt seem to work with my form on my iphone4)  If it will enable any version of the iOS to send my form correctly and more transparently, then it might be worth the money...$14.95 a MONTH you say. hmmmmm...Better be good.
    Another problem is, that I really don't need 5000 forms a month submitted. I think its like 70-100 or less....Got any plans for that?  Maybe I'm just not BIG ENOUGH to use Adobe's services, however in this case, I really don't care whose I do use as long as the product works most correctly for my customers as well as us. Like I said, If I'm doing the best I can, I won't change anything, and still use the other third party, If Adobe has a better solution, then i'm all for that as well. In the meantime, Thanks for any help you can provide on this...
    Michael Corman
    VinylCouture.com
    (706) 326-7911

Maybe you are looking for

  • "Recently added" playlist no longer capturing podcasts

    Within the last 10 days, after downloading the newest version of iTunes to my Nano, I found that my "recently added" playlist contained only music tracks. Until the new download, the "recently added" music playlist HAD contained both music and podcas

  • Invalid column name in my trigger -- why do I get this error?

    I have a table called ConfNums_Exec which contains a column named ReportType (varchar(50)).  Here is the trigger I am trying to create but get  the error that ReportType is an invalid column.  What am I doing wrong? create trigger dbo.ins_ExecConfNum

  • COMMIT

    Hi, I want to do a test, I loaded a table in DB2 from another table with 600,000 records, The problem is that there is many records and an error occurs, error+ --> Virtual storage or database resource is not available How it is possible to complete t

  • How do I set my text notification to just a vibration?

    Im not even sure if this is possible, but I just want my text notification to be a vibration instead of a sound. I've tried putting the vibrate option on and text sound to 'None', but it doesn't work.

  • All my website disapeared! Help!!!

    Help! After a minor change in my homepage (http://web.me.com/cmorzier) all my sites and blog (http://web.me.com/cmorzier/Site/Blog/Blog.html) disapeared from the internet! I get that message: "Looking for something on MobileMe?" etc... Even my galler