Hidden/Visible text fields in saved PDF

I got some very helpful advice yesterday about deleting content from hidden boxes (text fields). I have another related problem that somebody might have an answer for. I have text fields that are hidden or visible depending on selections made in drop-down lists. This is working fine but I've noticed something strange. When a user completes the form, saves it, closes it, and re-opens it--all of the text boxes are visible. Has anyone run across this? If so--is there some script I can add to fix this?
//Clear out the StaticLocation DropDown list
StaticLocation.rawValue = "";
StaticLocation.clearItems();
switch (this.rawValue)
     case "Top Center  ":
          StaticLocation.addItem("Lower Right");
          StaticLocation.addItem("None");
          break;
     case "Lower Right":
          StaticLocation.addItem("Top Center  ");
          StaticLocation.addItem("None");
          break;     
     case "Top Center":
          StaticLocation.addItem("Lower Left");
          StaticLocation.addItem("None");
          break;
     case "Lower Left":
          StaticLocation.addItem("Top Center");
          StaticLocation.addItem("None");
          break;
//TextFields 1a-4a
if (this.rawValue == "Top Center")
     TextField1a.presence = "visible";
else
     TextField1a.presence = "hidden";
     TextField1a.rawValue = ""; 
if (this.rawValue == "Lower Left")
     TextField2a.presence = "visible";
else
     TextField2a.presence = "hidden";
     TextField2a.rawValue = ""; 
if (this.rawValue == "Top Center  ")
     TextField3a.presence = "visible";
else
     TextField3a.presence = "hidden";
     TextField3a.rawValue = ""; 
if (this.rawValue == "Lower Right")
     TextField4a.presence = "visible";
else
     TextField4a.presence = "hidden";
     TextField4a.rawValue = "";
//TextFields 1b-4b
if (this.rawValue == "Top Center")
     TextField1b.presence = "visible";
else
     TextField1b.presence = "hidden";
     TextField1b.rawValue = "";
if (this.rawValue == "Lower Left")
     TextField2b.presence = "visible";
else
     TextField2b.presence = "hidden";
     TextField2b.rawValue = ""; 
if (this.rawValue == "Top Center  ")
     TextField3b.presence = "visible";
else
     TextField3b.presence = "hidden";
     TextField3b.rawValue = "";
if (this.rawValue == "Lower Right")
     TextField4b.presence = "visible";
else
     TextField4b.presence = "hidden";
     TextField4b.rawValue = ""; 
//TextFields 1c-4c
if (this.rawValue == "Top Center")
     TextField1c.presence = "visible";
else
     TextField1c.presence = "hidden";
     TextField1c.rawValue = ""; 
if (this.rawValue == "Lower Left")
     TextField2c.presence = "visible";
else
     TextField2c.presence = "hidden";
     TextField2c.rawValue = "";
if (this.rawValue == "Top Center  ")
     TextField3c.presence = "visible";
else
     TextField3c.presence = "hidden";
     TextField3c.rawValue = "";
if (this.rawValue == "Lower Right")
     TextField4c.presence = "visible";
else
     TextField4c.presence = "hidden";
     TextField4c.rawValue = "";
//TextFields 1d-4d
if (this.rawValue == "Top Center")
     TextField1d.presence = "visible";
else
     TextField1d.presence = "hidden";
     TextField1d.rawValue = "";
if (this.rawValue == "Lower Left")
     TextField2d.presence = "visible";
else
     TextField2d.presence = "hidden";
     TextField2d.rawValue = ""; 
if (this.rawValue == "Top Center  ")
     TextField3d.presence = "visible";
else
     TextField3d.presence = "hidden";
     TextField3d.rawValue = "";
if (this.rawValue == "Lower Right")
     TextField4d.presence = "visible";
else
     TextField4d.presence = "hidden";
     TextField4d.rawValue = "";
//TextFields 1e-4e
if (this.rawValue == "Top Center")
     TextField1e.presence = "visible";
else
     TextField1e.presence = "hidden";
     TextField1e.rawValue = ""; 
if (this.rawValue == "Lower Left")
     TextField2e.presence = "visible";
else
     TextField2e.presence = "hidden";
     TextField2e.rawValue = "";
if (this.rawValue == "Top Center  ")
     TextField3e.presence = "visible";
else
     TextField3e.presence = "hidden";
     TextField3e.rawValue = ""; 
if (this.rawValue == "Lower Right")
     TextField4e.presence = "visible";
else
     TextField4e.presence = "hidden";
     TextField4e.rawValue = "";
//TextFields 1f-4f
if (this.rawValue == "Top Center")
     TextField1f.presence = "visible";
else
     TextField1f.presence = "hidden";
     TextField1f.rawValue = ""; 
if (this.rawValue == "Lower Left")
     TextField2f.presence = "visible";
else
     TextField2f.presence = "hidden";
     TextField2f.rawValue = ""; 
if (this.rawValue == "Top Center  ")
     TextField3f.presence = "visible";
else
     TextField3f.presence = "hidden";
     TextField3f.rawValue = "";
if (this.rawValue == "Lower Right")
     TextField4f.presence = "visible";
else
     TextField4f.presence = "hidden";
     TextField4f.rawValue = ""; 
//TextFields 1g-4g
if (this.rawValue == "Top Center")
     TextField1g.presence = "visible";
else
     TextField1g.presence = "hidden";
     TextField1g.rawValue = ""; 
if (this.rawValue == "Lower Left")
     TextField2g.presence = "visible";
else
     TextField2g.presence = "hidden";
     TextField2g.rawValue = ""; 
if (this.rawValue == "Top Center  ")
     TextField3g.presence = "visible";
else
     TextField3g.presence = "hidden";
     TextField3g.rawValue = ""; 
if (this.rawValue == "Lower Right")
     TextField4g.presence = "visible";
else
     TextField4g.presence = "hidden";
     TextField4g.rawValue = "";
//TextFields 1h-4h
if (this.rawValue == "Top Center")
     TextField1h.presence = "visible";
else
     TextField1h.presence = "hidden";
     TextField1h.rawValue = ""; 
if (this.rawValue == "Lower Left")
     TextField2h.presence = "visible";
else
     TextField2h.presence = "hidden";
     TextField2h.rawValue = ""; 
if (this.rawValue == "Top Center  ")
     TextField3h.presence = "visible";
else
     TextField3h.presence = "hidden";
     TextField3h.rawValue = ""; 
if (this.rawValue == "Lower Right")
     TextField4h.presence = "visible";
else
     TextField4h.presence = "hidden";
     TextField4h.rawValue = ""; 
//TextFields 1i-4i
if (this.rawValue == "Top Center")
     TextField2i.presence = "visible";
else
     TextField2i.presence = "hidden";
     TextField2i.rawValue = "";     
if (this.rawValue == "Lower Left")
     TextField1i.presence = "visible"; 
else
     TextField1i.presence = "hidden";
     TextField1i.rawValue = "";  
if (this.rawValue == "Top Center  ")
     TextField4i.presence = "visible";
else
     TextField4i.presence = "hidden";
     TextField4i.rawValue = ""; 
if (this.rawValue == "Lower Right")
     TextField3i.presence = "visible";
else
     TextField3i.presence = "hidden";
     TextField3i.rawValue = "";
----- form1.#subform[0].VariableLocation::ready:layout - (JavaScript, client) ----------------------
if (TrimSize.rawValue == null) {VariableLocation.access = "readOnly";}
else {VariableLocation.access = "open";}
//1a-4a
if (VariableLocation.rawValue == null)
     TextField1a.presence = "hidden";
if (VariableLocation.rawValue == null)
     TextField2a.presence = "hidden";
if (VariableLocation.rawValue == null)
     TextField3a.presence = "hidden";
if (VariableLocation.rawValue == null)
     TextField4a.presence = "hidden";
//1b-4b
if (VariableLocation.rawValue == null)
     TextField1b.presence = "hidden";
if (VariableLocation.rawValue == null)
     TextField2b.presence = "hidden";
if (VariableLocation.rawValue == null)
     TextField3b.presence = "hidden";
if (VariableLocation.rawValue == null)
     TextField4b.presence = "hidden";
//1c-4c
if (VariableLocation.rawValue == null)
     TextField1c.presence = "hidden";
if (VariableLocation.rawValue == null)
     TextField2c.presence = "hidden";
if (VariableLocation.rawValue == null)
     TextField3c.presence = "hidden";
if (VariableLocation.rawValue == null)
     TextField4c.presence = "hidden";
//1d-4d
if (VariableLocation.rawValue == null)
     TextField1d.presence = "hidden";
if (VariableLocation.rawValue == null)
     TextField2d.presence = "hidden";
if (VariableLocation.rawValue == null)
     TextField3d.presence = "hidden";
if (VariableLocation.rawValue == null)
     TextField4d.presence = "hidden";
//1e-4e
if (VariableLocation.rawValue == null)
     TextField1e.presence = "hidden";
if (VariableLocation.rawValue == null)
     TextField2e.presence = "hidden";
if (VariableLocation.rawValue == null)
     TextField3e.presence = "hidden";
if (VariableLocation.rawValue == null)
     TextField4e.presence = "hidden";
//1f-4f
if (VariableLocation.rawValue == null)
     TextField1f.presence = "hidden";
if (VariableLocation.rawValue == null)
     TextField2f.presence = "hidden";
if (VariableLocation.rawValue == null)
     TextField3f.presence = "hidden";
if (VariableLocation.rawValue == null)
     TextField4f.presence = "hidden";
//1g-4g
if (VariableLocation.rawValue == null)
     TextField1g.presence = "hidden";
if (VariableLocation.rawValue == null)
     TextField2g.presence = "hidden";
if (VariableLocation.rawValue == null)
     TextField3g.presence = "hidden";
if (VariableLocation.rawValue == null)
     TextField4g.presence = "hidden";
//1h-4h
if (VariableLocation.rawValue == null)
     TextField1h.presence = "hidden";
if (VariableLocation.rawValue == null)
     TextField2h.presence = "hidden";
if (VariableLocation.rawValue == null)
     TextField3h.presence = "hidden";
if (VariableLocation.rawValue == null)
     TextField4h.presence = "hidden";
//1i-4i
if (VariableLocation.rawValue == null)
     TextField1i.presence = "hidden";
if (VariableLocation.rawValue == null)
     TextField2i.presence = "hidden";
if (VariableLocation.rawValue == null)
     TextField3i.presence = "hidden";
if (VariableLocation.rawValue == null)
     TextField4i.presence = "hidden";

You are not saving the state of the form. You can do this programmatically but there is a facility in Designer that will do it for you. If you open the Form Properties under the File menu then click the Defaults tab, you will see a section called Scripting. In that section make sure that the "Preserve Scripting changes to for when saved" radio button is set to Automatically.
Paul

Similar Messages

  • Can I populate a text field in one PDF with the modification date of a different file ?

    Rather convoluted problem here but I'm trying to place a text field on a PDF document that serves as the main menu page for a library of interlinked PDF documents
    The complete library contains over 7,000 files and additions are added and documents changed almost daily.
    We currently use batch files to open the main menu from it's shortcut and this runs a check on a sync log file (.txt) to ascertain when the last time the user synchronised with the server to get the latest copy of the files.
    Between a certain time range they are told how long it has been since they sync'ed and are offered the option to sync before opening, after a prescribed timeframe they cannot enter without synchronising. We use Allways Sync to conduct the file synchronisation with our mother files on our server.
    What I'd like to do is take advantage of Allways Syncs automatic synchronisation options to synchronise on log on and at prescribed idle periods there after.
    This works fine but I'd like the text field on the main menu PDF to say when the last synchronisation took place - easy if the main menu is the last file modified .. just use info.modDate.
    However, the main menu is rarely modified therefore I wish to import the text to populate the text field from a different file.. either by interrogating the other files modifictaion data (though I doubt Acrobat can do this) or by simply importing some text stored in another file (a .txt file?) which has previously been created by batch file commands.
    Any assistance would be greatly appreciated.
    Regards,
    Nifty Styles
    (Norfolk, England)
    P.S.  I'm using Acrobat 8.3.1. Professional on Windows XP (SP3).

    Thank you for all your help above.
    Just to confirm your advice, am I right with the following conclusions? :
    1. The script (function) to fill the text field with the modification date of a different PDF file needs to be stored in a folder level .js file.
    2. The document containing the text field needs to call the .js function either within the document script or within the custom script property of the text field itself.
    Further to that can you just advise on the syntax for accessing the modification date of the other document.
    Do I need to assign a variable to the address of the file to be used, and then use this variable in the text form filling script (as below) or can I use a direct file reference at the .modDate command.
    var LastSync = "C:\sync\bin\lastsync.pdf";
    var strMsg = util.printd("h:MM tt",LastSync.modDate) + " on ";
    strMsg += util.printd("dddd, d mmmm, yyyy",LastSync.modDate);
    this.getField("LastSyncDate").value = strMsg;
    If the syntax is totally different to the above I would be very grateful for some guidance in the right direction.
    I much appreciate your time to help me ... I'm almost there.
    Kind Regards,
    Nifty

  • Does anyone know how I can create a text field in a pdf document that will multiply a total in another box?

    does anyone know how I can create a text field in a pdf document that will multiply a total in another box? I’m making an interactive pdf for an order form (attached), and I need to find a way for the “total quantity” number to multiply by 9 and total in the “Amount Due” box.

    Hey Gary,
    Have a look at this post: Re: horizontal scrolling similar to excel
    Andy's reply will show you how to make a table scroll horizontally, but it will be tough to accomplish it in some sort of easily replicable way. I am working on a JQuery extension that will help accomplish this, but I have had my time invested in another project at the moment.
    Good Luck,
    Tyson

  • Number of visible text fields

    Hi all,
    Trying to upload document numbers from Excel into SAP via transaction F-03 using SAP GUI Scripting.
    My approach is to enter values one by one and press Enter when the last visible text field is reached. Then enter another batch of values, press Enter and so on..
    The problem is that I do not know how to get that event when the last visible field is reached.
    I know the solution but for tables when you can count a number of visible rows (.visibleRowCount).
    Thanks in advance.

    Hi Dmitry,
    in this case, I would proceed as follows:
    1. before the position command the system error handling switch off with
    on error resume next
    2. behind the position command the test of error number with
    if err.number < 0 or err.number > 0
    For example:
    on error resume next
    err.clear
    'position command from existing script
    if err.number > 0 or err.number < 0  then
    'processing . . .
    end if
    on error goto 0
    Declaration on the solution: In a non-relevant line will it not work. This one can evaluate it.
    Regards,
    ScriptMan
    Edited by: ScriptMan on Apr 19, 2010 7:36 PM

  • Text fields combining when PDF is saved and reopened

    This has been a source of great frustration for not just me, but my coworkers working on the same documents.  I individually create text fields in a spreadsheet/table format either initially in MS Word and converting to PDF, or create them in Acrobat while editing the document. 
    After I save the document and open it later to edit, the text fields are combined arbitrarily, usually close or touching fields are combined, such as parts of a column, but sometimes single letters from other fields get combined.  At the same time, some other text fields will sometimes get split into individual rows. 
    Beyond looking messy when I want to edit these fields, the main problem i have in these cases is that whenever i try  to edit these now combined text fields, the text and/or format of the field will get jumbled, thus making it impossible to edit.
    Anyone else had this problem or know how to prevent it?

    Hi - yes Iv'e tried in in several events inc 'Initialize' anbd 'Layout Ready', 'Doc Ready' - just cant seem to get it to work.
    Here is the troublesome portion of the form, if you add some impact ratings the color will change, then save and close the form, reopen and the color formatting is lost
    Dropbox - BIA Impacts for forum.pdf
    Any help appreciated
    Thanks
    E

  • End user have ability to change font style in text field of interactive pdf form?

    Does the end user of an interactive pdf form able to change the font style, i.e.: make something bold or underline a word in a text field?
    I am making a form with text fields and the end user would like the ability to make something bold or underline it.. I do not see anywhere in acrobat that allows styles to be changed.
    I have created the form in Indesign > saved it as an interactive pdf and brought it into Acrobat.

    Thank you for the quick response! Do you set this in Indesign before exporting or do you set this in Acrobat? I am in Acrobat 10.1.10 and when I go to properties it doesn't give me  'options' to choose from.

  • How does one change the "rollover" value in text field of fillable PDF

    I have a fillable PDF, and the values displayed when rolling the pointer over a fillable text field are showing some strange values.  I inherited this form from someone who is no longer with the company.  I need to be able to change the values but can't figure out how.  I'm new to LiveCycle so any help is greatly appreciated.

    I guess you are referring to "Tool Tip" you can update those in "Accessibility" Pallet...in designer you would access this by Shift+F6.

  • How can I expand text fields in my PDF file which I built in Forms Central?

    I'm working in Windows 7 and just created my first form in Forms Central. I have many text fields that I intended for the end user to be able to type as much information in them as necessary. I selected the "multiple lines of text" setting for each of these fields. I was told by someone at Adobe a while back when I was trying to decide on learning LiveCycle Designer or using the much more user-friendly Forms Central that the form fields would not automatically expand in the PDF form, but that I would be able to click or drag on the fields manually to expand them so that, ultimately, they could be printed with all the comments, for however many pages it would take. I've exported my Forms Central form to a PDF file. However, when I type multiple lines of text in the form fields I set up to be "unlimited," I cannot get the form fields to expand. What have I done wrong? Help, please!

    We are dealing with a similar situation.  We have downloaded LiveCycle and created the form, but as we knew would happen, the changes that come for the content of the form are causing us to max our trial version, and as soon as the form needs a change outside of the trial time period, we are faced with the next dilemma, as Adobe doesn't offer to purchase a single license at a reasonable rate.  The only reason we wanted LiveCycle was for the dynamic field feature.  I plead with you to consider offering that feature in Forms Central.  The other issue that we are having is that our users sometimes need to paste a table into the expandable text field.  Is that even possible in Live Cycle?  We don't at this point need the web-based functioning that Live Cycle offers. Thank you.

  • Is there a way to import data from a specific text field in a PDF form directly into a text field in a different PDF?

    I know you can import form data from an .fdf file. Is there a way to import a specific value from that .fdf file into a text field in a separate pdf form?

    So I want the FDF to export every time the user saves or closes the PDF. Then I want the import to happen every time the user opens the PDF. That being said, this all has to work with Adobe Reader. If this is possible in anyway, I'd manage this would require some time of script. Any thoughts?

  • Linking a radio button to a text field in a pdf form

    Forgive my ignorance but does anyone know how to link a radio button to a text field in an Acobat pdf form?
    I have a series of 4 radio buttons. If you click on one of them I would like to activate a text field which you then have to fill in. In addition it would be good to have it so that if you don't click on the radio button you're not able to fill in the associated text box.
    I am a designer not a programmer so I don't know much about javascript. Can anyone help?
    Many thanks

    You might want to look at Hiding and Showing Form Fields by Thom Parker. You might also want to clear the text field when the radio button changes.

  • Multiple Column text field in Static PDF form

    Okay, I'm pulling my hair out here. I am filling a .pdf form with itextsharp using powershell scripts. All this part of the issue is working fine.
    My problem is that I have the following data:
    A3015400R-2,A3015318R-1,A3015318R-2,A3015336R-1,A3015423R-1,A3015423R-2,A3015486R-1,A30153 06R-1,A3015240R-1,A3015102R-1,A3015333R-1,A3015120R-1,A3015158R-1,A3015333R-1,A3015400R-3, A3015400R-6,A3015400R-7,A3015234R-1,A3015234R-2,A3015400R-9,A3015306R-5,A3015311R-1,A30154 00R-2,A3015318R-1,A3015318R-2,A3015336R-1,A3015423R-1,A3015423R-2,A3015486R-1,A3015306R-1, A3015240R-1,A3015102R-1,A3015333R-1,A3015120R-1,A3015158R-1,A3015333R-1,A3015400R-3,A30154 00R-6,A3015400R-7,A3015234R-1,A3015234R-2,A3015400R-9,A3015306R-5,A3015311R-1
    That I would like to be displayed in columns across the page within one text field. So that the text field would look like this (approximately):
    A3015400R-2
    A3015318R-1
    A3015318R-2
    A3015336R-1
    A3015423R-1
    A3015423R-2
    A3015486R-1
    A3015306R-1
    A3015240R-1
    A3015102R-1
    A3015333R-1
    A3015120R-1
    I have the data sorted before I populate, so they go in numerical order, and i would like the be able to read them from top to bottom, left to right.
    I just can't figure out how to either:
    a) add multiple columns like I add multiple lines inside a text field
    or
    b) have multiple text fields linked together to thread the text input from fieldA to fieldB
    Any help would be much appreciated.
    edit: The data is actually in this format:
    A3015400R-2
    A3015318R-1
    A3015318R-2
    A3015336R-1
    A3015423R-1
    A3015423R-2
    A3015486R-1
    A3015306R-1
    A3015240R-1
    A3015102R-1
    A3015333R-1
    A3015120R-1
    A3015158R-1
    A3015333R-1
    A3015400R-3
    A3015400R-6
    A3015400R-7
    A3015234R-1
    A3015234R-2
    A3015400R-9
    A3015306R-5
    A3015311R-1
    A3015400R-2
    A3015318R-1
    A3015318R-2
    A3015336R-1
    A3015423R-1
    A3015423R-2
    A3015486R-1
    A3015306R-1
    A3015240R-1
    A3015102R-1
    A3015333R-1
    A3015120R-1
    A3015158R-1
    A3015333R-1
    A3015400R-3
    A3015400R-6
    A3015400R-7
    A3015234R-1
    A3015234R-2
    A3015400R-9
    A3015306R-5
    A3015311R-1
    Message was edited by: zombiejellyfish81

    Did you ever find any solutions to this problem?

  • Dynamically bind website text field values to PDF document

    Hi there,
    I am in search of a step by step tutorial on how to generate a pdf document based on values from website text fields.
    I have a form produced in Live Cycle Designer ES3 and a website in which we insert test results for our company to a MySql database.
    My thoughts was that when we have inserted values on the website we could have a link to the pdf document and the same values would
    somehow magically appear on the pdf. Have read somewhere that this can be done with XML and the use of different 3rd party programs.
    Is this possible?
    What approach would be the easiest? Perhaps someone knows about a tutorial on the matter?
    Data is stored from PHP website to MySql database. Website produced in Dreamweaver CS5
    Thanks in advance for any tips/help!
    Regards,
    Christian

    It's possible with an XFA form as well as an AcroForm, but to do the work on a server additional software is needed as you mentioned. Adobe's offering is in their LiveCycle lineup and possibly . Others from third-parties include FDFMerge, PDFlib, iText, Debenu Quick PDF Library, and others. The idea is you merge the data with the PDF on the server and serve it up or save it on the server and provide a link on the HTML page that's returned. Documentation for these libraries will include samples, but you'll also have to learn how to do this securely if that's important for the system you're putting together.

  • How to Print All Content hidden in Text Field

    Apologies if this has been answered elsewhere. I can't seem to find a solution that works
    I am trying to get a text field, which is fixed in size on screen and which includes more text than visible (contains + sign in corner) to print all the text within it.
    I'm assuming this can be done and I am simply not producing my form correctly.
    Any help greatly appreciated!
    Ken

    There are some options:
    - You can set the font size to Auto, but then you run the risk of the text being too small.
    - You can set up empty fields at the end of the form and populate them with the text just before printing. That would require a custom-made script.

  • Javascript to fill text field from other PDF form

    I am trying to figure out if it is possible to add javascript to a text field that when initiated pulls text from another field in a closed pdf in the same directory.
    For example I have a NAME field in the pdf form I am working in....
    When I initiate the script the NAME field is filled in with the same data from another PDF that is closed.

    I have looked up the 'disclosed' property and it looks like that is what I want to do..
    I have "this.disclosed = true" in a PDF with the name field. On the other PDF that I want the information replicated I am going to add a javascript to an action somewhere on the document, my problem is which script do I use to get this data from the other pdf?  Is the pdf that is now accessible via javascript (disclosed) a data object?

  • How can I change the content of a text field in a PDF form with a defined variable?

    Hello all!
    First time poster, and getting pretty frustrated with trying to figure out this one issue. Here is the scenario: I am using Acrobat 10 Pro to design what is essentially a giant order form. I designed the document in InDesign, defined the various buttons and whatnot and then exported it to Acrobat to continue building the form.
    I have a Radio Button group called "conference_opportunities" which contains different options at different price points, so they are all named the same, but have different values (so that they belong to the same group and only one can be selected at a time).
    What I have done is created a "MouseDown" event on the radio button that sets a variable called "ConferenceOpportunity" which is equal to the title of the option they are picking. I then want to take that variable and display it in a text box called "Conference_Option". I am using a variable because the values of my radio buttons are all the actual prices of the option they are picking, so I can't define the value as the title of the option.
    So its an array of radio buttons, and at the bottom of the page there is the Option They Selected, the quantity (which can change) and the value (in dollars)
    I also then want to display this variable at the end of the document as a sort of summary of everything they chose to purchase as well but I imagine its the same code.
    I am not an expert Javascript person at all, so any code snippets would help greatly. I have looked over the Adobe Document on the SDK and API and have not been able to find a solution. I have also turned to the almighty google and still no luck.
    Any help would be greatly appreciated!
    Thanks Everyone

    All you now have to do is use that variable to the value property of your text field... So add this at the end of your code:
    this.getField("Conference_Option").value = ConferenceOpportunity;
    Also, I would use MouseUp, not MouseDown.

Maybe you are looking for

  • DMEE Output File missing records

    I'm trying to create a flat file to send payment information to the Bank. I create a format tree that correspond to the Bank Layout using DMEE1 tcode. The request is create a flat file in which only detail records are stored (no headers are needed).

  • Incorrect Where Clause being set in Master Block

    I got a strange error the other day. I have 2 database blocks in a form and the blocks are based on views. So, lets say Block1 is based on View1 and Block2 is based on View2. Block1 and Block2 are also in a Master Detail relationship. So, Block B1 is

  • Homehub 4 only works for 45 seconds

    New account with BT. Phone and homehub connected to master socket and phone works OK. Homehub works for 45 seconds then flashes red. Tried everything, download help software, talked to BT help line who went through switch off, reconnect, is it a mast

  • SMB file sharing to SBS 2011 broken?

    After upgrading to mountain lion, I am unable to mount SMB shares from my windows SBS 2011. When I use "connect to server" in the go menu, I get the screen to authenticate, I type the correct server user name and password, and then it cannot connect.

  • Probleme mit Adobe PDF Conversion Settings, kann nichts einstellen

    Hallo, ich habe Acrobat 9 Standart auf Windows 7 installiert. Nun lassen sich keine PDFs drucken und wenn ich in die Einstellungen (Adobe PDF Conversion Settings) gehe, sind die Felder leer (siehe Bild). Ich kann auch keine Einstellungen vornehmen. W