Contact Form won't display input text

Hi,
I'm trying to create a flash contact form that sends the
user's message on enter key. Therefore I need you to help me do
this and also help me understand why my form isn't displaying right
when I have a mask for it.
To get a better picture of the problem
here you can
see how the form should look like and
here you can
see the same form, but with the mask

I'm not sure I understand what you mean by "embed the fonts
in each of the text fields"
Please have a look at the .fla file:
http://www.claudiudesign.org/test/sterg.fla
(this fla has the mask; if you remove it you will be able to
see the working contact form)
It won't take you more than 1 min to understand what's up
with it if your good at this.
Thing is I'm behind the schedule with this and I have to
solve the problem as soon as possible.
Thank You

Similar Messages

  • My iPhone 5 won't display smart text options.

    My iPhone 5 won't display smart text. It did when I initially downloaded the new OS, now those options don't appear at all. Did I click something to make them disappear?
    I went into Settings to see if there was a component of it within Messages. I don't see anything.
    Thoughts please.....
    Thanks much
    Ginger

    Awwww......that's it....the dash! I tapped it. Tried to drag it up/down and it didn't move. Now I swiped and it's back!
    So I need to remember to drag up/down and now swipe.....
    Thanks much!
    Ginger

  • The memo field in forms won't display text?

    I am using Firefox 33.1.1 on a WindowsXP Pro system and have been using FireFox for quite some time . . .
    Recently, I must have done something, I just don't know, but I can't seem to remedy the problem.
    I create and use a lot of forms. Standard <form></form> HTML forms.
    Whenever I pull up a form, I can no longer see any text as I type into the MEMO field. I also don't see any contents of the MEMO field when I recall a record fromn the database within the form.
    This is happening ONLY with the MEMO field.
    This very message I had to type in notepad and copy and paste it into this bug report form.( OMG - when I pasted this text into this form, I can see the text!! But still not in other forms)
    YET, the text is indeed in the form. This text will display when recalling a record to the webpage and displaying the memo field contents on the page.(Not in form)
    I have done all I can according to FireFox problem resolution suggestions including uninstalling and reinstalling a fresh pristeen copy of Firefox to a diff location on HD.
    I do NOT have this problem when I go into Windows IE. I know there is no problem with the form itself or database contents. This happens on ANY memo field at ANY website, not just mine.
    I cannot say if this began after an FF update or not. I feel it may be a simple fix. I may have hit a key or combination of keys that changed a setting causing this, but I dont know where.
    Any clues would be helpful.
    thanks
    jim

    Try to disable OMTC and leave hardware acceleration in Firefox enabled.
    *<b>about:config</b> page: layers.offmainthreadcomposition.enabled = false
    *http://kb.mozillazine.org/about:config
    You can try to disable hardware acceleration in Firefox.
    *Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    You need to close and restart Firefox after toggling this setting.
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    *https://support.mozilla.org/kb/upgrade-graphics-drivers-use-hardware-acceleration
    This can be a problem with the font that is used to display the text.
    You can do a font test to see if you can identify corrupted font(s).
    *http://browserspy.dk/fonts-flash.php?detail=1
    You can try different default fonts and temporarily disable website fonts to test the selected default font.
    *Tools > Options > Content : Fonts & Colors > Advanced
    *[ ] "Allow pages to choose their own fonts, instead of my selections above"

  • Form fields won't display input information

    We are having a very odd issue that's happened on two occassions. We have a basic PDF form where someone has input information into various fields, but the information doesn't display, unless you click within the field. At that point you can see what's been typed in. As soon as you tab to the next field, the information is no longer visable -- it's still there, but you can't see it. I don't know if this is relavent, but it's interesting that one part of the form has some checkboxes and that information displays with no problem.
    One form was one we created in-house, and we've been using it for about 9 months with no problems at all. The other form is an external form that was sent to us.
    Neither of these are a LiveCycle designer form.
    We get the same results regardless of whether we open within Mac or Windows.
    Both forms, in their final state, were emailed to us via an outside source (different, unrelated sources). That seems to be the only common attribute.
    Any ideas?

    One thing you can try is opening the form in Acrobat, exporting the form data to an FDF file, and re-import it.
    You can also run a JavaScript the will correct things as much as possible. For example, see: http://blogs.adobe.com/pdfdevjunkie/script_to_fix_mac_osx_previewa.html
    I've written a script that is more comprehensive in that it addresses other type of fields. Post again if you'd like it.
    Please note, though, that any of these methods can only do so much. Preview screws things up in a way that's not easily reversible.

  • Contact form won't send to email

    I've done this contact form loads of times and it works fine but for some reason this particular form won't send to email. The php is good so it must be my form. I'll put both bits of code up anyway. Thanks
    PHP:
    <?php
    if ($_POST){
    if (!filter_input(INPUT_POST, 'email', FILTER_VALIDATE_EMAIL)){
    $message="Please provide a correct email address";} else {
      $name = strip_tags($_POST['name']);
      $company_name = strip_tags($_POST['company_name']);
      $telephone = strip_tags($_POST['telephone']);
      $email = $_POST['email'];
      $comments = strip_tags($_POST['comments']);
      $to = '[email protected]';
      $subject = 'Contact form submitted.';
      $body = $name. "\n". $company_name. "\n". $telephone. "\n". $email. "\n" .$comments;
      $headers = 'From: ' .$email;
      if (mail($to, $subject, $body, $headers)) {
      echo 'Thanks for contacting us. We\'ll be in touch soon!';
      } else {
      $message = 'Sorry an error occurred. Please try again later.';
    ?>
    <?php echo "<p style='color:red'>$message</p>"; ?>
    HTML:
    <form id="contactform" action="" method="post">
    <p>Name:<br/><input name="name" type="text" required /></p>
    <p>Company Name: <br/><input name="company_name" type="text" required/></p>
    <p>Telephone: <br/><input name="telephone" type="tel" required/></p>
    <p>Email: <br/><input name="email" type="email" required/></p>
    <p>Comments: <br/><textarea name="comments" required/>   </textarea></p>
        <input type="submit" name="submit" value="Send!" formmethod="post"/>
    </form>

    PEAR is a library of useful functions that is often included in a PHP installation.
    BUT. . .PHP only uses the mail capabilities of the server. If the server doesn't allow it, then you may not able to send email no matter what. . .however, I am not absolutely sure of that. I have never had to work with a server that did not support mail.
    SMTP is a protocol that uses an email account to send mail. You may be able to tie your mail to an external SMTP account, for instance even a GMAIL account. PHPMailer is an add-on that you can use to do this. You can install it on your website. It isn't hard to use, but it is more involved than simply using PHP mail().
    But really, have a conversation with the server admin about all of this. Find out why PHP mail isn't installed, and if he is willing to install it.

  • Contact form won't submit

    Hi everyone,
    I have the following code as my contact form but when I click the submit button, nothing happens, ie. it just stays on the same page and none of the data gets inserted into the CRM. I wondered if anyone can see any problems with the code below?
    Appreciate any advice.
    <form name="catwebformform22024" method="post" onsubmit="return checkWholeForm22024(this)" enctype="multipart/form-data" action="/FormProcessv2.aspx?WebFormID=70380&amp;OID={module_oid}&amp;OTYPE={module_otype} &amp;EID={module_eid}&amp;CID={module_cid}">
        <span class="req">*</span>  Required
        <table class="webform" cellspacing="0" cellpadding="2" border="0">
            <tbody>
                <tr>
                    <td><label for="Title">Title</label><br />
                    <select name="Title" id="Title" class="cat_dropdown_smaller">
                    <option value="913107">DR</option>
                    <option value="913106">MISS</option>
                    <option value="913103" selected="selected">MR</option>
                    <option value="913104">MRS</option>
                    <option value="913105">MS</option>
                    </select></td>
                </tr>
                <tr>
                    <td><label for="FirstName">First Name <span class="req">*</span></label><br />
                    <input type="text" name="FirstName" id="FirstName" class="cat_textbox" maxlength="255" /> </td>
                </tr>
                <tr>
                    <td><label for="LastName">Last Name <span class="req">*</span></label><br />
                    <input type="text" name="LastName" id="LastName" class="cat_textbox" maxlength="255" /> </td>
                </tr>
                <tr>
                    <td><label for="EmailAddress">Email Address <span class="req">*</span></label><br />
                    <input type="text" name="EmailAddress" id="EmailAddress" class="cat_textbox" maxlength="255" /> </td>
                </tr>
                <tr>
                    <td><label for="WorkPhone">Work Phone Number <span class="req">*</span></label><br />
                    <input type="text" name="WorkPhone" id="WorkPhone" class="cat_textbox" maxlength="255" /></td>
                </tr>
                <tr>
                    <td><label for="CellPhone">Mobile Phone Number</label><br />
                    <input type="text" name="CellPhone" id="CellPhone" class="cat_textbox" maxlength="255" /></td>
                </tr>
                <tr>
                    <td><label>Preferred Contact Method</label><br />
                    <input type="radio" name="CAT_Custom_328076" id="CAT_Custom_328076_0" value="Phone" />Phone<br />
                    <input type="radio" name="CAT_Custom_328076" id="CAT_Custom_328076_1" value="Email" />Email</td>
                </tr>
                <tr>
                    <td><label for="CAT_Custom_328077">Comments/Enquiries</label><br />
                    <textarea name="CAT_Custom_328077" id="CAT_Custom_328077" cols="10" rows="4" class="cat_listbox" onkeydown="if(this.value.length&gt;=4000)this.value=this.value.substring(0,3999);"></text area></td>
                </tr>
                <tr>
                    <td><input class="cat_button" type="submit" value="Submit" id="catwebformbutton" /></td>
                </tr>
            </tbody>
        </table>
        <script type="text/javascript" src="/CatalystScripts/ValidationFunctions.js"></script>
        <script type="text/javascript">
    //<![CDATA[
    var submitcount22024 = 0;function checkWholeForm22024(theForm){var why = "";if (theForm.FirstName) why += isEmpty(theForm.FirstName.value, "First Name"); if (theForm.LastName) why += isEmpty(theForm.LastName.value, "Last Name"); if (theForm.EmailAddress) why += checkEmail(theForm.EmailAddress.value); if (theForm.WorkPhone) why += isEmpty(theForm.WorkPhone.value, "Work Phone Number"); if(why != ""){alert(why);return false;}if(submitcount22024 == 0){submitcount22024++;theForm.submit();return false;}else{alert("Form submission is in progress.");return false;}}
    //]]>
    </script>
    </form>

    Hi there,
    Some basic questions to ask first. (Also it is easier if you post the link to the page rather then the code, we can see it ourselves, any errors, view the console etc)
    1. You are putting this form in a BC site?
    2. The webform in the admin with ID 70380 exists?

  • My php contact form won't work. HELP!?

    I've been trying this for a while now, following a few different online tutorials. It seems like a simple concept but i just cannot get the contact form to relay any data. I'll paste my php coding and my form below. Any help would be much appreciated. Thanks.
    <div class="contact_form">
        <form id="contactform" action="contact.php" method="post">
      Name: <br><input name="name" type="text" id="name" value=""/>
        <br><br>
        Company Name: <br><input name="company_name" type="text" id="company_name" value=""/>
        <br><br>
        Telephone: <br><input name="telephone" type="tel" id="telephone" value=""/>
        <br><br>
        Email: <br><input name="email" type="email" id="email" value=""/>
        <br><br>
        Comments: <br><textarea name="comments" id="comments" value="" />  
        </textarea>
        <p></p>
        <input type="submit" name="submit" value="Send!"/>
    </form> 
    </div>
    <?php
    if (isset($_POST['name']) && isset ($_POST['company_name']) && isset ($_POST['telephone']) && isset ($_POST['email']) && isset ($_POST['coments']) ) {
      $name = $_POST['name'];
      $company_name = $_POST['company_name'];
      $telephone = $_POST['telephone'];
      $email = $_POST['email'];
      $comments = $_POST['comments'];
      if (!empty($name) && !empty($company_name) && !empty($telephone) && !empty($email) && !empty($comments) ) {
      $to = '[email protected]';
      $subject = 'Contact form submitted.';
      $body = $name. "\n" .$comments;
      $headers = 'From: ' .$email;
      if (@mail($to, $subject, $body, $headers)) {
      echo 'Thanks for contacting us. We\'ll be in touch soon!';
      } else {
      echo 'Sorry an error occurred. Please try again later.';
      } else {
      echo 'All fields are required.';
    ?>

    Try this:
    <!doctype html>
    <html>
    <?php
    if ($_POST){
    if (!filter_input(INPUT_POST, 'email', FILTER_VALIDATE_EMAIL)){
    $message="Please provide a correct email address";} else {
      $name = strip_tags($_POST['name']);
      $company_name = strip_tags($_POST['company_name']);
      $telephone = strip_tags($_POST['telephone']);
      $email = $_POST['email'];
      $comments = strip_tags($_POST['comments']);
      $to = '[email protected]';
      $subject = 'Contact form submitted.';
      $body = $name. "\n" .$comments;
      $headers = 'From: ' .$email;
      if (mail($to, $subject, $body, $headers)) {
      echo 'Thanks for contacting us. We\'ll be in touch soon!';
      } else {
      $message = 'Sorry an error occurred. Please try again later.';
    ?>
    <head>
    <meta charset="utf-8">
    <title>Untitled Document</title>
    </head>
    <body>
    <?php echo "<p style='color:red'>$message</p>"; ?>
    <div class="contact_form">
        <form id="contactform" action="contact.php" method="post">
    <p>Name:<br/><input name="name" type="text" required /></p>
    <p>Company Name: <br/><input name="company_name" type="text" required/></p>
    <p>Telephone: <br/><input name="telephone" type="tel" required/></p>
    <p>Email: <br/><input name="email" type="email" required/></p>
    <p>Comments: <br/><textarea name="comments" required/>   </textarea></p>
        <input type="submit" name="submit" value="Send!"/>
    </form>
    </div>
    </body>
    </html>

  • Contact name won't display

    Incoming calls and messages with international prefix (e.g. +1) won't display the name of the contact.  Those without a prefix do display.  Can someone help me figure out why and how to fix it?

    check that you dont have that number duplicated in your contacts list. Try deleting the contact and re-entering it. Remember if you solve the problem the messages that are already in the inbox wont change to show the name.

  • Retain all form field values after input text field validation failure

    Hi,
    I have a form with 1 input text field, one Command button and one h:selectManyListbox. when User enteres some values in input field and clicks on command button named Add, the value is validated. If input is invalid, then an error message appears next to the field. If input is valid, then the value is added into h:selectManyListbox. Adding to list box is done using Ajax4Jsf.
    Probelm:
    Let's assume user entered 3 valid values one after another and all are added into the list box. When he enters a wrong value, and error message appears. however, the entered values in list box goes away. Is there a way to retain the values even after validation failure.
    Code is given below;
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://myfaces.apache.org/tomahawk" prefix="t"%>
    <%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
    <%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
    <h:panelGroup>
         <h:outputLabel for="inputEmailId1" value="Email Id: " />
         <t:inputText value="#{bean.newEmailId}" id="inputEmailId1" maxlength="100" size="40" immediate="true">
              <t:validateEmail message="Enter a valid Email Id." />
         </t:inputText>
         <t:message for="inputEmailId1" styleClass="errorStyleClass" />
    </h:panelGroup>
    <t:panelGroup style="text-align: left;" >
         <a4j:commandButton value="Add" styleClass="buttonsSub" action="#{bean.addSharedEmails}"
              reRender="inputEmailId1, selectedSharedEmails" />
    </t:panelGroup>
    <t:panelGroup style="text-align: left;">
         <h:selectManyListbox id="selectedSharedEmails" size="8" style="width:100%;" immediate="true">
              <f:selectItems value="#{bean.sharedEmails}" />
         </h:selectManyListbox>
    </t:panelGroup>
    Thanks in advance,

    Use the attribute "binding" instead of a "value". This will remember the value. You can also make sure that you dont have anything in your constructor or class level that initialises that value to "" or null. Because if JSF is remembering your value but your initialization that gets triggered before the page loading resets it to default values then you need to change that part of the code.

  • IRS forms won't display on screen; this just started.

    Recently, IRS forms will not display on my screen. I have a Mac and it used to display these forms on the screen. Could the problem be caused by a recent version of Firefox Mozilla.
    == URL of affected sites ==
    http://

    Check to see if your Adobe Acrobat & Reader Plug-in is current; IRS forms use Adobe Reader/Acrobat for their forms. Also see if your Java and Shockwave Flash (aka Adobe Flash) are current.
    Check your plugins here: http://www.mozilla.com/en-US/plugincheck/
    See the following for instructions for updating your plugins if they are not current:
    http://support.mozilla.com/en-US/kb/Using+the+Adobe+Reader+plugin+with+Firefox
    http://support.mozilla.com/en-US/kb/Using+the+Java+plugin+with+Firefox
    http://support.mozilla.com/en-US/kb/Managing+the+Flash+plugin

  • WRT54GS router setup page won't display most text

    So I bought a new Linksys WRT54GS v6 wireless router yesterday, and I was able to set it up to share my DSL line, but when I went to the router setup page (192.168.1.1), it wouldn't display most text. It displays text in the entry boxes, but there are no links or other text on the page. I took a screenshot which can be seen here: http://img87.imageshack.us/img87/3390/routersetuppagemc1.jpg
    Does anyone know what I can do to solve this issue?

    Hey Merugo. I was having the same problem with the router settings screen refusing to load for my WRT54G. Do you happen to have v.5 of the router? After digging around in the help files on the site, I found this for firmware recovery for the WRT54G v.5 and it fixed the problem I was having once it loaded the updated .bin. Blank screen be gone.
    http://linksys.custhelp.com/cgi-bin/linksys.cfg/php/enduser/std_adp.php?p_faqid=3176
    (The first time the router tried to load the new .bin it timed out. And the second time it installed correctly though it didn't display "Upgrade Success" like it's apparently supposed to.)
    Hope this can maybe help you since it fixed things for me.Message Edited by Res on 10-03-200606:44 PM

  • How can I use a script in a Livecycle Designer form, to force display of text in Title Case?

    Hello,
    I am a 'novice' who is DIY'ing the construction of a dynamic pdf form, using Adobe Livecycle Designer 7 (I know, it's a VERY old version!)
    [So, any help that comes along must be 'for Idiots'!]
    I need to construct a code (Java script?) so that a few of my text-fields DISPLAY data in Title Case - IRRESPECTIVE of how the user types in the data.
    So, for example, in a "Address" text-field...
    If someone types in ..
    "205 sherborne avenue"
    - OR -
    "205 Sherborne avenue"
    - OR -
    "205 SHERBORNE AVENUE"...
    I need the data to be DISPLAYED ESSENTIALLY as...
    "205 Sherborne Avenue".
    I found the following code online, and tried it in the 'exit' event of the field I need to modify (with 'language' selected as JavaScript)...
    <   this.rawValue = this.rawValue.replace(/\b([a-z])/g, function (_, initial) {return initial.toUpperCase();});   >
    ... This did convert all the 'initial' letters of the words to Upper Case - AS LONG AS they were not ALL typed in Upper Case!
    So, that code worked for the first two of my samples for Sherborne Avenue above - but it did NOT work for the last one...
    That is, "205 SHERBORNE AVENUE" did NOT get converted to Title Case - which is what I need help with.
    Thanks in advance...

    Hey TundraSteve,
    Thanks a tonne!
    Works perfectly!!!
    In fact, your solution is so elegant and direct, that even I am beginning to get a sense of how it works... I have looked at LOTS of similar codes in the past few days, but was not at all getting a sense of how they are working! But comparing your solution with the earlier one I mentioned, I am beginning to get a sense of things!
    Any suggestions for what I should read-up in order to understand this king of coding?
    I have basically been using the built-in 'Help' - and, trial-and-error - and I have designed my first form - a pretty elaborate one, actually!
    So, it would be great if you could guide me through the 'learning curve' a bit!
    [I have figured-out the 'basics' - that is, I can lay out the form, use 'if-expressions' (FormCalc), trigger events, even build Subforms that are hidden but 'appear' when triggered by other actions, and so on. What I can't figure out are the various 'code languages' (syntax?) that are being used - like " var sometext", for eg.!]
    Cheers, and thanks again!

  • HELP! DWCS3 won't display DW8 text on my Mac

    I recently got DWCS3 (v9.0) on a Mac and had been using
    DWMX2004. My HTML pages displayed fine in DW8 but when I moved them
    to DWCS3 the main table cells do not display correctly. Does anyone
    know what is going on. I can see half the text on my page but the
    rest is blank. Is there an easy fix for making my pages display as
    they did in DW8 or DWMX2004? Again I am on a Mac and am not a
    tech-type. I am a designer who knows how to cut and paste code but
    I would need some help. I know there is a fix for the PC that
    allows one to view files as if they were in DW8. But I need a
    step-by-step guide if possible as to how it should be set up on the
    Mac. Please help me find a fix.
    Thanks
    Eph

    I'm tapped. Have you tried submitting a trouble ticket for
    one of your
    one-on-one support incidents?
    http://www.adobe.com/support/programs/dreamweaver/index.html?tab:contact=1
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "epholio" <[email protected]> wrote in
    message
    news:f837a8$inm$[email protected]..
    > Still not working. Not sure what it could be. Here is a
    screenshot of what
    > I
    > see.
    >
    >
    http://www.epholio.com/ttscreen.jpg
    >
    > Notice how the main area is blank. This is the large
    area of white. I have
    > checked the code and again it displays perfectly in
    DW2004 but notso in
    > DWCS3.
    > I read in other posts about a Windows fix to the Mac
    equivalent of
    > Preferences
    > that allows users to view files in DWCS3 the way they
    did in DW8 but
    > nothing
    > substantial about what needs to be done Mac-side. Hmm?
    >
    >
    >

  • "Ask Apple Support" in Contacts link won't accept input...

    Trying to get help via Apple Support, but the same screen simply returns after submitting a question. Anyone else having the save problem?

    When I go to "Contact" in Apple Support and click "Get Started," there's a Welcome screen that pops up and asks if this is the same or difference issue. When I try to respond (to either) to "get started," the display just comes back to the same Welcome screen. In other words, I can't get Support to accept any input from my computer:
    https://getsupport.apple.com/GetproductgroupList.action
    Same thing on both my Mac Mini and old iMac, so I figured it had to be some kind of hangup on Apple's end. Exasperating. On the other hand, I've discovered through another poster that my early '09 Mini (2,1) isn't compatible with Mountain Lion anyway, which is what I was trying to install; so for now the Support access issue is moot. If you have any suggestion about viability of upgrading my Mini, I'd appreciate your insight. Thanks so much for your response. 

  • Adobe form -- Issue in Displaying Dynamic text along with Static text

    Hi All,
    I am having an issue when i am displaying a dynamic text along with static text in adobeforms.
    The dynamic text is slightly coming down and not aligned with the static text. i can see half row it is coming down.
    how to align both texts to be printed in same format.
    Request all of your expert advices in achieving this .
    Thank you in advance.
    Thanks&Regards,
    Phani Miriyaila.

    Hi,
    Select both dynamic and static text in the layout. Goto Object palette -> Layout. Give values to X,Y coordinates and Height & Width. Anchor properly and specify margins as well.
    Select both dynamic and static text in the layout. Right click on it and goto palettes -> Paragraph. It gives you the text alignment options. Align the text and give similar font and size.
    Thanks & Regards,
    Sanoosh

Maybe you are looking for