How do I reorder the form results from a non-BC form in Muse?

I have a problem with Muse, in that the emails that get delivered from filled-in forms have various fields in the wrong order and not the order that the fields appear in the actual form.
How do I ensure the form results emails maintain the order of the fields in the form?
For example, on the www.actconstruction.com Subcontractors form, several of the fields are wildly out of order. Here's a screen capture of the form results email:
Here's the form as it appears on the site. You can see the fields are in completely different order to the results emai:
So, how do I make sure the fields follow a particular order that I want them to (i.e. in the order I placed them in the form itself)?
The form can be seen at www.actconstruction.com/contact-us.html. This shows the actual order of information. The form results email should follow the order exactly as shown on the web site.
I've had complaints from clients about this and need to handle it immediately. Please have someone get back to me with a figure-out.
Many thanks,
Len Williams
727-466-6888

I have a problem with Muse, in that the emails that get delivered from filled-in forms have various fields in the wrong order and not the order that the fields appear in the actual form.
How do I ensure the form results emails maintain the order of the fields in the form?
For example, on the www.actconstruction.com Subcontractors form, several of the fields are wildly out of order. Here's a screen capture of the form results email:
Here's the form as it appears on the site. You can see the fields are in completely different order to the results emai:
So, how do I make sure the fields follow a particular order that I want them to (i.e. in the order I placed them in the form itself)?
The form can be seen at www.actconstruction.com/contact-us.html. This shows the actual order of information. The form results email should follow the order exactly as shown on the web site.
I've had complaints from clients about this and need to handle it immediately. Please have someone get back to me with a figure-out.
Many thanks,
Len Williams
727-466-6888

Similar Messages

  • How can I improve the terrible results from Type in Photoshop?

    Hello all,
    I have a blog on which I need to add type to each and every photos for copyright purposes.
    The trouble is that the post photos are maxed out @ 144 dpi, and thus I use only sizes 6-8 for my fonts.
    The reason for the small font size is proportion. I don't want to have giant fonts for small-sized photos.
    I've attached a sample before rasterization and after illustraintg the use of this fiunction is next-to-useless.
    I've tried different permutations and combinations font,font style, crisp,smooth, shar, etc, and the results are always the same - bad.
    Either what I want can't be done, or I am doing something wrong.
    Please keep the answers just to Photoshop, as I don't have Illustrator!
    So all that vector-based to pixel-based discussion is irrelevant.
    Thanks,
    Stacey

    Hi Noel,
    I think Chris confirmed what I thought, which is that at a small-sized font at a low resolution,
    I can't get a sharply-defined type.
    In terms of answering your question, I find that the type is "soft" and lacks sharpness.
    Therefore, I either go with a larger fornt size, and also perhaps a simpler font with less curves and edge surface.
    In this way, the adjacent pixels next to the fonts won;t affect the lettering as much. e.g. a straight and vertical font.
    Thanks,
    Stacey

  • How can I remove the Location column from the search results in a .chm file?

    How can I remove the Location column from the search results in a .chm file?
    I generated the file in Robohelp HTML 9.
    As far as I know it's used when you've combined more than one source into the final help file. It is possible (though I don't remember doing it) that I did that once a couple of years ago but now I'm only using one source - the project that's generating the .chm.
    Can anyone tell me how I can remove it?
    Thanks
    Tom

    In Project Setup look at the Window properties. I think you will find Advanced Search is ticked.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • How can i pass the value one from to another form?

    hi all
    how can i pass the value one from to another form  with out use it when ever i want to needed this value that ican useit?
    like i have two fields U_test1 and U_test2  table name @AUSR
    that i have  four form  A! , A2,A3,A4    please tell me in details....?

    Hi,
    U can assign the values to some variables and access then in ur required forms.
    Vasu Natari.

  • How we can populate the form data from 2D barcode

    Hi All,
    Can anyone tell me how we can populate the form data from 2D barcode, will this can be done through script(javascript)?.
    Thanks & Regards,
    Faisal Afzal

    I was hoping someone could put me in the right direction here. I am basically doing the same . I am decodeing the information stored in a 2D Bar code and sending this information to an XML file, then I am trying to combine that xml file with a blank PDF template but the process is failing beacuse there are some additional tag fields the XML data from the  Decode->Extract XML process.
    The XML file from the decode process gives the structure below..notice therer some extra tags (lines 2- 4)
    <?xml version="1.0" encoding="UTF-8"?>
    <xdp:xdp xmlns:xdp="http://ns.adobe.com/xdp/" xmlns:xfa="http://www.xfa.org/schema/xfa-data/1.0/">
    <xfa:datasets>
    <xfa:data>
    <form1>
    The XML structure that is expected by the PDF template is as follows
    <?xml version="1.0" encoding="UTF-8"?>
    <form1>
    So the xml output of the Decode barcode + Extract XML process has three extra lines of tag. Is there a way I could use a process within liveCycle to clean out those three lines in real-time before sending the xml to be recombined with the PDF template.
    Thanks

  • How can I get the "text" field from the actionEvent.getSource() ?

    I have some sample code:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.util.ArrayList;
    public class JFrameTester{
         public static void main( String[] args ) {
              JFrame f = new JFrame("JFrame");
              f.setSize( 500, 500 );
              ArrayList < JButton > buttonsArr = new ArrayList < JButton > ();
              buttonsArr.add( new JButton( "first" ) );
              buttonsArr.add( new JButton( "second" ) );
              buttonsArr.add( new JButton( "third" ) );
              MyListener myListener = new MyListener();
              ( (JButton) buttonsArr.get( 0 ) ).addActionListener( myListener );
              ( (JButton) buttonsArr.get( 1 ) ).addActionListener( myListener );
              ( (JButton) buttonsArr.get( 2 ) ).addActionListener( myListener );
              JPanel panel = new JPanel();
              panel.add( buttonsArr.get( 0 ) );
              panel.add( buttonsArr.get( 1 ) );
              panel.add( buttonsArr.get( 2 ) );
              f.getContentPane().add( BorderLayout.CENTER, panel );
              f.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
              f.setVisible( true );
         public static class MyListener  implements ActionListener{
              public MyListener() {}
              public void actionPerformed( ActionEvent e ) {
                   System.out.println( "hi!! " + e.getSource() );
                   // I need to know a title of the button (which was clicked)...
    }The output of the code is something like this:
    hi! javax.swing.JButton[,140,5,60x25,alignmentX=0.0,alignmentY=0.5,
    border=javax.swing.plaf.BorderUIResource$CompoundBorderUIResource@1ebcda2d,
    flags=296,maximumSize=,minimumSize=,preferredSize=,defaultIcon=,disabledIcon=,
    disabledSelectedIcon=,margin=javax.swing.plaf.InsetsUIResource[top=2,left=14,bottom=2,
    right=14],paintBorder=true,paintFocus=true,pressedIcon=,rolloverEnabled=true,
    rolloverIcon=,rolloverSelectedIcon=,selectedIcon=,text=first,defaultCapable=true]
    I need this: "first" (from this part: "text=first" of the output above).
    Does anyone know how can I get the "text" field from the e.getSource() ?

    System.out.println( "hi!! " + ( (JButton) e.getSource() ).getText() );I think the problem is solved..If your need is to know the text of the button, yes.
    In a real-world application, no.
    In a RW application, a typical need is merely to know the "logical role" of the button (i.e., the button that validates the form, regardless of whether its text is "OK" or "Save", "Go",...). Text tends to vary much more than the structure of the UI over time.
    In this case you can get the source's name (+getName()+), which will be the name that you've set to the button at UI construction time. Or you can compare the source for equality with either button ( +if evt.getSource()==okButton) {...}+ ).
    All in all, I think the best solution is: don't use the same ActionListener for more than one action (+i.e.+ don't add the same ActionListener to all your buttons, which leads to a big if-then-else series in your actionPerformed() ).
    Eventually, if you're listening to a single button's actions, whose text change over time (e.g. "pause"/"resume" in a VCR bar), I still think it's a bad idea to rely on the text of the button - instead, this text corresponds to a logical state (resp. playing/paused), it is more maintainable to base your logic on the state - which is more resilient to the evolutions of the UI (e.g. if you happen to use 2 toggle buttons instead of one single play/pause button).

  • How do you reorder the pages in a PDF ie back to front (not individually via Page view)

    Sorry if this is in the wrong place or if this has been answered elsewhere but I couldn't seem to search "the database"
    How do you reorder the pages in a PDF ie back to front (not individually via Page view). The manual solution of course is to scan or import them in the correct order in the first place. However, this did not happen, and we have many PDF's which are 100% in the wrong order. So we would like to press a button and have them in the right order.
    Many thanks in advance for your help...

    Got it to work. It returned a completely different path of course just to make life interesting and required a FN+OPTION ENTER in order to return the path. I now have the FLATTEN option in the edit menu.
    Just trying it checking all the Flatten options except the fields seemed to work on the first pass. I'm going to try and load a copy of the original complete document. I assume that is the proper way to use this at this point since I created the form ***-backwards?
    I've used Adobe layout programs since the Aldus days but Acrobat seems to work differently than any other program I've used.
    If I understand what you're saying I should:
    1. Design the layout of the form leaving spaces for the fields
    2. Open Acrobat, import the document
    3. Auto-add and correct, or manually add the fields
    4. Fix tabbing
    5. Add any additional comments or annotations
    6. Flatten everything but the fields?  (If the fields are flattened I can't fill out the form unless it's supposed to be a printed form only, right?)
    Might just have to break down and RTFM.  Acrobat is a really different animal.

  • Copy the inspection  result  from one lot to multiples lots!!

    Hi SAP expert,
    I want to copy the inspection  result  from one lot to multiples lots, currently i know how to setup  the copy to another lot(SAML Response from SAP ID Service ) , but  i dont know to do to multiples lot.
    ¿Someone can help me?
    Thank you

    First you have to customizing the functionality of Copy of Inspection Results using the following path, where you have to entry the inspection types, plant .etc., where you want to have the functionality.
    SPRO -> Quality Management -> Quality Inspection -> Make Settings for Copy of Inspection Results
    Then when you are in Record Result screen you select Menu -> Edit -> Copy Inspection Results ,
    then a pop-up window is displayed and you filled in with the inspection lot which has the results and then another pop-up window is displayed to select the characteristics that you want to copy.
    A.P.

  • Sorting in iTunes changed - How do I get the former method restored?

    For a couple years I used iTunes for Windows with 2 music content folders - the normal iTunes folder(s) under my Windows profile in which I kept iTunes-purchases and iTunes CD-ripped songs, and one in c:\mp3 for unprotected ripped or purchased MP3 files. Until I made a change in iTunes, I had the following sort order properties when the corresponding header bar was clicked:
    Title
    =======
    'Wonderful
    "Dalla...
    "In Crowd...
    (I Love you) For...
    1,2,3
    101 Eastbound
    A Beautiful Morning
    Your Wildest Dreams.
    The same sort of effect was seen when sorting by Artist or Album or whatever.
    I decided I wanted ONE music folder. On advice from a magazine (Maximum PC) column, in preferences I chose to have iTunes organize my music (previously unchecked) and then in the advanced tab chose to iTunes Consolidate my music. It copied my music and everything initially looked fine. But, after looking more carefully, I saw the following new effect:
    Title
    =========
    Abilene
    Your Wildest Dreams
    1,2,3
    101 Eastbound
    99 Miles from L.A.
    and,
    Artist
    ======
    a-ha
    A3
    ZZ-Top
    10cc
    5th Dimension
    It's as if the entire sort order algorthm is different as regards punctuation and numerals. So, I unchecked the option to have iTunes "organize" my music, but the order didn't change.
    What am I missing here?? How do I get the former order back to column sorting?
    I'd appreciate any help you could give me - this is pretty annoying.
    thanks.
    Windows XP SP2
    Intel 2Mhz Core 2 Duo
    100MB H/D, 2GB RAM
    iTunes 7.3.0.54

    Get info and change the sort field(s) for one song,
    then click Apply.
    Right click the song and select Apply sort field and
    pick which you want.
    Unfortunately this is not working as intended with iTunes 7.3 for Windows (Mac too?). The "Apply Sort Field ..." does apply the new Sort Artist, Sort Album, etc. to related songs, but iTunes refuses to recognize that the songs were updated. If you check the tags, sure enough their Sort Artist, etc. have been updated, but iTunes does not seem to make use of the change. The only way I've been able to make it work is to go back into Get Info for each song and just cycle through them one-by-one without changing anything. As you cycle through, then the songs move to their proper sort order based on the updated sorting option. This wasn't the case with 7.2, so this would be a new bug.

  • How can I change the photo pixal from 1000 to 500?

    how can I change the photo pixal from 1000 to 500?

    File -> Export
    In the resulting dialogue use the Size option to set the maxium dimension to 500 pixles.
    This User Tip
    https://discussions.apple.com/docs/DOC-4921
    has details of the options in the Export dialogue.

  • How do I seperate the audio track from the video and save it to a CD in Premiere Elements 13?

    How do I seperate the audio track from the video and save it to a CD in Premiere Elements 13?

    Binbashi
    You can separate the audio track from video and save it to a DVD disc within Premiere Elements but not a CD disc.
    To do save to the audio to DVD disc, you do not have to separate linked audio video, just use the export Publish+Share/Computer/Audio and set Presets to the wanted format (AAC, AIFF, MP3, or Windows Waveform (WAV).
    You will not see Audio in the choices since it is at the bottom of the list of choices under Publish+Share/Computer/. You will need to use the thin scroll bar to the right of the choices to scroll to it.
    If you need information on selective export of Timeline content when dealing with more than just this one file on the Timeline, please let us know. If you are trying to produce a CD for listening in car or CD player elsewhere, please let us know.
    Looking forward to learning of your results.
    Thank you.
    ATR

  • Delete the reporting results from the workbook

    Hi,
    How telete the reporting results from the workbook  via the BEX menu functionality

    That functionality is not available in the Bex 7 Analyzer, just in the Bex 3.x functionality. To delete workbook results, we simply select the rows of data (but NOT the titles) and delete the rows in excel. Then save the workbook.
    If you delete the titles you will delete the analysis grid, and you will have to recreate it.
    You can also change the variable values, click "Cancel" and the workbook then shows no results for any query related field. However, this includes the navigation panes and text elements, which produces a rather blank looking workbook.

  • When inserting a checkbox, how can I prevent the note box from appearing?

    To all,
    After -reluctantly- "upgrading" from Acrobat Pro 7 to Pro X I find this new version absolutely maddening.
    Pro 7's features were easy to find in the tool bar. Now in Pro X everything is "dumbed down" with everything "nested" into each other...
    But I whine and digress from my problem:
    QUESTION:
    When inserting a checkbox, how can I prevent the note box from appearing?
    With every insertion of a checkbox onto a form, a "notebox" appears.
    Thank you,
    Matt

    As you can see, when I add a checkmark to a page/form, a "note" is automatically added also. In my old Acrobat v. 7, this did not happen.
    Any ideas on how I can set Acrobat Pro X to NOT include this note?
    Thank you,
    Matt

  • How can i get the all values from the Property file to Hashtable?

    how can i get the all values from the Property file to Hashtable?
    ok,consider my property file name is pro.PROPERTIES
    and it contain
    8326=sun developer
    4306=sun java developer
    3943=java developer
    how can i get the all keys & values from the pro.PROPERTIES to hashtable
    plz help guys..............

    The Properties class is already a subclass of Hashtable. So if you have a Properties object, you already have a Hashtable. So all you need to do is the first part of that:Properties props = new Properties();
    InputStream is = new FileInputStream("tivoli.properties");
    props.load(is);

  • How can we remove the following zeros from quantity field ?

    Hi All.
    how can we remove the following zeros from quantity field while populating ALV by using FM REUSE_ALV_GRID_DISPLAY ?
    eg:getting output zqty = 2.000
    but i need           zqty = 2.
    help me to reslove this issue.
    Regards.
    jay

    Hi,
      While populating the field catlog do the following thing to   avoid zeros.
      wa_fieldcat-tabname = 'I_OUTPUT'.    " Curr
      wa_fieldcat-fieldname = 'FWAER'.
      wa_fieldcat-seltext_l = text-023.
      wa_fieldcat-no_zero = 'X'.
      APPEND wa_fieldcat TO i_fieldcat.
      CLEAR  wa_fieldcat.
    Thanks,
    Khushbu.

Maybe you are looking for