How can i put a submit button in a survey and it send to my email

how can i put a submit button in a survey and it send to my email?

Hi williamm89908146,
You need to open the form in which you want to put the submit button,
then you have to choose 'Add new field' under Tasks pane on the right Hand side of the window.
Choose 'Ok' Button
Place the button at desired Location
Change the field name to 'Submit'
Click on 'All Properties' (Button Properties window Will open up)
Click on Actions Tab and then on 'Select Action:'
Choose 'Open a web Link' from the Drop Down Menu and then Click 'Add'
another window will appear in which you have to type this:    mailto:[your email address], eg: mailto:[email protected] later click close
Click Close Form editing on the right hand side of the window
Clicking on the Button would open up your default email client and your address would appear in 'To' field.
Please feel free if you face any challenges in following through these steps.
Regards,
Rahul

Similar Messages

  • How can you get your submit buttons to be a single click instead of the default double click?  (The

    How can you get your submit buttons on the quiz template to be a single click instead of the default double click?  (The option to choose double click or not is not showing in properties for this).

    Hmmm... Submit button doesn't need a double click at all. Maybe you are talking about the two-step process? When you click on Submit, the feedback appears with the message to click anywhere or press Y. Is that what you are talking about? If you are talking about a real double-click, something must be wrong in your file. And which version are you using?
    http://blog.lilybiri.com/question-question-slides-in-captivate
    Lilybiri

  • How can i disable a submit button and execute submit_action method on click

    Good Day,
    On my page I have a submit button that execute the submit_action method of the page backing bean that submit data captured on the page into a database and activate another class that send mail at the same time on a click of the submit button,the mail process takes a while before returning back to the page.I was able to disable the submit button to prevent the user from keep click while the process is running but the issue is on clicking the submit button it only disable the submit button without executing the submit_action method of the page backing bean.How can i disable the submit button and execute submit_method of the backing bean at the same time.
    Thanks in advance.

    I tried this out on one of my pages to see if it works.
    First, I added the following JavaScript to my submit button's onClick event:
    this.disabled=true; return true;When I clicked the submit button, it was disabled but the form was not submitted.
    I deleted the JavaScript from the onClick event and added the following JavaScript to the form's onSubmit event:
    var button = document.getElementById("form1:submitButton"); button.disabled=true; return true;When I click the submit button, it was disabled and the form was submitted but the button's action method was not called.
    The next thing I tried was to change the onSubmit event code:
    var button = document.getElementById("form1:submitButton"); setTimeout("button.disabled=true", 500); return true;This seemed to work. The difference was that I added a 1/2 second delay before disabling the button.
    See if that works for you. If not then I'm fresh out of ideas.

  • How can I put the close button in the mainframe of the dialog?

    Hi all,
    I am creating a new dialog and I would like to konw...
    How can I put the close button in the mainframe of the dialog?
    Thanks in advance.
    Best regards,
    Juanma.

    Juanma,
    Usually, a dialog would have an OK and a Cancel button, both can be served as the close button, but if user clicks the ok button (DefaultButtonWidget) to close the dialog, your dialog controller's (if it is based on CDialogController) ApplyDialogFields will get called so you can react to the OK action, otherwise, if user clicks the cancel button (CancelButtonWidget), nothing will happen. The dialog simply is dismissed.
    See BasicDialog SDK sample to see how to add DefaultButtonWidget and CancelButtonWidget to a dialog.
    Thanks!
    lee

  • As a grand parent, how can I put some apps on an ipod touch and then give it as a gift?

    As a grand parent, how can I put some apps on an ipod touch and then give it as a gift?

    Apps and many other purchases are tied to the iTunes Store account via which they were purchased. So if you buy the app, that app is tied to your iTunes Store account. Without that account information, the child could not update the app nor back it up.
    I'd also suggest giving the child an iTunes gift card or gift certificate along with the iPod. If the child is too young to have and manage his or her own iTunes Store account, then his or her parent could set up an iTunes Store account to purchase the apps. That could be done with that gift card and not need a credit card. You can also gift specific apps, though again that would require the child or a parent to open an iTunes Store account through which to redeem the gift. For more information on gift options, see:
    http://support.apple.com/kb/HT2736
    Regards.
    Message was edited by: Dave Sawyer

  • How do I put a submit button?

    I am using Forms Central. I have created the text fields, but I can't find where to add the submit button!

    You cannot create forms in iWeb.
    Create a form and paste the code in a HTML snippet.
    Or create a separate page with the form and display the page in a HTML snippet with an iframe.
    There are lots of tutorials out there that teach you how to create forms and put the data in a database.
    Usually with PHP and MySQL.
    iWeb has no knowledge of that.

  • How can I get one Submit button to perform three actions?

    I have a 2-page form. One page is completed by an HR person, entering fields that describe a new role, new pay, new hours or a new location for an existing employee. The second page automatically repeats the name, location and job role fields, but also completes the IT requirements linked to the job role (such as whether or not the role needs access to a particular piece of software or not).
    The users of the form will have varying degress of IT capability. I wan to enable them to press a single Submit button that does three things: first, print the first page of a two-page form AND e-mail the same page to one e-mail address. Second: e-mail the second page only to a DIFFERENT e-mail address.
    I am not a Javascript expert - or even a beginner. Can anyone help? I need to get this ready for Tuesday! Thanks in advance

    You will need two buttons on your form to be able to do this.
    One is the actual submit button (this will interact with th email system and do the submit). Note that you cannot write programs on a submit button. You will need to make this button invisible to the user. The second button will be a regular button which you can write programs on. Use teh click event of that button. This one will have logic to accomplish the things that you want ...here is some pseudo code to do this:
    use print command and one of the parms indicates which pages to print.
    Set up the submit button to hold the email address of the person recieving it.
    Programmatically click the hidden submit button.
    Note that the user will recieve a dialog from the mail client to OK before teh form will be sent.
    Set up the submit button to change the email address
    Programmatically click the submit button again
    User will recieve another dialog to OK the email submission
    Also you cannot email part of the form it will have to be the whole form. You coudl get a little more sophisticated and hide parts of the form but the whole form will be sent with the emails. This will need more programming on your part.
    Paul

  • How can I create a submit button that only saves?

    Our end users will save the completed form and later upload it to anotherg place.  I created a save button that works fine, but without a Submit button there is nothing to trigger the reminder to go back and answer required questions.  I don't want to lose that part.  Thanks in advance for any help you can offfer!

    Would something like this work for you?
    var OKToSave = true;
    if (tfSomething.isNull) {
              tfSomething.border.edge.color.value = "255,0,0";
              OKToSave = false;
    else tfSomething.border.edge.color.value = "255,255,255";
    if (!OKToSave) app.alert("Please fill in all required fields");
    else app.execMenuItem("SaveAs");

  • How can I set the submit button to email only certain pages of the pdf not the entire pdf?

    We have a pdf that is a hundred pages or so where each page is an individual product that the customer can select for purchase. At the end of the pdf is an order form. We want to be able to email just the few pages which are the form as a pdf. The default function of the submit button is to email back the entire pdf. As there any way to just select whcih pages would be submitted?

    The problem is for people not using an email client like Outlook. In the version of Reader my boss was using, you had to save the FDF file to your hard disk and then open your browser to go to your web based email and write an email and attach the file. In the newest version of Reader it will open a browser window and create a draft for you, but he thought it was to much work if people were using older versions of Reader. He was really looking for something straightforward where all they had to do is push a button and it was submitted.

  • How can I put two beats of normal 16th notes and two beats of triplet 16th notes in the same measure?

    Hello!
    How can I make a measure that has the first two beats as normal 16th notes, then the last two beats as triplet 16th notes? I'm putting the notes straight into the score. Oh, and I'm in 4/4 time.
    Exactly what I did:
    1. Score>Insert>16th note. Put in 8 notes (2 beats)
    2. Score>Insert>triplet 16th note.
    This is when it changes the first two beats. I don't want it to do that.
    Is it impossible to do this in the score?
    Please don't give me an alternate software recommendation.

    I don't have your GarageBand Version any longer, so I cannot check, but with GB'11 and Mac OS X 10.8 I get random results - sometimes it succeeds to  insert triplets in the second half of the measure, sometimes not.
    What I do as a work-around, is to switch to Piano Roll after entering the notes and manually drag and adjust the timing for the triplets.
    Or you could set the signature of your project to 2/4 while you are entering the notes. This will put the triplets and 16th-notes into different measures. Then switch back to 4/4 when you are done.
    Regards
    Léonie
    P.S: I'd love to see a better solution to this ...
    P.P.S: It will change to display "all triplets" while you edit and insert triplets, but it will switch back to the timing you originally inserted, once you deselect triplets again - this is very buggy - the "all triplets" should only happen, when you are previewing your score with "Snap to Grid" enabled.

  • How can I move App Tabs to the bottom, where the other bookmark toolbars are? Or, how can I put my bookmark toolbars in two rows and forget the App Tabs?

    I have several bookmarks on my toolbar, and my most often used ended up in a pull-down menu, which is annoying. I tried to click and drag them onto the menu bar, because there was room for more icons, but they won't budge. Nothing under "Toolbars" was helpful. Help would tell me to right click on my toolbar and then click on "Customize"...which didn't come up as an option. I would really like all my toolbar bookmarks (I only have about 10) to be visible on the actual toolbar, not hidden away in a small pulldown tab.
    There is a plug-in that enables you to put bookmarks in two rows on your toolbars, but it is not compatible with my version of FF (7.0.1).
    App Tabs are cute, but I don't like them on top where they take up room where I have the tabs for various websites open (I usually have several open at a time). App Tabs are fixed and don't scroll over like website tabs, which is extremely annoying, and hence why I 1)would like to move them to the bottom of the toolbar or 2)be able to display all my bookmarked toolbars --which is what I prefer.
    BTW, I have Windows 7.
    Thanks in advance for your help.

    App tabs are special tabs and are always displayed at the left end of the tab bar.
    You can place all bookmarks that you want to see on the Bookmarks Toolbar in the Bookmarks Toolbar folder.<br />
    You can do that in the side bar or the Bookmarks manager if you can't do it on the Bookmarks Toolbar.<br />
    Most Visited is a special (smart) folder that shows websites that you've visited and that aren't necessarily bookmarks, so you can't drag them on the bookmarks toolbar unless you first bookmark them. You can do that by opening them in a tab and clicking the star on the location bar twice and choose the Bookmarks Toolbar as the destination folder.
    *https://support.mozilla.com/kb/how-do-i-use-bookmarks

  • I bought a used i pod 4 for my daughter and it does not have the message icon on it: how can i put the icon on the i pod and get it receive and send messages

    I bought a used i pod 4 for my daughter and it does not have the message icon on it ( not even in settings) how can I get the message icon on it so it can receive and send messages

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:       
    iOS: How to back up
    - Restore to factory settings/new iOS device.
    -  Make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar

  • How can I put two triggers on top of eachother, and have them both work when clicked?

    I'm creating this slideshow, with before and afters of my work. At the bottom right corner, I want a small frame with the before image. The fullscreen slideshow though, has arrow buttons working as triggers to either go back in the slideshow or move onto the next image. I want the other smaller slideshow at the bottom right corner to sync up with the corresponding "Before" images in the fullscreen slideshow. So, my idea was get both of the forward/back arrow buttons from the widgets and put them on top of eachother, assuming it would advance or go back on both of the widgets.  It's not working though, only the top-most trigger works.
    Simplified version without the mumbo-jumbo!:
    I want to put two triggers on top of eachother, but when I do this, only the top-most trigger functions. Any way to get this to work? or creative ways to get around this?
    Thanks in advance!

    You can't have it click on two things at once. You would have to write some javascript to have one button do both actions. This would not be very easy in Muse so I would say this is not somethingthat is supported in Muse.

  • Can I change the Submit button to say something else, like "Send Request"?

    I'd like to explore changing the language of the submit button to see if my response rate increases.  Is there a way to make this change?

    As said above you can use double-tap to wake up the device, you'll find the setting for it under settings > display > tap to wake up. 
    What are your thoughts about this forum? Let us know by doing this short survey.

  • How can you remove the Save button on a survey?

    What options are there to remove the SAVE button from a SharePoint survey?
    I need to remove this if possible, I was hoping it would be as simple as editing a form in the Survey list... but that is apparently not the case.
    I need to supress the SAVE button as it confuses end users and we don't want any half completed surveys. Either it gets finished or not at all.
    Can someone hopefully provide me with an nice simple solution?  Or any solution at all :)
    Thanks!

    Hi,
    Save button on the surveys with multiple question or with branching logic enabled is an out of the box feature and it is by design.
    If you want to remove the “save” button in a survey, I think you can use JavaScript to hide this button:
    1. Open your site in SharePoint Designer.
    2. Open your survey list newform.aspx page, in the code view, find this code “<asp:Content ContentPlaceHolderId="PlaceHolderMain" runat="server"> <table>……. </table> “add the JavaScript” </asp:Content>”, add JavaScript before the “</asp:Content>” tag:
    <script>
    var x=document.getElementsByTagName("input");
    for (var i=0;i<x.length;i++)
    if (x.item(i).type=="button"&&x.item(i).value=="Save")
    {x.item(i).style.display = "none"};
    </script>
    After this, you will not see the “Save” button when create new survey response. You can also add this JavaScript in the editform.aspx page.
    Hope it can help you.
    Xue-Mei Chang

Maybe you are looking for

  • Icloud account

    How do I create a new icloud account when a message comes up saying; the amount of icloud accounts have been limited on this device?? Please help

  • IPhone Sync Problems with VISTA After iTunes Upgrade to 7.4

    Upon upgrading to iTunes 7.4 I was unable to sync my Outlook calendar or contacts to the iPhone. Called Apple Support that they seemed to know nothing about this problem general problem despite all of the discussions on this and many other tech. boar

  • Releasing Objects from memory-Performance improvement

    First Javafx was excellent in coding on UI rapidly. We did a image application and it was fine with some small memory tweaking pending. Since we have binded variables from static file to all objects, i think the memory of objects removed or deleted i

  • Texting/IM problems incoming/o​utgoing, Not Received/U​p To 3 Day Delays, Blackberry Curve 9300

    For several weeks now I have been having problems receiving and sending texts from my blackberry. I first brought this to the attention of my provider (tmobile) at the end of september, this was after the announcement that RIM has resolved the proble

  • Manually updating company names for a given company code in BCS

    Is there a way where we do not have to manually update the names? we update the company names in UCWB > Master Data > Consolidation Units > Company We are maintaining the updated company code names in the source system but how can we do away with mai