Can you fix this bug? (Safari)

I have same bug on my ipod touch 1g and my iphone 5.
http://postimage.org/image/rm9af2e8j/
http://postimage.org/image/aiuunam7b/
When I type text, the cursor moves to the left. This happens very rarely. Check the screenshot.
2007(ipod touch 1g ) - 2013 (iphone 5) and you dont fix this?
P.S. sorry for bad grammatic.

And? Nobody answer me?

Similar Messages

  • I have no audio what so ever i have seen in one of the tables where it was deleted how can you fix this i tried everything i know

    == Issue
    ==
    I have another kind of problem with Firefox
    == Description
    ==
    i have been trying to get the audio to play for 3 days now i did see where it had been deleted this is a used comp i haven't had it long can you fix this i'm at my wits end
    == Firefox version
    ==
    3.6.3
    == Operating system
    ==
    Windows NT 5.0
    == User Agent
    ==
    Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3
    == Plugins installed
    ==
    *-Default Plug-in
    *Adobe Acrobat Plug-In Version 5.10 for Netscape
    *Java(TM) Platform SE binary
    *Next Generation Java Plug-in 1.6.0_20 for Mozilla browsers
    *Network Object Plugin
    *Windows Multimedia Services DRM Store Plug-In
    *Npdsplay dll

    Hello Virginia.
    You may be having a problem with some extension or plugin that is hindering your Firefox's normal behavior. Have you tried disabling all add-ons (just to check), to see if Firefox goes back to normal?

  • Hello.I can`t buy applications in my apple id.Then i buy in applications writes error contact support.Can you fix this problem?Thaks

    Hello.I can`t buy applications in my apple id.Then i buy in applications writes error contact support.Can you fix this problem?Thaks

    We are all itunes users just like you.
    You need to contact itunes support.
    http://www.apple.com/support/itunes/contact/

  • HT4199 Since i updated my 3gs i have no wifi connection. How can i fix this bug?? My ipad works perfectly good

    Since i updated my 3gs i have no wifi connection. How can i fix this bug?? My ipad works perfectly good

    Here's a troubleshooter:
    iOS: Troubleshooting FaceTime and iMessage activation

  • Facebook wont load but everything else does? can you fix this please?

    For the past 2 days now when ever i try to log onto facebook it will not load the page. Everything else works just fine. Why is this and how can i fix this annoying problem so i can contact folks overseas?

    Using Safari to access Facebook?
    If so...
    From your Safari menu bar click Safari > Preferences then select the Privacy tab.
    Click:   Remove All Website Data
    Then delete the cache.
    Open a Finder window. From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following
    ~/Library/Caches/com.apple.Safari/Cache.db
    Click Go then move the Cache.db file to the Trash.
    Quit and relaunch Safari to test.
    If nothing above helped, troubleshoot Safari extensions.
    From the Safari menu bar click Safari > Preferences then select the Extensions tab. Turn that OFF, quit and relaunch Safari to test.
    If that helped, turn one extension on then quit and relaunch Safari to test until you find the incompatible extension then click uninstall.

  • Can you fix this script problem?

    Hi everyone
    I got this script
    for gen underline text to pdf
    the problem is it gen each page multi times if the page more then one place has underline text
    Can you fix it?
    //======================================================================
    var f = new Folder("~/Desktop/Revised_PDF put in here/"); 
    f.create();
    var doc = app.documents; 
    app.findTextPreferences = null; 
    app.findTextPreferences.underline = true; 
    for(var i=0;i<doc.length;i++) 
            var found = doc[i].findText(); 
            var _pages = []; 
            for(var j=0;j<found.length;j++) 
                    var txfms = found[j].texts[0].parentTextFrames; 
                    for(var k=0;k<txfms.length;k++) 
                            _pages.push(txfms[k].parentPage.name); 
            for(var j=0;j<_pages.length;j++) 
                    if(_pages[j] === _pages[j-1]) 
                            _pages.splice(j,1); 
            if(_pages.length != 0) 
                    app.pdfExportPreferences.pageRange = _pages.toString(); 
                    doc[i].exportFile(ExportFormat.PDF_TYPE, new File("~/Desktop/Revised_PDF put in here/" + doc[i].name.replace(/\.indd$/i,".pdf")), false);
            _pages = []; 
    app.findTextPreferences = null;
    alert("Done.");
    var f = Folder("~/Desktop/Revised_PDF put in here/" ); 
    f.execute(); 
    //======================================================================
    for specific details:
    Is that possible to write a script for export underline text to PDF?
    thanks
    Harvey

    > the problem is it gen each page multi times if the page more then one place has underline text
    Is this only when you have multiple unconnected text frames (each one containing underlined text) on the same page? Or possibly footnotes, tables, or anchored text?
    Chinna's script assumes all text is in a single threaded story: the findText command searchs one story at a time, from start to end (and across multiple pages). If it reaches the end of the story, it continues with the next one, even if it has to go back to the first page. And anchored objects, text in tables, and text in footnotes all count as "separate texts".
    Chinna's script already removes multiple pages:
    for(var j=0;j<_pages.length;j++)
      if(_pages[j] === _pages[j-1])
        _pages.splice(j,1);
    but it only works for a continuous story, because the "found" occurrences will be in the original page order, such as "1,2,2,3,5,5". This code removes successive doubles (see the Javascript documentation for a description of "splice"). As soon as you have separate stories (tables, 'notes, et cetera), you get a series such as "1,3,3,5,1,6" -- where "1,6" would be the occurrences in a separate story.
    The solution is simple: before removing the duplicates, sort the pages. As far as scripting goes, this is remarkably easy:
    _pages.sort();
    Please note that I just felt like answering your question this once. If you do what you did on most some of your other questions (ask for multiple versions for other formatting, have a different functionality, work on "selected documents" or "all in a folder" or "in a book file", or follow up with questions about totally unrelated scripts) I will probably not answer anymore.
    No offense meant, of course.

  • GridBagLayout with JPanel, only 3 lines. Can you fix this?

    GridBagLayout gridBagLayout = new GridBagLayout();
    setLayout(gridBagLayout);
    panel1.addComponent(modelLbl,0, 0, 0, 0);
    this is all inside of a JPanel that is inside of a JTabbedPane. I want to use a GridBagLayout to arrange the components inside panel1 (which is a JPanel) but the compiler is telling me addComponent is undefined for JPanel.
    Can you figure this out? How can I use a GridBagLayout in a JPanel?
    If you cant use GridBagLayout is there anything similiar available for JPanel?

    well as helpful as that was.....
    i found the answer myself and it goes more like this...
    panel1.setLayout(new GridBagLayout);
    and then you have to create a GridBagConstraints object to enter the contraints, something like:
    GridBagConstraints(int gridx, int gridy, int gridwidth, int gridheight, double weightx, double weighty, int anchor, int fill, Insets insets, int ipadx, int ipady) ;
    and then you just use
    panel1.add(component, GridBagConstraints object);

  • In Windows Live Hotmail, the tabs/elements constantly reload. Can you fix this?

    In Windows Live Hotmail,
    The buttons/elements on the side of the inbox page constantly reload, while I'm reading a message and when I try to go back to inbox, it automatically switches back to the message I was reading before.
    Please fix this!

    See comments 17,44,63,71:<br />
    [https://bugzilla.mozilla.org/show_bug.cgi?id=627729 Bug 627729] - Hotmail web page continually reloads every second<br />
    ''(please do not comment in bug reports; you can vote instead)''

  • Can you fix this in the Icelandic version: "Hlaða niðu Firefox" it should be spelled "Hlaða niður Firefox"

    When I download the Icelandic version of Firefox it says: "Downloading Firefox" or "Hlaða niðu Firefox". It is spelled wrong in Icelandic and should be spelled "Hlaða niður Firefox". Can you please fix it?

    hi gaggi96, thank you for bringing this up - i've forwarded your information to the icelandic translation team ([https://bugzilla.mozilla.org/show_bug.cgi?id=1133329 bug# 1133329]).

  • Recent upgrades prevent loging into Citibank, can you fix this?

    Attempts to login to Citibank.com give "We've had a problem processing your request." This error appears to be from FIrefox, not Citibank, as they have no record of attempted logins. I have cleared citibank cookies and that doesn't help.

    Maybe its the new mixed content blocker?
    Starting in Firefox 23, if a secure page includes certain types of insecure content, Firefox blocks the insecure content and a shield icon will appear in the address bar. See this article for more information about the new mixed content blocker: [[How does content that isn't secure affect my safety?]]
    To temporarily allow the mixed content to be displayed:
    *Click the '''shield icon''' [[Image:Mixed Content Shield]] in the address bar and choose '''Disable Protection on This Page''' from the dropdown menu.
    [[Image:Fx23MixedContentBlocker]]
    To allow insecure content to be displayed in all secure pages, enter '''about:config''' in the address bar and double-click on this preference, to toggle it from true to false:
    '''security.mixed_content.block_active_content'''
    You can also use this add-on instead, to toggle the preference:
    *[https://addons.mozilla.org/firefox/addon/toggle-mixed-active-content/ Toggle Mixed active content] add-on
    You may want to do this only for the current session, then reset the preference back to "true" and check back with the site to see whether it's been fixed, since this is a global setting that exposes you on all sites, not just the one you care about.
    Let us know if this helps!

  • HT5900 Hi I am in Ireland and while apple tv is very limited over here I still have one, My request please can u update apple tv to work as the app store I already subscribe to app which are not available in the updates you release can you fix this please

    Can you update the video and Tv series abilities of apple tv in Ireland

    First, not all features are available in all regions.  This is clearly stated on the Apple website.
    Second, these are user to user support forums.  No one here has any control over what is available on the ATV.

  • Bookmarks toolbar disappears, do view, toolbars, turn off then back on it works. Can you fix this permanently??????

    Randomly occurs, sometimes multiple times daily, sometime goes for week or two without occuring. Switching to Chrome might fix this?

    Does this happen in the same window, or is the toolbar missing in new windows, or both?
    You mention that it may only happen every couple of weeks, suggesting this pre-dates Firefox 36. How long would you say it has been happening?
    Do you have any add-ons or custom style rules that affect the layout of the toolbar area? Examples would include Classic Theme Restorer, full themes, or a userChrome.css file.

  • I am a professor at Kettering College, Kettering, Ohio. The college learning management system is Angel. When Firefox updated to 7.0.1 Angel would no longer send e-mail. Can you fix this?

    Any attempt to send an e-mail message in Angel resulted in the following non-responsive script: https://angel.kc.edu/jscript/yahoo/utilities/utilities.js:9. Our IT support suggests uninstalling Firefox 7.01. and going back to an earlier version. I would much rather have Mozilla assist us in making Angel work with Firefox. As Angel is a widely used learning management system I would think Mozilla would want to fix this problem. Thanks. Daryll Ward

    Any attempt to send an e-mail message in Angel resulted in the following non-responsive script: https://angel.kc.edu/jscript/yahoo/utilities/utilities.js:9. Our IT support suggests uninstalling Firefox 7.01. and going back to an earlier version. I would much rather have Mozilla assist us in making Angel work with Firefox. As Angel is a widely used learning management system I would think Mozilla would want to fix this problem. Thanks. Daryll Ward

  • Can you fix this flaw with archive & install?

    Any ideas what might be causing this alert after an Archive & Install? >
    "Application Launch Failure"
    The application "Transport Monitor" could not be launched because of a shared library error:
    "8<Transport Monitor><Transport Monitor>HotSyncLib.PPC>"
    It appears after login as the menu bar loads, yet everything seems to be working perfectly - so far.
    Any ideas what might be causing it - and how to fix it, other than just clicking 'OK' to get rid of the alert?

    Reinstall Palm Desktop if you use it, or remove the Transport Monitor from the list of login items for your account in the Accounts pane of System Preferences if you don't.
    (28373)

  • My screen is black with lines and is rainbow because something was thrown at it can you fix this?

    My Mac G5 has a black cracked screen with rainbow lines on it because something was thrown at it

    Hi,
    To do the PRAM reset, just click on the highlighted words in my last post, it will take you to an Apple Support page which tells you how to do it. No, it will not delete anything.
    If you have only had it 10 months, it is under the standard 1-year warranty.
    To make an appointment with the Genius Bar, visit this site. If you are not in the United States, choose your region from the pulldown menu on the right.
    By the way, that PRAM link is for Yosemite. If you have Mavericks, go here.

Maybe you are looking for

  • Need help in creating header node at reciver XML file?

    Hello All, Iam creating proxy to file scenario.....at receiver side iam creating XML file like below. <?xml version="1.0" encoding="UTF-8" ?> <OrderTransaction> <TransactionInformation Version="2.0.0">   <DocId>0180000186</DocId>    <Sender>........

  • External Table Authentication

    Hi I am using OBIEE 11g. In my project we have to implement external table authentication. For that we have import the external table to physical layer. and build the repository variable using initialization block. In that i have written a following

  • Error when compiling code for crio 9068 using LV 2014 SP1

    I have a project that was mostly developed in LV 2013 SP1.  I recently upgraded to LV 2014 SP1, and I can no longer compile the FPGA VI.  At first, I received an error stating that the Xilinx Vivado 2013.4 compilation tool was not installed.  I found

  • DMEE - Structure paid line item counter

    Dear Friends, We have created DMEE structure as per bank format.Bank will print payment advice also by using this txt file. In payment advice part there are 3 line start from "H" which is header part of payment advice and will count like 1, 2 ,3 belo

  • Photo quality needed for iMovie?

    Hello all, I'm VERY new to iMovie! I'm trying to import photos in iMovie from iPhoto and wondering if keeping them their original size (sometimes 25 MB) is okay? Or do I need to MODIFY all the photos I want to put into a different resolution/size? If