I am having trouble with my forms.

At first I thought it was the fact that flash was not publishing the AC_RunActiveContent.js file. But when I dug deeper I guess in flash cs4 the AC_RunActiveContent.js file is not needed anymore.
So why are my forms not working?
Here is the PHP I am using:
<?php
$sendto = '[email protected]';
$subject = 'Email from Advance Automotive Appointments';
$name = $_POST['fromname'];
$wkphone = $_POST['fromwkphone'];
$hmphone = $_POST['fromhmphone'];
$from = $_POST['fromemail'];
$time = $_POST['fromtime'];
$date = $_POST['fromdate'];
$year = $_POST['fromyear'];
$make = $_POST['frommake'];
$model = $_POST['frommodel'];
$message = $_POST['frommessage'];
$message = stripslashes($message);
$content = "Name: " . $name . "\n";
$content .= "Work phone: " . $wkphone . "\n";
$content .= "Home phone: " . $hmphone . "\n";
$content .= "Email: " . $from . "\n\n";
$content .= "Time: " . $time . "\n";
$content .= "Date: " . $date . "\n";
$content .= "Year: " . $year . "\n";
$content .= "Make: " . $make . "\n\n";
$content .= "Message: " $message;
If(mail($sendto,$subject,$content))
echo 'response=passed';
else
echo 'response=failed';
?>
And here is the FLASH action script:
send_btn.addEventListener(MouseEvent.CLICK,submit);
function submit(e:MouseEvent):void
    var variables:URLVariables = new URLVariables();
    variables.fromname = name_txt.text;
    variables.fromwkphone = workph_txt.text;
    variables.fromhmphone = homeph_txt.text;
    variables.fromemail = email_txt.text;
    variables.fromtime = time_txt.text;
    variables.fromdate = date_txt.text;
    variables.fromyear = year_txt.text;
    variables.frommake = make_txt.text;
    variables.frommodel = model_txt.text;
    variables.frommessage = message_txt.text;
    var req:URLRequest = new URLRequest("appt.php");
    req.data = variables;
    req.method = URLRequestMethod.POST;
    var loader:URLLoader = new URLLoader();
    loader.dataFormat = URLLoaderDataFormat.VARIABLES;
    loader.addEventListener(Event.COMPLETE,sent);
    loader.addEventListener(IOErrorEvent.IO_ERROR,error);
    loader.load(req);
    status_txt.text = "Sending...";
function sent(e:Event):void
    status_txt.text = "Your message has been sent.";
    name_txt.text = "";
    workph_txt.text = "";
    homeph_txt.text = "";
    email_txt.text = "";
    time_txt.text = "";
    date_txt.text = "";
    year_txt.text = "";
    make_txt.text = "";
    model_txt.text = "";
    message_txt.text = "";
function error(e:IOErrorEvent):void
    status_txt.text = "There has been an Error, Please try again later.";
So what am I doing wrong?

what's your url?

Similar Messages

  • I am having trouble with a form, won't tab to 2nd page...

    I am having trouble with a form I created in Acrobat Pro 10. I created tabs etc, they all work wonderfully in Adobe, but once I uploaded it onto the web-based program for other users, the tabs only work  on page 1, I have to click on page 2 to keep tabbing through.  It won't tab into it.  Any advise?  Also, when the users open it it opens in the web.

    1. The library is separate from the application, so re-installing shouldn't cause an issue with the actual photos. But it would be foolhardy in the extreme to do anything without first backing up.
    2. Often these issues are caused by a damaged Library, so reinstalling doesn't change much.
    FWIW
    To re-install iPhoto
    1. Put the iPhoto.app in the trash (Drag it from your Applications Folder to the trash)
    2a: On 10.5:  Go to HD/Library/Receipts and remove any pkg file there with iPhoto in the name.
    2b: On 10.6: Those receipts may be found as follows:  In the Finder use the Go menu and select Go To Folder. In the resulting window type
    /var/db/receipts/
    A Finder Window will open at that location and you can remove the iPhoto pkg files.
    3. Re-install.
    If you purchased an iLife Disk, then iPhoto is on it.
    If iPhoto was installed on your Mac when you go it then it’s on the System Restore disks that came with your Mac. Insert the first one and opt to ‘Install Bundled Applications Only.
    If you purchased it on the App Store you can find it in your Purchases List.
    Alternative approach:
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. .
    Regards
    TD

  • RE : Having troubles with a form

    Hi Guys,
    Its been a while since i posted here. The company I work for has a website designed by the former guy from marketing. So all upadtes and fix ups ar eup to me to fix. As I have said before, my skills in php/html/flash are a little above basic. I can understand coding and can work my way around a website.
    With that said, There is a form on the website to register as a VIP for our company. Now, It works fine, it sends to my email and all, so I assume the php code is ok. The problem is this, all the info that is typed in a input box shows up in the email, but all the info thats under a check box and radio button do not work. It shows up in the email as [object Object].
    Here is the email that sends out after clicking submit:
    Name: TEST21
    Telephone: 2890
    Email: [email protected]
    Address: 222
    Birthday (year month day): 1985 12 12
    Company: july 21 12 50pm
    Title: TEST
    No of kids: undefined
    Gender (True = Male): false
    Reward Selection: [object Object]
    Newsletter(True = yes): false
    Existing Cardholder: [object Object]
    Marital Status: [object Object]
    Interest:
    Age: [object Object]
    As you can see most of it sends through except for the radio buttons. I managed to fix (kind of) the GENDER and NEWSLETTER to send as true or false. But this won't do. I tried clicking both Male and Female for gender and it both shows up as false. I feel I'm so close to the answer, I managed to code something that the Gender sends as M or F. But I wasnt able to save the file. So I'm back to ground zero. Need help please.
    I can paste the code here from the submit button on the form and the PHP code for anyones reference. THANKS IN ADVANCE.
    on(release){
        allownewsleter=allownewsletter_yes.value
        gender=gender_male.value
        //db_year="2006;"
        //db_month="08";
        //db_day="30";
    _root.firstname=firstname;
    //_root.lastname=lastname;
    _root.phone=phone;
    _root.address=address;
    _root.email=email;
    _root.db_year=db_year;
    _root.db_month=db_month;
    _root.db_day=db_day;
    _root.company=companynames;
    _root.title=title;
    _root.kid_no=kid_no;   
    _root.gender=gender;
    _root.reward=reward;
    _root.allownewsleter=allownewsleter;
    _root.cardholder=cardholder;
    _root.marital=marital;
    _root.interest=interest;
    _root.age=age;
    //trace ("gender_male.value++++++++++" + gender_male.value);
    //trace ("gender_female.value++++++++++" + gender_female.value);
    if (gender_male.selected) {
    trace("gender is set to male");
      gender_male.value = "M";
    } else {
    trace("gender is set to female");
      gender_female.value = "F"; 
    if (reward_1.value==true)
      _root.reward="1"
    else if (reward_2.value==true)
    _root.reward="2"
    else
    _root.reward=""
    if (allownewsletter_yes.value==true)
    _root.allownewsleter="1"
    else if (allownewsletter_no.value==true)
    _root.allownewsleter="2"
    else
    _root.allownewsleter=""
    if (cardholder_yes.value==true)
      _root.cardholder="1"
    else if (cardholder_no.value==true)
    _root.cardholder="0"
    else
    _root.cardholder=""
    if ((marital_yes.value==false) and (marital_no.value==false))
    _root.marital=""
    else
    _root.marital=marital_yes.value
    if (marital_yes.value==true)
      _root.marital="M"
    else if (marital_no.value==true)
    _root.marital="S"
    else
    _root.marital=""
    if (interest_1.value==true)
      _root.interest_1="1"
    else
      _root.interest_1="0"
    if (interest_2.value==true)
    _root.interest_2="1"
    else
      _root.interest_2="0"
    if (interest_3.value==true)
      _root.interest_3="1"
    else
      _root.interest_3="0"
    if (interest_4.value==true)
      _root.interest_4="1"
    else
      _root.interest_4="0"
    if (interest_5.value==true)
      _root.interest_5="1"
    else
      _root.interest_5="0"
    if (interest_6.value==true)
      if (other_interest==undefined)
        _root.interest_6="" 
      else
        _root.interest_6=other_interest
    else
      _root.interest_6="0"
    //trace ("interest_1.value='''''''''''''''''''''''''''" +interest_1.value)
    if (age_1.value==true)
      _root.age="1"
    else if (age_2.value==true)
    _root.age="2"
    else if (age_3.value==true)
    _root.age="3"
    else if (age_4.value==true)
    _root.age="4"
    else
    _root.age=""
         message_movie._visible=false;
        trace ("_root.firstname=" + firstname)
        trace ("_root.lastname=" + lastname)
        trace ("_root.gender12345=" + _root.gender)
        trace ("_root.phone=" + phone)
        trace ("_root.address=" + address)
        trace ("_root.email=" + email)
        trace ("_root.db_year=" + db_year)
        trace ("_root.db_month=" + db_month)
        trace ("_root.db_day=" + db_day)
        trace ("_root.company=" + companynames)
        trace ("_root.title=" + title)
        trace ("_root.phone=" + phone)
        trace ("_root.kid_no=" + kid_no)
        trace ("_root.allownewsleter=" + _root.allownewsleter)
        //trace ("allownewsletter_yes=" + allownewsletter_yes.value)
        trace ("gender=" + _root.gender    )
        trace ("db_year=" + db_year.value )
        trace ("CARDHOLDER=====" + _root.cardholder )
        trace ("marital=====" + _root.marital )
        trace ("_root.interest========" + _root.interest )
        trace ("_root.age========" + _root.age )
        trace ("_root.reward========" + _root.reward )
        trace("//////////////")
        trace ("_root.firstname=" + _root.firstname)
        trace ("_root.gender=" + _root.gender)
        trace ("_root.phone=" + _root.phone)
        trace ("_root.address=" + _root.address)
        trace ("_root.email=" + _root.email)
        trace ("_root.db_year=" + _root.db_year)
        trace ("_root.db_month=" + _root.db_month)
        trace ("_root.db_day=" + _root.db_day)
        trace ("_root.company=" +_root.company)
        if (_root.kid_no==undefined)
            _root.kid_no=""
        if ((_root.firstname=="")  or (_root.gender=="") or (_root.phone=="")  or (_root.address=="")  or (_root.email=="")  or (_root.db_month=="")  or (_root.db_day=="")   or (_root.age=="") )
         message_movie.messagevalue=    "Please fill in all mandatory fields!"
          message_movie._visible=true;
        else
         LoginProgress.gotoAndPlay("StartLogin");
        URL = "email_vip.php?firstname=" + firstname + "&lastname=" + lastname + "&email=" + email + "&phone=" + phone   + "&area_id=" + area + "&address=" + address +
                "&db_year=" + db_year + "&db_month=" + db_month + "&db_day=" + db_day + "&companynames=" + companynames + "&titles=" + titles + "&kid_no=" + kid_no +
                "&gender=" + gender + "&reward=" + reward + "&allownewsleter=" + allownewsleter + "&cardholder=" + cardholder + "&marital=" + marital + "&interest" + interest +
                "&age=" + age ;
        loadVariablesNum(URL , 0, "GET");
            //getURL (URL);
        gotoAndStop("send_finished");
    PHP CODE
    <?php
    $area =array("","Hong Kong Island","Kowloon","New Territoris","Outlying Islands","Mainland China","Overseas");
    $gender =array("","Male","Female");
    $firstname=stripslashes($_GET['firstname']);
    $lastname=stripslashes($_GET['lastname']);
    $phone=stripslashes($_GET['phone']);
    $email=stripslashes($_GET['email']);
    $area_id=stripslashes($_GET['area_id']);
    $address=stripslashes($_GET['address']);
    $db_year=stripslashes($_GET['db_year']);
    $db_month=stripslashes($_GET['db_month']);
    $db_day=stripslashes($_GET['db_day']);
    $db_year=stripslashes($_GET['db_year']);
    $companynames=stripslashes($_GET['companynames']);
    $title=stripslashes($_GET['title']);
    $kid_no=stripslashes($_GET['kid_no']);
    $gender=stripslashes($_GET['gender']);
    $reward=stripslashes($_GET['reward']);
    $allownewsleter=stripslashes($_GET['allownewsleter']);
    $cardholder=stripslashes($_GET['cardholder']);
    $marital=stripslashes($_GET['marital']);
    $interest=stripslashes($_GET['interest']);
    $age=stripslashes($_GET['age']);
    //echo "firstname=$firstname";
        $smtp_server = "localhost";
        //$from        = "Igor's Group<[email protected]>";
        $from        = "Igor's Group<[email protected]>";
        $subject     = "Elite Card Registration";
        $to          = "[email protected]";
        //$to          = "[email protected]";
        $headers = "Content-type: text/html; charset=utf-8\nFrom: $from\r\nReply-To: $from";
        $body= "Name: $firstname<br>";
        $body=$body . "Telephone: $phone<br>";
        $body=$body . "Email: $email<br>";
        $body=$body . "Address: $address<br>";
        $body=$body . "Birthday (year month day): $db_year $db_month $db_day<br>";
        $body=$body . "Company: $companynames<br>";
        $body=$body . "Title: $title<br>";
        $body=$body . "No of kids: $kid_no<br>";
        $body=$body . "Gender (True = Male): $gender<br>";
        $body=$body . "Reward Selection: $reward<br>";
        $body=$body . "Newsletter(True = yes): $allownewsleter<br>";
        $body=$body . "Existing Cardholder: $cardholder<br>";
        $body=$body . "Marital Status: $marital<br>";
        $body=$body . "Interest: $interest<br>";
        $body=$body . "Age: $age";
        mail($to,$subject,$body,$headers);
    ?>
    Hope to hear from you guys.

    Hi,
    Your code is looking like AS2. Hence providing the AS2 code for your reference.
    First select your Male radio button, open component inspector and type "M" in the data field and press enter. Select your Female radio button, open component inspector and type "F" in the data field and press enter
    Just add the below code instead of your radio button code
    radio_button_listener = new Object();
    radio_button_listener.click = function (evt){
    _root.gender = evt.target.selection.data
    radioGroup.addEventListener("click", radio_button_listener);
    The above code gives you "M" or "F" in your php output.
    Thanks

  • Having trouble with flowable form

    I've created a form in LiveCycle ES and I can't get the flow right. It has numerous tables and subforms and they are all expanding properly but the pagination and flow is all off. The trouble seems to be located between pages 1-3. Everything else is working fine. Any advice?

    If possible, send your form to [email protected]
    Nith

  • Having trouble with flowed form

    Maybe this is a referencing problem, but I am pulling my hair out because I just don't see what the error is.
    The 2 page dynamic form in the link below...
    https://files.acrobat.com/preview/8c174446-6064-46b6-9e39-7c99bcf08918
    ...works fine, UNTIL the first page flows into a 2nd page. THEN, the script in the dropdown list that WAS on the 2nd page (but which is now the 3rd) no longer makes visible the hidden fields. I know you pros out there will know right away what the problem is, and if you can help me out, I'd greatly appreciate it.
    Thanks!
    Jo

    Nifty problem  :-)
    I would personally report this to enterprise support team, as I consider this a bug to be honest.  Anyway ...
    First of all, I noticed that you don't have the problem if you first make a selection in the dropdown and then make the textfield larger and then use the dropdown again.  So, first I thought it was the resolveNode in your code, which is actually not needed.  But that did not solve the problem.  I see this as a layout problem, so I tried to issue an relayout() and ... that works.  But I have no clue why I should issue a relayout(), so for me this is a bug, unless somebody from support picks this up and gives a reason for it.  Anyway, here is how I rewrote your code.  I don't get paid per character I type, so I like short syntax.  Replace your code with this, or add the last line to yours, whatever you prefer.
    Text1.presence = ( this.rawValue == "1" ? "visible" : "hidden" ) ;
    Text2.presence = ( this.rawValue == "2" ? "visible" : "hidden" ) ;
    Text3.presence = ( this.rawValue == "3" ? "visible" : "hidden") ;
    xfa.layout.relayout() ;

  • I am currently having trouble with an attached PDF fill-able form created in Acrobat being non savable in Reader

    Hello, I was wondering if you would be able to help me out?
    I am having trouble with my attached PDF fill-able form, I am creating a form that has a limit of one page so in order for more room in a certain field I have added a Hyperlink to an additional fill-able(secondary) form within the Parent document (primary fill-able form. The secondary form is inserted as an attachment into the Primary form. My problem is when I open this document up in Adobe Reader, the Primary fill-able form is savable but the attached Secondary form for which the hyperlink leads to is non-savable and is a must print only. Is there a way to make the Secondary form savable as well within the same document? or is there another way I could execute what it is I am trying to achieve?
    Trying to save other as extended reader has not worked, also if I save the attachment file as an extended reader first I am unable to attach a return hyperlink back to the Parent document,
    Help would be greatly appreciated please and thank you!

    I can't say for certain without looking at the actual PDF but it does appear that they created one large text box over multiple lines. For a fillable form it may have been smarter to remove the lines and create a box with smaller text that supports multiple lines.
    At any rate, nothing you can do about it with the free Reader (and depending on the security, maybe nothing with Acrobat either.)

  • I am currently having trouble with an attached PDF fill-able form...Help Please

    Hello, I was wondering if you would be able to help me out?
    I am having trouble with my attached PDF fill-able form, I am creating a form that has a limit of one page so in order for more room in a certain field I have added a Hyperlink to an additional fill-able(secondary) form within the Parent document (primary fill-able form. The secondary form is inserted as an attachment into the Primary form. My problem is when I open this document up in Adobe Reader, the Primary fill-able form is savable but the attached Secondary form for which the hyperlink leads to is non-savable and is a must print only. Is there a way to make the Secondary form savable as well within the same document? or is there another way I could execute what it is I am trying to achieve?
    Help would be greatly appreciated please and thank you!

    Here is the code, thought I had put it in the first time, guess not heh. Anyway, I converted the arrayList(accountList) to a String so that I could see the that element I am trying to index is in there, which it is. I also checked the file that i'm populating the arrayList from and it also has the element in it.
    public static void getAccountNumbers() {
              accountList = LoadStoreAccounts.readCollectionObject();     
              accountInfo = accountList.toString();
              JOptionPane.showMessageDialog(null, accountInfo);
              acctNumIndex = accountList.indexOf(accountNumber);
              acctIndex = String.valueOf(acctNumIndex);
              JOptionPane.showMessageDialog(null, "Index of accountNumber    is: " + acctIndex);

  • Having trouble with my PHP code. Appers to get stuck on a white page.

    HI all,
    I have just began having trouble with my PHP code. Was working before and haven't made any changes to the code since last time it worked.
    What happens is after the form is submitted it goes to a white page (no text just all white page) and in the address bar it has the path for my php page. what supposed to happen is either it goes to a success page or a error page.
    I've had a problem where the info entered is correct but was directed to the error page. i managed to fix that issue but i am puzzled what is happening to my php page now.
    Mind you that i didn't write this code i just took over the responsiblities of this website and i am hopping that its a quick fix.
    I appreciate any help you could give me. Thank you.
    CODE:
    <?php
       $to = '[email protected]';
          $from = '[email protected]';
            //Make sure we have some info posted from the form...
            if (isset($HTTP_POST_VARS)){
                //Clear the body of the message to be sent
                $body = '';
                //go through all POSTed variables sent
                while (list($key, $value) = each($HTTP_POST_VARS)){
        if($key <> "Submit" && $key <> "submit") {
         $body .= $key . ' = ' . $value . "\r\n"; 
                //Now building mail headers.....
                $headers = "From: ".$from."\r\n";
                //Mail message
                $success = mail($to, "Email Club" . date("m/d/Y"), $body, $headers);
       // CURL stuff.....
       $ch = curl_init();
       curl_setopt($ch, CURLOPT_FAILONERROR, 1);
       curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
       curl_setopt($ch, CURLOPT_TIMEOUT, 4); //times out after 4s
       curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
                 if ($success){
        //readfile('http://www.lvpaiutegolf.com/thankyou.html');
        curl_setopt($ch, CURLOPT_URL,"http://www.lvpaiutegolf.com/thankyou.html");
        header("Location:http://www.lvpaiutegolf.com/thankyou.html");
                else{
                 // readfile('http://www.lvpaiutegolf.com/error.html');
         curl_setopt($ch, CURLOPT_URL,"http://www.lvpaiutegolf.com/error.html");
         header("Location:http://www.lvpaiutegolf.com/error.html");
       // Output
       //$result=curl_exec ($ch);
       //curl_close ($ch);
       //echo $result'";
    ?>

    Insert the install disk and boot from it. Use disk utitlity to repair your drive and check for errors (report any errors back here) then reinstall the os. This should not erase your data.

  • Having trouble with Microsoft Outlook

    Aloha:
    I am having trouble with my Microsoft Outlook e-mail program.  I can send and receive e-mails OK, but it is constantly trying to send an email message that is not formed correctly.  My error panel remains full of the errors.
    I erased all the error messages, but it just continues to add them.
    I am not, presently, even trying to send an email.  However, in no time at all this widow will be full of such error messages.
    What might my problem be?
    Thanks
    Dan Page
    Hawaii

    Post in the Microsoft for Mac Support forums.

  • I`m having trouble with my new advanced system the mac os X 10.0.3

    Hello everybody...
    I need Help, I would appreciated anything anybody could do to help me...
    I`m trying to install the new software the mac os X 10.0.3 and having trouble transfering all my files form the mac os 9.2.2 classic to my new system...Do i have to erase my hard drive to do a clean install???? Could I transfer my files to my home`s computer, instead of buying a portable smartdisk hard drive of 100 Gb, and then so i could transfer my fiels back to my mac without no trouble ????
    I Hope anyone could answer to my post as soon as possible, Thanks

    Hi, John. If you weren't having trouble with Mac OS 10.0.3, it would be a major surprise. OS X 10.0.x and 10.1.x were unusable beta versions and never should have been released, in the view of most people who ever tried to run them. It would be a severe trial of your patience and a waste of your time to install 10.0.3 on your Mac.
    If you want to run OS X, buy OS X 10.2.x (Jaguar), 10.3.x (Panther) or the current version, 10.4 (Tiger). All are available at reasonable prices from AppleRescue. Tiger is also available from any Apple retailer. Carefully read the system requirements for whichever version you prefer, and be sure your computer meets them before buying. If your Powerbook only has a 10GB hard drive, install a larger one (at least 40GB is sensible, since the cost per gigabyte of smaller drives is now exorbitant compared with larger units) before bothering to install OS X.
    It would be most advisable to copy everything on your current hard drive to an external FireWire hard drive, then reformat and erase the internal drive before installing OS X on it. Doing so insures that your data is all safe and that your internal drive is in tip-top condition when the new OS is installed. After performing the installation, you can copy the contents of the external drive back onto the internal drive. The external drive will then be available as backup space for the entire contents of the internal drive, including OS X, all your applications, and all your data.
    While OS 9 is still installed on your hard drive, check to make sure your Powerbook's firmware is up to date. It will need to be brought up to date while running OS 9, before you install OS X 10.2 or higher. Here is the updater for your 500MHz Tibook:
    http://docs.info.apple.com/article.html?artnum=75132
    If the firmware has already been updated, running the updater again will tell you so and will do no harm.

  • Having trouble with the sound!!!

    Recently I'm having trouble with the way the music played by the iTunes sounds! I first thought I have moved the equalizer's settings but I didn't. Music sounds funny with echo.... I'm sure that's a problem of the iTunes because I have played the same song using Windows Media player and it sounds fine! Can someone help me please???!!!!

    Can I just check.
    You went to System Preferences (The Square grey icon with an Apple and Lightswitch or from the Blue apple menu top left) ?
    Form the List of Preference Panes you choose Sound far right of the second row ?
    And the Sound Effects tab in there ?
    There should be a volume control for them in there and it need moving to the right.
    10:52 PM Monday; January 15, 2007

  • Having trouble with the security questions for iTunes.  Tried to reset them, but the mail from Apple never comes . . .

    Having trouble with the security questions for iTunes.  Tried to reset them, but the mail from Apple never comes . . .

    You need to ask Apple to reset your security questions; ways of doing so include clicking here and picking a method for your country, and filling out and submitting this form.
    (96290)

  • I Am Having Trouble With Mozilla Firefox. For Some Reason I Can Not Type Any Thing In

    I Am Having Trouble With Mozilla Firefox. For Some Reason I Can Not Type Any Thing In. I Can Not Type Anything Into Yahoo Search Or Any Where I Need A Password. Anytime I Try To Type Anythink In It Locks Up Firefox The Same With Thunderbird Can't Write An Email Thunderbird Locks Up When I Start Typing. My Roboform Will No Longer Fill In The Forms. I Have Uninstalled All Three Programs Three Times. Can You Give Any Help.
    Thank You

    Hi,
    Sounds like you have two problems there. One for Firefox and one for Thunderbird.
    We can help you with the Firefox question but your other Thunderbird question will have to go into the Thunderbird queue. You can create a new Thunderbird question by going to [/questions/new/thunderbird]
    Can you try to start Firefox in Safe Mode to see if Firefox works properly with no error? You can start Firefox in Safe Mode below:
    *'''Windows/Mac''': Go to Help > Restart with add-ons disabled
    *'''Linux''': Run ''firefox -safe-mode'' in the Terminal/Konsole
    If Firefox opens up fine with no problems, it's probably one of your extensions that's causing the issue. You can re-enable your add-ons one by one until you find the one that causes the issue upon being re-enabled.

  • Hi, i am having trouble with my mac mail account, i cannot send or receive any emails because of the server connection problems. Message says it could not be connected to SMTP server. Thanks in advance for your help.

    Hi, i am having trouble with my mac mail account, i cannot send or receive any emails because of the server connection problems. Message says it could not be connected to SMTP server. Thanks in advance for your help.

    Hello Sue,
    I have an iPad 3, iPad Mini and iPhone 5S and they are all sluggish on capitalisation using shift keys. I hope that Apple will solve the problem because it is driving me crazy.
    I find using a Microsoft Surface and Windows 8 phone, which I also have, work as well as all the ios devices before the ios 7 upgrade.
    It has something to do with the length of time that you need to hold the shift key down. The shift key needs to be held longer than the letter key for the capitalisation to work. For some reason, this is a major change in the way we have learnt to touch type on computers. I am having to relearn how to type!
    Michael

  • I'm having trouble with something that redirects Google search results when I use Firefox on my PC. It's called the 'going on earth' virus. Do you have a fix that could rectify the vulnerability in your software?

    I'm having trouble with a virus or something which affects Google search results when I use Firefox on my PC ...
    When I search a topic gives me pages of links as normal, but when I click on a link, the page is hijacked to a site called 'www.goingonearth.com' ...
    I've done a separate search and found that other users are affected, but there doesn't seem to be a clear-cut solution ... (Norton, McAfee and Kaspersky don't seem to be able to detect/fix it).
    I'd like to continue using the Firefox/Google combination (nb: the hijack virus also affects IE but not Safari) - do you have a patch/fix that could rectify the vulnerability in your software?
    thanks

    ''' "... vulnerability in your software?" ''' <br />
    And it affects IE, too? Ya probably picked up some malware and you blame it on Firefox.
    Install, update, and run these programs in this order. They are listed in order of efficacy.<br />'''''(Not all programs detect the same Malware, so you may need to run them all to solve your problem.)''''' <br />These programs are all free for personal use, but some have limited functionality in the "free mode" - but those are features you really don't need to find and remove the problem that you have.<br />
    ''Note: If your Malware infection is bad enough and you are mis-directed to URL's other than what is posted, you may have to use a different PC to download these programs and use a USB stick to transfer them to the afflicted PC.''
    Malwarebytes' Anti-Malware - [http://www.malwarebytes.org/mbam.php] <br />
    SuperAntispyware - [http://www.superantispyware.com/] <br />
    AdAware - [http://www.lavasoftusa.com/software/adaware/] <br />
    Spybot Search & Destroy - [http://www.safer-networking.org/en/index.html] <br />
    Windows Defender: Home Page - [http://www.microsoft.com/windows/products/winfamily/defender/default.mspx]<br />
    Also, if you have a search engine re-direct problem, see this:<br />
    http://deletemalware.blogspot.com/2010/02/remove-google-redirect-virus.html
    If these don't find it or can't clear it, post in one of these forums for specialized malware removal help: <br />
    [http://www.spywarewarrior.com/index.php] <br />
    [http://forum.aumha.org/] <br />
    [http://www.spywareinfoforum.com/] <br />
    [http://bleepingcomputer.com]

Maybe you are looking for

  • How to add an image to an IMAGE control in Java WebDynpro

    hi How to add an image to an IMAGE control in Java WebDynpro. Please give me the steps to assign an image to an IMAGE control. Advanced Thanks brahma

  • Error in installing patch 9.0.1.4. "Exception in Thread "main"

    Hi to all.... Want to ask a problem regarding installing patch Oracle database patch 9.0.1.4. Previously, i got problems in installing other patch. The solution i got is to install the below patch. They suggested that i have to install Patch 3038037.

  • OSM task web client buttons getting disabled on submitting orders from creation task

    Hi,            I am relatively new to OSM. I am facing a strange issue. After installing OSM 7.2 in my local machine I have deployed bb_ocm_demo cartridge which comes along with the design studio as a sample cartridge. After deploying the cartridge,

  • Feature Request- Save in Background in Full Screen

    I work in full screen with Menu Bars 98% of the time.  I also enjoy the new save in background feature. The problem is that when in full screen I can't tell when it's saving and the status of the save.  This is particularly frustrating when I'm tryin

  • Home Button delay

    For some reason my iPad mini with Retina Display seems to always be half a second behind other devices when I use the home button to close an app. My friends iPad Air does not have this problem, and both are on iOS 7.1. I usually don't notice it unle