First and second letters reversed when I type

Is anyone else finding this? When I type, quite frequently the first and second letters are reversed. It happens across programs, and only started after I installed Lion. I assumed it would be a temporary bug, but it persists, annoyingly.

What version of FireFox are you using?  Try upgrading.
https://discussions.apple.com/message/15121441#15121441

Similar Messages

  • Calendar first and second alerts switch on their own

    Hi, I've been having this problem for a while with my iPhone 4, wondering if anyone can help.
    I've tried looking if there's already a thread for this issue, but couldn't find one -- maybe I'm just not using the correct keywords.
    Every time I set my first and second alerts on my calendar appointment and saved them, they seem okay, but 2 minutes later when I go back to the same appointment, the first and second alerts switch on their own, e.g.: I set first alert to go on 2 hours before and second alert to go on 1 hour before the appointment. Save. When I return 2 minutes later, first alert turned to 1 hour before and second alert 2 hours before.
    Which is silly, since who needs their second alert to be farther than their actual appointment? Even iphone knows this and cancels the second alert altogether. By the time I've been alerted, I only have an hour to get ready for my next appointment.
    Anyone has encoutered this problem and has successfully solved them? I've tried setting my default time zone under setting to local, and even turning off iCloud, to no success.
    Any suggestion is greatly appreciated. Thanks.

    I have found what appears to be a resolution to this issue, when I add an event and I select the event time, the date time scroller opens up allowing me to select the time of the event.
    The issue occurs when I leave this selector expanded and continue to set the event properties. When the time selector is still open and you select the alert times, it swaps the alerts every time. When you collapse the event time selectors before choosing the alert times, the alerts are not switched.
    This bug appears to be an issue with the scrolling selector form item if there is more than one open it appears to error out.
    If you don't know how to collapse the event time selector, once you have selected the time, click on the date/time that is in red text just above it and it will collapse the selector.
    Hopefully this fixes the issue for others, and it is ridiculous that this has gone one for so long, not a good way to keep your customers Apple, my wife was so aggravated at this that she was about to cancel her iPhone.

  • How to get the first and second quarter from CRT

    Dear Freinds,
                    I have one scenario , the Functional SPEC says Read the payroll results and from the CRT  get all the 4 quaters
    for the wage type /5UH  and sum them and then pass on the to field in the main strucutre.
    Iam using the FM HR_GET_PAYROLL_RESULTS
      CALL FUNCTION 'HR_GET_PAYROLL_RESULTS'
        EXPORTING
          pernr                         = fp_v_pernr
          permo                         = fp_v_permo
          pabrj                         = fp_v_pabrj
          pabrp                         = fp_v_pabrp
          actual                        = 'A'
        TABLES
          result_tab                    = i_payresult
        EXCEPTIONS
          no_results                    = 1
          error_in_currency_conversion  = 2
          t500l_entry_not_found         = 3
          period_mismatch_error         = 4
          t549q_entry_not_found         = 5
          internal_error                = 6
          wrong_structure_of_result_tab = 7
          OTHERS                        = 8.
    Iam collecting all the Actual Result (current result) values
    on the selection screen iam passing for month april (04 2008)
    so this falls in the second quater .
    the internal table   i_payresult is picking up only the second quater (01-04-2008 to 30/04/2008 )  ,but since on the selection screen iam pasing as other period (04 2008) the internal table  i_payresult  returing from the FM  (HR_GET_PAYROLL_RESULTS) only   picks the second quater,
    could any one let meknow how i can pick up the first quarter as well and add the first and second quater to mee the requirement .
    Please help me in this regard
    Thanks & regards
    maduri

    Hi Manoj,
                 Thank you for giving me idea for going further  regarding this problem , so my final question for this is
    as per FS they said they are going to enter the payroll
    area and the other selection as 04 2008 
    In order to achieve the first quarter , because 04 2008 means they are going to enter for the second quarter , the payroll results will come only for second quarter and not for the first quater , if they want to sum all the two quarters then they shouldnt pass on the selection screen   the dates as 04 2008, instead they has to pas
    01 01 2008 to 30 06 2008 , as there is no point in they passing as 04 2008 as we are going to consider from 01 2008 to 062008 .   Please correst me if am correct regarding the dates passing on teh selection screen
    or if the user enters on theslection screen still enter 04 2008 and will be  able to acheive the first quarter ??
    Please answer me this point before i can change the logic of the code and tell to my FO regarding this point.
    thanks & regards
    Madhuri

  • 2nd loop  combined the first and second statement lines...why?

    I wrote this program to calculate the price. I want to have users to enter the item name and price continuesly, then once the hit 'f', it will give them the total. I was able to enter the first item and price but then the second time around, this is what show on my screen:
    Item to purchase (enter F when finished): price for this is:
    It combined the first and second lines in one line. I can't figure out why.
    Please help.
    This is part of my code below:
    for (;;)
    String F ="F";
    System.out.print("Item to purchase (enter F when finished): ");
    item=sc.nextLine();
    if(item.equalsIgnoreCase (F))break;
    System.out.print("Price of this "+ item +" is: ");
    price=sc.nextDouble();

    Insert a sc.nextLine(); before the nextDouble.
    And insert a "\n" at final of System.out.print string.
    for (;;)
    String F ="F";
    System.out.print("Item to purchase (enter F when finished): \n");
    item=sc.nextLine();
    if(item.equalsIgnoreCase (F))break;
    System.out.print("Price of this "+ item +" is:\n ");
    price=sc.nextDouble();
    sc.nextLine();
    }

  • Display either ( first and second page ) or only second page on smart form

    Hi All,
    There is a requirement in which we get Program name and smart form name from table TNAPR.Now the smart form contains 2 pages.We have to check condition in the program and based on the condition we have to Display either ( first and second page ) or only second page of the smart form.
    Can any one please tell how to solve this .
    Tahnks in advance.

    SSFCOMPOP-SPONUMIV-->Number range number
    SSFCOMPOP-TDPAGESLCT-->Pages selected for printing
    Data: t_out type ssfcompop.
    If COndition.
    t_out-sponumiv = 'Number Range'.             " 1-2  or 2
    ESLE.
    t_out-sponumiv = 'Number Range'.
    ENDIF.
    OR:
    If COndition.
    t_out-TDPAGESLCT = '2'.        " Else Bot pages will print      
    ENDIF.
    Pass T_out to the function module.
    CALL FUNCTION 'FORM'
        EXPORTING
    *   ARCHIVE_INDEX              =
    *   ARCHIVE_INDEX_TAB          =
    *   ARCHIVE_PARAMETERS         =
    *   CONTROL_PARAMETERS         =
    *   MAIL_APPL_OBJ              =
    *   MAIL_RECIPIENT             =
    *   MAIL_SENDER                =
    OUTPUT_OPTIONS             = t_out
    *   USER_SETTINGS              = 'X'.
    Regards,
    Gurpreet

  • Requirement to print data of first and second report of an ALV at once

    Hi,
    I have an interactive ALV report in which on double click of any of the record on first report, its details get displayed in second report. My requirement is to print all the data (of first and second report) at once.
    Kindly tell me how can I achieve this functionality.
    Regards,
    Seema Naharia

    Hi Seema,
    Try with this FM 'REUSE_ALV_HIERARCHICAL_LIST_DISPLAY'.   
    Regards,
    Sujatha B.

  • Db first pojo second or reverse?

    Hi there,
    I used to work with iBatis, first I used to design the database and then auto-generate the pojos/DAO from my db-design. Now I moved to hibernate.
    Question: In hibernate, what approach is better to use, db first pojo second (create first the db and then reverse-engineer the pojo/daos) or pojo first - db second.
    Thank you!

    in a realistic environment the database is usually a given and cannot be (easily) changed by the developers.
    More often than not the accounts you get simply won't have the authority needed to execute any DDL whatsoever.
    In fact, in several environments I have worked in I didn't even have update access, the only database operations I was allowed to do were select statements and execution of a restricted set of stored procedures.
    In such a situation, a Java first approach is obviously impossible.
    Of course you could if you're starting from scratch install a local database and work in that, exporting the created table structure and giving it to a DBA in the hope he will recreate it inside the real database (but don't hold your breath, many of them won't do it, at best (for you) they'll change names, at worst (for you) they'll create something completely different that does the same thing more efficiently).
    So you have to assume you will have to map an existing database to your application.

  • I cannot seem to control the Find Bar. It pops up and tries to search when I type in most any field (google, passwords, etc.) . I hit escape every time to make it stop. This is annoying. Is it possible to disable or uninstall this feature?

    * Firefox 5.0
    * Windows 7

    You can use the Tab key to select a search engine on the bottom bar and press Enter to use the search engine to do the search.
    *https://support.mozilla.org/kb/Search+bar
    In the current Firefox 34 release there is a new "one-off" search bar.
    This search bar doesn't show the name of the search engine and a logo.
    You can type one letter to make a drop-down list appear where you can see suggestions and see the used search engine and that also has bar at the bottom where you can select other search engines that are enabled via the Search tab in Options/Preferences.
    You can use the Tab key to select one of the other available search engines and press the Enter key to search with the selected search engine.
    Click the search engine icon and click "Change Search Settings" to open the Search tab in Options/Preferences (positioned between Tabs and Content) to select the default search engine and select which search engines to show in the search bar drop-down list that opens when you start typing search terms.

  • VBA Merge PDFs - Error when first and second PDF are the same

    Using http://khkonsulting.com/2009/03/adobe-acrobat-and-vba-an-introduction/ as a guide, I am able to successfully merge multiple pdf's together into one document using VBA (Access mdb), except when the PDF being merged to has the same name as the next PDF.
    Here's my scenario.  An Access table is updated with a list of reports that need to be printed.  All of these reports are PDF's.  I loop thru this table and merge the PDF's according to an identifier, then print the group.  There are times
    when there are multiple copies of the same report for an identifier.  If the PDF being merged to has the same name of the PDF being merged, an error occurs.  How can I handle this situation?
    Sample data:  This identifier (ESO and Pulling) needs to merge these PDF's (Aaa.PDF) together which happen to have the same name.  Aaa.PDF is trying to merge Aaa.PDF and this throws an error.
    Aaa.PDF ESO  Pulling
    Aaa.PDF ESO  Pulling
    This identifier merges fine despite having the same PDF twice.  But the first PDF is not named the same.  Xxx.PDF is the first PDF and merges the next two into it.  The last two
    are named the same.
    Xxx.PDF  916  Pulling
    Bbb.PDF  916  Pulling
    Bbb.PDF  916  Pulling
    Code:
    pdfDoc1.Open (filesToMerge(1))
    numPages = pdfDoc1.GetNumPages()
    Set pdfDoc2 = CreateObject("AcroExch.PDDoc")
    Dim i As Integer
    For i = 2 To intNbr - 1
    pdfDoc2.Open (filesToMerge(i))
    If pdfDoc1.InsertPages(numPages - 1, pdfDoc2, 0, pdfDoc2.GetNumPages(), True) = False Then
    MsgBox "Cannot insert pages"
    End If
    pdfDoc2.Close
    Next i
    If pdfDoc1.Save(PDSaveFull, "C:\....\ReportPacket__" & Trim(CStr(intReportCount)) & "__" & ... & ".pdf") = False Then
    MsgBox "Cannot save the modified document"
    End If
    pdfDoc1.Close
    The pdfDoc1.InsertPages command fails, displays "Cannot insert pages", then displays "Method 'Close' of object 'CAccroPDDoc' failed.
    Thanks for any help or advice.

    Hi
    As far as I know, Access didn't provide such method. But I think you are able to achieve this goal through some 3rd party PDF component
    Hope this will help you.
    Best Regards
    Lan
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • I want to erase a site so that it isn't the first thing that comes up when I type into the url line

    Every time I type into the URL a specific site is the first thing up. I would like to erase this site. I have tried clearing the history, doesn't do any good. I visit google 20 times a day but still this site is first everytime I start to type "g". How do I :
    1) erase my preferences on the url line that pop up
    2) better yet how do I get rid of the one offender from the list that pops up.

    If that site has a star at the far right then it is a bookmark and you need to remove that bookmark by clicking the star and click the remove button. If the entry is not a bookmark then highlight the entry in the drop down list and press the Delete key.
    See http://kb.mozillazine.org/Deleting_autocomplete_entries

  • Acrobat XI alignment issue first and second line of paragraph

    Converting from html in Windows 7 - same result in IE and FireFox: First line of paragragh hangs about 3 pixels left and when I hit text edit the first line is in text box all buy itself with rest of paragraph in a separate text box. Had a co-worker who has Acrobat 9 reproduce and his is one text box as expected so issue is not in html code.
    Looks like a bug to me!

    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform 
    Be well...

  • Lack of First and Last Name Reversal in Address Book

    I just got a new iMac and transferred the contents of my old eMac running on OS 10.3---(latest) using the Mac transfer system. Problem: in the address book most of the cards do not respond to the Preference setting for First or Last name first. Some do, they toggle back and forth as I change the setting, but most stay unchanged with the Last name first. All respond properly to changes in the sort setting.

    I know the phones only have a single Name field, but there is such an option to change the sort order and display! Did you look in the menu I listed?
    I've just tried it with 5 Sony Ericsson phones I have with me here (W610, K800, K510, Z610 & W200) and that I use iSync with on a daily basis and the option is there and it works perfectly.
    It's in the W810 manual on Page 62:
    http://www.sonyericsson.com/cws/support/products/userguides/w810i
    where it says:
    "To select sort order for contacts *> Contacts > Options > Advanced > Sort order* to select sorting by first or last name"
    With *Sort order* set to *By first name* it displays:
    Anne Baker
    Bill Smith
    Charles Jones
    With *Sort order* set to *By last name* it displays:
    Baker, Anne
    Jones, Charles
    Smith, Bill

  • Balance of F.01 and FS10n is different, when currency type is 40

    All GL Balance from F.01 and FS10N is different for year 2009 and currency type 40, But for year 2008 and currency type 40 all GL balance is match. and if currency type is 10 and 30 all GL balance is match in any year.
    thanks every much, if someone help me to resolve it.

    Hello,
    Actually, you should get the same result.
    The possible cause why you have different results can be that you didn't run the balance carry forward (f.16) for ledger ?? (currency type 40) for fiscal year 2009.
    You can checl this in tables t881 and t882.|
    You can run it even with year 2008 closed. There is no risk, no data is changed in 2008, only the balance carry forward is transfered to the new fiscal year 2009.
    I hope it solves your issue
    Best Regards,
    Vanessa Barth.

  • Updated to iOS 8 and now safari crashes when u type in the search window.

    I Have an iPhone 5 and updated to iOS 8 and since than my safari crashes whenever you type in the search windo. Anybody else have this problem or know of a solution?

    I Have an iPhone 5 and updated to iOS 8 and since than my safari crashes whenever you type in the search windo. Anybody else have this problem or know of a solution?

  • I got an iphone and its activated but when i type in the serial code for applecare it says my phone isnt activated

    my iphone is activated but apple is saying it isnt and i cant set up the applecare for my phone

    so what exactly did you think we users here could do for you?

Maybe you are looking for