Help on Form Actionscript

I really need help on this one thing. The titles come to my
email but the typed info from viewer does not. Must be something in
the Actionscript for the form or submit button. Mary Alice
Php seems fine because the form titles come to my email. Just
need help with the customer typed info so it can come to my email
too. Any experienced Actionscript person should be able to help me
on this, I would think.
See the Actionscript below:

Mary I'd answered your previous post:
http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=15&catid=288&threadid =1315529&enterthread=y

Similar Messages

  • Help with form sending the data to email

    I have looked all over the Internet for help with this.  I have tried numerous video tutorials and for some reason I can't get it to work.  I have created a form in flash cs4 AS2.  It is a contact information form where the user fills out their information and sends it.  I have created a the form in a movie clip (I have also tried it not in a movie clip) with the form components inside that movie clip.  I have given each component on the form an instance name.
    The form has:
    Full name (with instance name=name)
    Company (with IN =company)
    Title (with IN = title)
    Phone (with IN = phone)
    Email (with IN = email)
    Topic combobox (with IN=topic)
    Message box (with IN=msg)
    Submit button (with IN=submit)
    I need help with the actionscript writing.  I am VERY new to flash and have never done any scripting really.  Does anyone have a sample file I can look at to see how it works or can someone IM me and I can send my file for them to help me?
    My IM is logan3975
    Any help is greatly appreciated.  I consider myself a pretty technical person so I do learn quick...I just need some guidance until I wrap my head around how this all works.  Thanks.

    Here's a link to a posting elsewhere some had had that may provide some useful info (?)
    http://board.flashkit.com/board/showthread.php?t=684031

  • Help required "Forming Packets od data "

    Hello
    i need help in forming packets from data which is read from aport and transfer those packets to the another server.
    can any one one help me ,which java class can be used for this.

    (crappy forum)
    Double post:
    http://forum.java.sun.com/thread.jspa?threadID=728704

  • Is it possible to customize dff's with the help of form personalization?

    Is it possible to customize dff's with the help of form personalization.
    I have added few dffs in a form which users want to be customized according tho their choices.
    Can any one help me in this.

    Pl see MOS Doc 420518.1 - section 10

  • Help in forming SOAP message for Bpel process

    Hi,
    I have a following schema file - UnpackMessage.xsd
    <?xml version="1.0" encoding="windows-1252"?>
    <schema xmlns="http://www.w3.org/2001/XMLSchema"
    targetNamespace="http://www.w3.org/2001/XMLSchema/UnpackMessage"
    xmlns:tns="http://www.w3.org/2001/XMLSchema/UnpackMessage"
    elementFormDefault="qualified">
    <complexType name="PackHandlerProcessRequestType">
    <sequence>
    <element name="instanceId" type="string"/>
    <element name="activityName" type="string"/>
    <element name="result" type="string"/>
    </sequence>
    </complexType>
    <element name="PackHandlerProcessRequest" type="tns:PackHandlerProcessRequestType"/>
    </schema>
    and the following wsdl file for a bpel process
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <definitions name="PackManagerWSDL"
    targetNamespace="http://xmlns.oracle.com/PackManager"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/"
    xmlns:client="http://xmlns.oracle.com/PackManager"
    xmlns:tns="http://xmlns.oracle.com/PackManager"
    xmlns:ns2="urn:UnpackHandler"
    xmlns:ns3="http://www.w3.org/2001/XMLSchema/UnpackMessage">
    <types>
    <schema attributeFormDefault="qualified" elementFormDefault="qualified"
    targetNamespace="http://xmlns.oracle.com/PackManager"
    xmlns="http://www.w3.org/2001/XMLSchema"
    >
    <import namespace="http://www.w3.org/2001/XMLSchema/UnpackMessage" schemaLocation="UnpackMessage.xsd"/>
    <element name="PackManagerProcessResponse">
    <complexType>
    <sequence>
    <element name="result" type="string"/>
    </sequence>
    </complexType>
    </element>
    </schema>
    </types>
    <message name="PackManagerRequestMessage">
    <part name="payload" type="ns3:PackHandlerProcessRequestType"/>
    </message>
    <message name="PackManagerResponseMessage">
    <part name="payload" element="client:PackManagerProcessResponse"/>
    </message>
    <portType name="PackManager">
    <operation name="initiate">
    <input message="client:PackManagerRequestMessage"/>
    </operation>
    </portType>
    <portType name="PackManagerCallback">
    <operation name="onResult">
    <input message="client:PackManagerResponseMessage"/>
    </operation>
    </portType>
    <plnk:partnerLinkType name="PackManager">
    <plnk:role name="PackManagerProvider">
    <plnk:portType name="client:PackManager"/>
    </plnk:role>
    <plnk:role name="PackManagerRequester">
    <plnk:portType name="client:PackManagerCallback"/>
    </plnk:role>
    </plnk:partnerLinkType>
    </definitions>
    The receive activity in bpel process expects input message "PackManagerRequestMessage" of type "PackHandlerProcessRequestType"
    Now on invoking the Bpel process directly by using the console ... the default input to the process looks like this -
    <payload xmlns="" xmlns:def="http://www.w3.org/2001/XMLSchema/UnpackMessage"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:type="def:PackHandlerProcessRequestType">
    <instanceId xmlns="http://www.w3.org/2001/XMLSchema/UnpackMessage">600</instanceId>
    <activityName xmlns="http://www.w3.org/2001/XMLSchema/UnpackMessage">receive</activityName>
    <result xmlns="http://www.w3.org/2001/XMLSchema/UnpackMessage">ok</result>
    </payload>
    and the receive activity gets the following as input (as taken from Flow in bpel console)
    <ReceiveInput_initiate_InputVariable>
         <part name="payload" >
              <payload xsi:type="def:PackHandlerProcessRequestType" >
                   <instanceId>800</instanceId>
                   <activityName>receive</activityName>
                   <result/>
              </payload>
         </part>
    </ReceiveInput_initiate_InputVariable>
    But when i invoke the same process using a SOAP message which looks like
    <?xml version = "1.0" encoding = "UTF-8"?>
    <SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ns2="http://www.w3.org/2001/XMLSchema/UnpackMessage" xmlns:xsd="http://www.w3.org/1999/XMLSchema">
    <SOAP:Body>
    <payload xmlns="" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="def:PackHandlerProcessRequestType">
    <ns2:instanceId>600</ns2:instanceId>
    <ns2:activityName>receive</ns2:activityName>
    <ns2:result>OK</ns2:result>
    </payload>
    </SOAP:Body>
    </SOAP:Envelope>
    the receive activity now gets the following as input (taken from Flow in bpel console)
    <ReceiveInput_initiate_InputVariable>
    <part name="payload">
    <ns1:instanceId>600</ns1:instanceId>
    </part>
    </ReceiveInput_initiate_InputVariable>
    So i am losing input data. Can someone help me form appropriate SOAP message for this ?
    Thanks,
    Srini

    Thanks Marc,
    The SoapUI is really useful. The SOAP request as generated by the SoapUI for above case is
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:add="http://schemas.xmlsoap.org/ws/2003/03/addressing" xmlns:pack="http://xmlns.oracle.com/PackManager" xmlns:unp="http://www.w3.org/2001/XMLSchema/UnpackMessage">
    <soapenv:Body>
    <pack:initiate>
    <payload>
    <unp:instanceId>800</unp:instanceId>
    <unp:activityName>receive</unp:activityName>
    <unp:result/>
    </payload>
    </pack:initiate>
    </soapenv:Body>
    </soapenv:Envelope>
    and the input received at BPEL was as expected.
    Thanks a lot.
    Srini.

  • Help on custom actionscript component

    Hi All,
    I need to create a dynamic form which has multiple pages each
    page will be displayed in separate tabs and has individual
    controls. On submit of a a button i need to trace the data entered
    in the controls for each Tab. The numer of Tabs and controls will
    vary depending on criteria (reading from an XML).
    Sample xml data below -
    <Tab tabid="App_Form_01_Tab_02" name="Tab 2"
    label="Product Information" taborder="2">
    <Section sectionid="App_Form_01_Tab_02_Sec_01"
    name="Contract" orderontab="1">
    <Attrtype name="SingleLineofText" defval="This is single
    line text" maxchar="35" maxlines="1" inputtype="TextInput"
    attrlabel="Attribute 1"></Attrtype>
    <Attrtype name="MultipleLinesofText" defval="This is
    multi line text" maxchar="" maxlines="4" inputtype="TextArea"
    attrlabel="Attribute 2"></Attrtype>
    </Section>
    </Tab>
    <Tab tabid="App_Form_01_Tab_03" name="Tab 2" label="New
    Tab" taborder="3">
    <Section sectionid="App_Form_01_Tab_02_Sec_01"
    name="Contract" orderontab="1">
    <Attrtype name="SingleLineofText" defval="This is single
    line text" maxchar="35" maxlines="1" inputtype="TextInput"
    attrlabel="Attribute 1"></Attrtype>
    </Section>
    </Tab>
    I tried developing the above UI by creating custom
    actionscript components by extending existing UI components such as
    TabNavigator/VBox and added children at each stage until I reached
    the actual form control info using which I am creating the
    controls.
    So the child creation is following -
    MyTabnavigator->MySectionTabs(VBox)->MySections(VBox)->MySectionAttributes(HBox)->TextInp ut
    I have instantiated the MyTabNavigator comp from the mxml
    using <MyTabNavigator/> tag. This is displaing the dynamic
    form the way I need but now I have to access the text value entered
    into the TextInput. I tried to access the TextInput from a method
    written within a script block in the main application mxml. I am
    not able to do that.
    Could anyone please advise me on this.
    Test Link -
    http://dev.eforceglobal.com/test/paromita/bin/TestActionscriptComps.html
    (this also has the sample view source code)
    Am I doing this the wrong way?
    Please help.
    Regards,
    Paromita.

    Since you're using a scrollpane you should simply limit the dimensions of the visible part (JViewPort).
    yourScrollPane.getViewport().setPreferredSize(.......);

  • CFMX flash forms & actionscript

    I'm sure this has been asked somewhere else, but I didn't see
    a topic on it.
    Using a cfform format=flash....there is a subset of the
    actionscript language that is available for use. Is there a listing
    somewhere of what is included in this subset, or any documentation
    on this? When I'm writing an AS function, it would be nice to know
    that either (1) the AS I'm trying to use isn't supported in that
    subset or (2) it is supported, but I've just made a type or
    something in my code. Most often, when either of these things
    happens, my form just won't display which can make it tough to
    track down the problem.
    Any help, or a point in the right direction would be
    great!!

    The
    words
    that Coldfusion's flash compiler prohibits have to do with the
    creation of new objects. They are
    new
    import
    delete
    createChild
    loadmovie
    duplicateMovieClip
    AttachMovie
    registerclass
    createTextField
    __proto__
    To get one decimal place, multiply by 10 and divide by 10. To
    get two decimal places, multiply by 100 and divide by 100, and so
    on. You will find more in this
    technote
    about rounding to specific decimal places in Flash

  • Need help with form calculations

    I'm converting a non-editable PDF form into an editable one and could use some help as I'm am new to this. Note: I did not create the non-editable form, It's a form I downloaded and use in my business.
    I already figured out how to create text fields in the already created PDF non-editable form, now I'm trying to add in calculations. I can create the (value is the) calculations between 2 or more text fields, but now I need to multiply one text field by the number 3 and have the answer show up in another text field.
    Example:
    I'll use the letters A & B for the text filed names in my example.
    I have text field A calculating the sum of other text fields using the (value is the sum of) option under the (calculate properties box.)
    Now I want text field B to multiply text field A by a fixed number of 3.  (A=24) x 3=72. I need text field B to have the answer of 72 in it.
    I need text field B to always multiply text field A by 3.
    Does anyone know how I can accomplish this?
    I'm using Adobe 8 Pro.
    Please note that I have no experiance using custom calculation script if that is the only way this will work and will step by step instruction on how to write the code.
    Thank you very much.

    You can use the simplified field notation option. In this case, you'd enter:
    3 * A
    Where "A" the the exact name of the A field. It is best to avoid spaces and any other special characters for any fields that you'll want to include when using simplified field notation option.

  • PLEASE HELP: PDF Forms, creating average formula for text?

    Hello,
    I really hope somone can help. I cannot find any answers to my questions on the internet, google etc.
    First time using Acrobat. Im pretty quick learning on compters however the formulas my boss has asked me to do I have no idea if they are possible.
    We have a report form for exams and each section I need to calculate the average mark for that section.
    There are 3 questions for the first section. There are dropdowns for distinction, Merit, Pass and Below pass to select for each questions.
    Please see picture attached to show you what I mean.
    I want to be able to calculate the most selected/average dropdowns selected and not count the N/A's into award1 field?
    The fields must be text and cannot be numbers.
    so for example, track 1 got a distinction, track 2 got a Merit, Track 3 got a distiction. all other fields left n/a
    is there anyway to do this also is there any way to exactly the same as above as check boxes? - please see picture attached
    I appriciate any help. I am working on a mac
    Thanks
    Lauren

    Thank you so much reply
    Yes on the dropdowns the distincion, merit, pass or below pass values are in the correct areas ready for selection. For example on the distiction row you can only drop down for distinction and so on for Merit row dropdowns etc
    Check box is the way I rather do it as its quicker, however I created the dropdown option just incase check boxes average was not possible
    On the check boxes if i select merit for rtack 1 I would just tick the box and leave the the rest of the colum blank with no ticks. So just by seeing the tick I know its in the merit section for Track 1. However I donts know if I can do an average formula for with check boxes.
    If I check boxed/slected distinction for track 1, distnction for track 2 and merit for track 3 (obvisley any box could be ticked depeneding how the exam went so need then all in the script). I would like it to then calculate the avergae mark which would be distinction in the award1 field. While the none ticked boxes or N/A fields not affecting the average.
    This is just the start to a huge form Im doing Im dreading the rest of formulas I have to do lol
    sorry if im confusing you

  • HELP! Form-Report integration problem!

    Hi all, I have a problem in integrating report in dev10i. I used to use Dev6i and have no problem in using run_report_object in 6i. I have posted this in Report for few days but haven't got response.
    I got the REP-0503 You did not specify the name of the report and FRM-40738 Argument 1 to builtin Report_Object_Status can not be null. The report run OK in report builder and I create the paper only layout. Also, I save the report as *.rdf and create a report object in form that point to this *.rdf file.
    This is my PL/SQL code:
    PROCEDURE P_PRINT_REPORT_OBJ(vc_reportoj Varchar2, vc_reportserver Varchar2, vc_runformat Varchar2) IS
    v_report_id Report_Object;
    vc_ReportServerJob VARCHAR2(100);
    vc_rep_status VARCHAR2(100);
    vjob_id VARCHAR2(100);
    BEGIN
    v_report_id := FIND_REPORT_OBJECT(vc_reportoj);
    SET_REPORT_OBJECT_PROPERTY(v_report_id, REPORT_COMM_MODE, SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(v_report_id, REPORT_DESTYPE, CACHE);
    SET_REPORT_OBJECT_PROPERTY(v_report_id, REPORT_DESFORMAT, vc_runformat);
    SET_REPORT_OBJECT_PROPERTY(v_report_id, REPORT_SERVER, vc_reportserver);
    SET_REPORT_OBJECT_PROPERTY(v_report_id, REPORT_OTHER, XXX='||:XXX.XXX||' paramform=no');
    vc_ReportServerJob := RUN_REPORT_OBJECT(v_report_id);
    vjob_id := substr(vc_ReportServerJob,length(vc_reportserver)+2,length(vc_ReportServerJob));
    vc_rep_status := REPORT_OBJECT_STATUS(vc_ReportServerJob);
    IF vc_rep_status = 'FINISHED' THEN
    WEB.SHOW_DOCUMENT('/reports/rwservlet/getjobid'||vjob_id||'?server='||vc_reportserver, '_blank');
    ELSE
    message('Report failed with error message '||vc_rep_status);
    END IF;
    END;
    What gives? Do I miss something here? Do I have to set up other thing??? Also what is the name of report server in Dev10i? I am under impression that this is not needed so I put blank '' when I call this procedure in WHEN-BUTTON-PRESSED trigger like this:
    P_PRINT_REPORT_OBJ('myreportobj','','HTML');

    Hi all, I created simple report from 1 table and save it as *.rdf. I then make a simple form consisting 1 block and a button that have WHEN-BUTTON-PRESSED trigger that call P_PRINT_REPORT_OBJ. I create a report object in the form that point to my *.rdf report file and name the object MYREPORT. This time it gives Rep-0110 Can not open file '%n~<intangible character>' and REP-1170 Error while opening or saving a document. After that other message popup with REP-0110. It seems that FIND_REPORT_OBJECT could not find the file at all/giving the wrong filename as argument. Do I have crooked installation? I have tried it on 2 diff machine running XP2. Is this because of Win XP2? I have admin privilage user account for winXP2. Please help, this is not making a sense at all. I have no problem in Dev6i.
    PROCEDURE P_PRINT_REPORT_OBJ IS
    v_report_id                    Report_Object;
    vc_ReportServerJob               VARCHAR2(100);
    BEGIN
    v_report_id := FIND_REPORT_OBJECT('MYREPORT');
    vc_ReportServerJob := RUN_REPORT_OBJECT(v_report_id);
    END;

  • Need help on forms

    Hello ,
    I wanted some help with form6i error messages.
    I wanted to define form6i error messages within database.
    And include severity (information, warning, error, or fatal),summary and detail information with variable text substitution ,common error -handling frame work formats errors for end user display and logs error information based on severity level.
    All the form messages should be stored in table and then it will be
    Customize and will be shown to user at runtime . how should I do that?
    This is really very urgent
    Thanks in advance ….

    This forum is for posting feedback about the OTN site.
    The best place for your question is probably the Forms.

  • Help with Form F110_US_DTA for ACH file to be sent to bank

    Hi ppl,
    I'm implementing new house bank in the system for ACH payments
    the NACHA file format for that bank is given to me.
    the bank's needs a variation in the format.
    they want effective entry date in the Batch Header Record 5, Pos 70-75 to be greater than the Creation Date located in the File Header Record 1
    Im using the form F110_US_DTA for the file that is to be generated to sent to bank
    How Do I make changes to this form to satisfy the requirement
    Or basically where do I change the format of forms like F110_US_DTA etc..
    What is T-code for that...
    Thank You Very much
    your help will be appreciated
    Also tell me how can I assign you points..

    An ACH NACHA file has the following components..
    File Header Record(1)
    This gain has many fileds like Record type code, priority code, immediate destination etc
    Batch header Record(5)
    Record type code, company Identification
    Entry Detail Record(6)
    Transactioncode, Check digit etc
    Addenda Record(7)
    Record Type Code...etc
    Batch Control Record(8)
    File Control Record(9)
    Batch Count, block count etc...
    Now This is the Layout which the company wants to implement
    The commpany is already using an ACH file for an old bank.
    But wants to implement a New Bank with a lil variation of old NACHA format
    In SAP where can I set these fields or parameters.....
    for some programs I can goto System->Status and double click on program and goto ABAP editor and change fields.
    But for this ACH where can go and set the parameters according to requirements
    There is actually one more requirement...
    In the ACH file The New banks wants the
    File Creation Date (It is entry in field no 5 of File Header Record(1) of ACH file)
    this date should be less than Effective Entry DAte (It is an entry in Field no 9 in Batch Header Record(5))

  • Help with forms in Acrobat 9

    Using XP and Acrobat 9 Standard:
    I have three questions about working with forms that I don't find answered anywhere.
    1. Can I edit the info in the Document Message Bar? If so how?
    2. Can I join form fields? I want to combine a short text field on one line with a longer text field on the next line so that the info will wrap to the 2nd line. For instance, there is a short question with the rest that line being blank. Then the next line is across the whole page. I want the top line to continue onto the 2nd line. I understand checking the multi-line option in preferences for a form field that is deep enough to hold several lines, but I want that short line to be included also.
    One of my problems may be that I need to have the form available with hard lines for hand completion and also available for those who want to complete it online.
    3. Once I make a form that can be completed online, do I have to 'distribute' it? I just want to upload it to a website so members can download, complete and email as an attachment. Do I have to do anything special to accomplish this?
    Thanks for your help.
    KW

    Thanks Chris - That did EXACTLY what I wanted it to do.
    I was able to create a button that prompts the user to save the form, then it hides the price fields, then it flattens, then it e-mails the form. The order was important since I wanted the salesperson to be able to save the "not-flattened" form.
    James

  • Need help getting form created in Acrobat X to email form data back to me

    The form I created seems to work from my computer that has Acrobat X installed but when I try to submit the PDF with a computer that only has Reader installed it says "This Operation is Prohibited."
    The end users of this form will most likely only have Adobe Reader, how do I set up my form so that it is compatible with Reader?
    Thanks for your help!

    You have 2 choices and one depends on your satisfying the limits of the EULA (no more than 500 submissions basically). For the latter, you have the entire form submitted and you have to enable Reader Rights in Acrobat. On this machine (AA8), it is under the Advanced menu, not sure with AAX (I think they moved it). For the other choice that does not have the license limit, you do not activate Reader Rights, but have the data submitted as an FDF file (XML if you are using Designer, but then Designer questions should really go to the LiveCycle forum). When you receive the FDF or XML file, you simply go to the forms menu in Acrobat > Manage Data, and import the data. The FDF Toolkit also allows separate manipulation of data files.

  • Help with form validation

    Hi,
    I am new to dreamweaver and I need to create a site for the
    cafe I work for. I tried to make a form for making reservations
    online. I made a table and put the fileds inside it. It looks
    great. However, when I preview it in the browser, a javascript
    error message pops up and tells me that all the forms are required
    AS SOON AS I CLICK THE FORM TO START TYPIng. ALl forms ARE required
    but I want the message to come up only after clicking submit.
    Please help.
    Also, if anyone has an easy way to send the form infomation
    via email, it would be greatly appreciated.
    Thanks,
    Aaron
    Norfolk, VA

    Check the behaviors panel, your validation script is probably
    set to fire onFocus, in design view click on the form button, then
    set the 'Validate Form' behavior to onClick, you can select it from
    the menu. When you set the behavior most of the time DW changes to
    onFocus evan though you select onCLick.
    What scripting language are you using ASP PHP CFM, there are
    lots of products you can buy for emailing form data or look at some
    tutorials online.

Maybe you are looking for