Strange "tool tip:" message when reading blogs in Safari

Today, I was reading a blog in Safari (latest version) in SnoLo (latest version). Something caught my eye. I looked at the lower part of the screen and noticed that the idle cursor that was positioned over a word in the blog had turned into a pointer hand, but there wasn't a hyperlink in the word. I just shrugged it off until I noticed it flick again and the hand had turned into a message, like a tool tio in most applications. The tip said "Discover what top martial artists & the Army don't want you to know"! Whaaaaa?
I scrolled down the blog and waited. After a minute or so, the pointer changed to a hand and 30+ seconds later, displayed the same message. I took a screen snap, and was able to get it before the tool tip faded.
http://www.michaelbradydesign.com/Transfer/AppleForum/Strange_tooltip.png
I switched to another blog and was able to replicate it. This time the message said "Sign up for the #1 voted stock newsletter for free today."
There was no such commercial message on either blog page, nor was the window sitting on top of another window with a web page with such an advertiser.
What in the world is going on? Has anyone seen a similar thing?
For the record, yesterday, I updated iTunes and a Java update.
TIA and all that.

Hi MIchael,
You can disable tooltips using the Terminal app /Applications/Utilities.
Instructions here.
http://www.macosxtips.co.uk/index_files/disable-tooltips-safari-firefox.html
Carolyn

Similar Messages

  • Customise Tool Tip Message

    Hi All,
    I have a Date Component on my page and basically I am trying to Disable the Saturadays and Sundays from the Calender which I did using the disabledDaysOfWeek attribute. By doing so, I am getting a default tool tip message (in Bold) that says
    Example: 11/29/1998
    Enter a date that falls on one of the following days: Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday
    So, I want to customize it by removing Saturday and Sunday from the above message. I tried shortDesc which did not work, instead displays the typed message (un-bolded) along with the above bold message.
    So, can I do achieve it? If not, I would like to disable this tool tip message.
    <af:inputDate value="#{bindings.SelectDate.inputValue}"
    label="Preferred Date :"
    required="true"
    shortDesc="#{bindings.SelectDate.hints.tooltip}"
    binding="#{backingBeanScope.beanName.id1}"
    id="id1"
    disabledDaysOfWeek="sat sun">
    <f:validator binding="#{bindings.SelectDate.validator}"/>
    <af:convertDateTime pattern="#{bindings.SelectDate.format}"/>
    </af:inputDate>
    Edited by: Saif Khan on May 14, 2012 4:23 PM

    Umesh,
    Thank you very much. I have just put the InputDate component onto the page and this code seems to be working in my Laptop with ver 11.1.2.1.0 and win XP. For some reason its not working in my work computer with win7 enterprise and ver 11.1.1.5.0. I will try to use the same code in work computer tomorrow and check.
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1" xmlns:f="http://java.sun.com/jsf/core"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <jsp:directive.page contentType="text/html;charset=UTF-8"/>
    <f:view>
    <af:document title="untitled2.jspx" id="d1">
    <af:form id="f1">
    <af:inputDate label="Label 1" id="id1" disabledDaysOfWeek="sat sun"/>
    </af:form>
    </af:document>
    </f:view>
    </jsp:root>
    I will surely post you if its working in the work computer as well. And i am sorry to trouble you which I didnt mean to. :)

  • Updating Tool tip message of Query panel Operators

    I have a requirement to modify the tool tip message of Query panel operators. Currently the following messages are displayed when I hover over the 'CONTAINS' operators for the 'name' field in the query panel - "Operators for Name" & "Contains". I want to replace these messages with custom message. Please let me know if this possible. I understand that I can provide custom message for a 'Custom Operator' . But checking if there is a easier way of doing this.
    Any pointers will be appreciated.

    Hi,
    use the Resource Strings mentioned here http://docs.oracle.com/cd/E28280_01/apirefs.1111/e15862/toc.htm#query and look for how to skin these labels: http://docs.oracle.com/cd/E28280_01/web.1111/b31973/af_skin.htm#autoId10
    Frank

  • All tool icons are gone from safari and apple mail tool bars. Tool tips works when you hover over the box with the missing icons. Macbook pro  OS

    all tool icons are gone from safari and apple mail tool bars. Tool tips works when you hover over the box with the missing icons. Macbook pro  OS X 10.8.4
    The boxes that the icons were in are still there, but no icons

    Hello jo90733,
    I would recommend reinstalling Mountain Lion to replace the missing/damaged components of these applications. While the process shouldn't affect any data (images, music, etc) you have on the system, it's always a good idea to have a backup in place prior to reinstalling.
    OS X Mountain Lion: Back up your Mac
    http://support.apple.com/kb/PH11371
    OS X Mountain Lion: Reinstall OS X
    http://support.apple.com/kb/PH10763
    Important: You need to be connected to the Internet to reinstall OS X.
    Choose Apple menu > Restart. Once your Mac restarts (and the gray screen appears), hold down the Command (⌘) and R keys.
    If you’re not connected to the Internet, choose a network from the Wi-Fi menu (in the top-right corner of the screen).
    Select Reinstall OS X, and then click Continue.
    Follow the onscreen instructions. In the pane where you select a disk, select your current OS X disk (in most cases, it is the only one available).
    To start the installation, click Install.
    Cheers,
    Allen

  • Displaying TOOL TIP message over an applet

    Hi,
    How to display a tooltip(hint) like message when the mouse moves over an applet. Here is the rough source code, Please do the needful.
    import java.applet.*;
    import java.awt.*;
    public class Dis extends Applet implements MouseListner
         public void init()
              setLayout(null);
              ButtonAb b = new ButtonAb("click me"); //this is another class that is being called here, this class extends Component, I have written all ActionListeners and MouseListeners in this class only
              b.add();
         //public void addMouseListener(MouseEvent me)
    When the mouse moves over the Button("click me"), a hint box or tooltip like message should be displayed. It is easy doing with VB or Swing, but I wanted to it with AWT. Please give me some source code also.
    Thanks in advance
    Uma

    There are several ways to implement tooltip in awt. I prefere a general ToolTip class that can be added to any Component, and that is easy to use:
    something like this:Button but;
    but = new Button("Push");
    add(but);
    new ToolTip(but, "Push this button if you want to push this button");The code above should add a ToolTip to the java.awt.Button, so that everytime the mouse hoovers over the button, the message gets displayed.
    The idea is to make a ToolTip that can be added to any java.awt.Component using one line of code only. How do one achive that? Ok, here is a pseudo implementation of the ToolTip class:class ToolTip extends java.awt.Canvas implements Runnable, MouseListener, MouseMotionListener
       private String m_strText;
       private Component m_Component;
       private Thread m_Thread;
       private int m_iX;
       private int m_iY;
       public ToolTip(Component comp, String strText);
          m_strText = strText;
          m_Component = comp;
          comp.addMouseMotionListener(this);
          comp.addMouseListener(this);
       public void run()
          try{
             Thread.sleep(500);
             // Here its time to display the tooltip:
             // We need to add it.
             Component comp = this;
             while((!comp instanceof Applet) &&
                     (!comp instanceof Frame))
                comp = comp.getParent();
             ((Container)comp).add(this);
             int x,y,w,h;
             x = m_iX+m_Component.getLocationOnScreen().x-comp.getLocationOnScreen.x;
             y = m_iY+m_Component.getLocationOnScreen().y - comp.getLocationOnScreen.y;
             h=30;
             w=getFontMetrics().stringWidth(m_strText);
             setBounds(x,y,w,h);
          cathc(InterruptedException e)
       public void mouseEntered(MouseEvent e)
          start(e.getX(), e.getY());
       private void start(int iX, int iY);
          m_iX = iX;
          m_iY = iY;
          m_Thread = new Thread(this);
          m_Thread.start();
       public void mouseExited(MouseEvent e)
          stop();
       public void mouseMoved(MouseEvent e)
          stop();
          start(e.getX(), e.getY());
       private void stop()
          if(m_Thread != null)
             m_Thread.interrupt();
          Container parent = getParent();
          if(parent != null)
             parent.remove(this);
       public void paint(Graphics g)
          g.drawString(m_strText, 0, 20);
          g.drawRect(0,0,getSize().width, getSize().height);
    }The baseclass could be changed to java.awt.Window.
    using Window gives the ToolTip the posibillity to extend beyond the borders of the Applet (or the Frame), but in IE it gives you the "warning applet window" displayed on the botton of every ToolTip.
    Ragnvald Barth
    Software engineer

  • Receive message when downloading ITunes or Safari for Windows 7 64 Bit.  "Installation package could not be opened. Verify package exists or contact application vendor to verify this is a valid Windows Installer package."

    Received message when trying to install Itunes or Safari for Windows. " Installation package could not be opened.  Verify package exists or contact application vendor to verify this is a valid Windows Installer package". 

    I to am having the same issue. I have a admin account and logged into it as well and still have the same message pop up. Contacted live support the woman i spoke with had to send it up higher. We went through every thing including her trying (taking over as a host on my laptop) still have not bee contacted this June will be a year that i have heard nothing from them sine She di everything she could and pushed it up higher.

  • Error message when reading PDF files

    I'm running FFox 5.0 and have the Adobe Acrobat plug-in (V10.1.0.534). My system in WinXP/SP3. I recently updated my Adobe Reader to Version X and ever since then I encounter an error when trying to read a pdf document on a web site. The document comes up, but in a bit of a strange way. First I get an "(JavaScript Application)" error box showing the message "Load: TypeError: browser is unidentified." Then when I touch the OK button the document is displayed, but with a double window header, the upper one showing "Mozilla Firefox" and the lower one the orange-shaded "Firefox v". As I said, the document is displayed OK, but something isn't normal. Is it the fault of the updated Adobe Reader, or FFox V5, or what?

    Does it work the first time after you delete your Normal.dotm file? You may be running into the same issue that is detailed in this post Unable to open document. Please check to see if you have read permission for the above file.

  • Strange non-fatal message when Firefox 6.02 starts in Win XP Pro x64

    Since updating to version 6.02, a non-fatal message appears when starting Firefox. Message is: "Using registry key: Software\AppDataLow\1fd1c56". Clicking "OK" results in Firefox loading. Frequent page redirects to random sites. No change after backing up profile with Mozbackup 1.51, uninstalling/reinstalling Firefox, then restoring profile from Mozbackup. Modest improvement after regedit deletion of registry key, but it reappears. Malwarebytes found and removed Win32:Adrotator, but problem persists.

    On Firefox 7.0.1 on Windows XP, I found a mysterious "z 4.6.7.6" addon that was causing the problem. The "z 4.6.7.6 add-on" doesn't have an Uninstall feature, so I typed "about:support" in the address bar and looked up the extension ID. I then deleted the folder "C:\Program Files\Mozilla Firefox\Extensions\<Extension ID>" and restarted Firefox. The add-on was gone and so was the problem!

  • Af:statusIndicator tool tip message .

    Hi All,
    I am using Jdev 11.1.2.0.0.
    How can i change the af:statusindicator tooptip message?.Suppose in idle stage its showing 'idle' but i want customize that messge.Is possible ?.
    Thanks,
    Vass Lee

    Hi,
    Thanks for yours response. i given my code for yours code.
    <af:panelGroupLayout
                                 inlineStyle="background-color:white; height:70px;" id="ptpgl2">
              <af:commandLink disabled="true" id="logoLink" action="index">
                <af:statusIndicator id="ptsi1" shortDesc="Calwin"/>
              </af:commandLink>
            </af:panelGroupLayout>
    af|statusIndicator::idle-icon
        content: url("/org/calwin/uimanager/images/CalWINLogoSmall.png");
       content: "Calwin";
        width: 60px;
        height: 5.7em;
    }Here what i have done in wrong thing ?please tell me?
    Thanks,
    Vass Lee

  • Strange "Database Alert" message when opening Mail

    For the last several days, each time I launch Mail, it retrieves mail and then up pops an alert:
    "inconsistencies in your sync information for bookmarks were detected and have been repaired."
    What is that all about?
    It's annoying. How can I fix it?

    I receive the same result with contacts

  • Getting "no longer supported" message when opening gmail though Safari on Windows based laptop.  Are others having problem?  Any solutions?

    I have been using Safari to access a gmail account for about a year.    Today, I got a message that Safari is no longer supported by gmail and I need to upgrade.  But I'm using the latest version of Safari. as far as I can tell.  Anyone else getting this message?  Is there a solution?
    Also having issues with yahoo mail, as of today, when using Safari, but I'll post that on a separate forum question.  I am mentioning it here because I wonder if the 2 are related. Gmail message appeared for first time today but I was getting this message from Yahoo earlier this year.  I tried the work around found on this and Yahoo forum but could only get "basis" to work on Yahoo.  .Today, even basic yahoo is not acting the same, reformating and showing commands in the text when I try to reply to an email.  Annoying.

    Google seem to have decided in the last week or so that Safari 5.x, which is the newest Safari version available for Mac OS X 10.5 (Leopard) and 10.6 (Snow Leopard) is "not supported" any more, even though there are many reasons for staying with these OS X versions.
    Try this (at your own risk, but it works for me), as it seems to remove the message by tricking Gmail into thinking your Safari version is newer:
    -- Quit Safari
    -- Locate the following file (location depends on your OS X version):
    OS X 10.6 Snow Leopard:
    /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/Resources/Info.pl ist
    OS X 10.5 Leopard and older:
    /System/Library/Frameworks/WebKit.framework/Versions/A/Resources/Info.plist
    -- Drag the file to your Mac's desktop to make a copy. Also make a safe copy somewhere else eg your Documents folder, as if you lose or mess up the file Safari will not launch at all. Having a backup browser is also recommended.
    -- Double-click it to open it in TextEdit
    -- Locate the CFBundleVersion value (the last line in the file that has numbers in it) and increment the second digit of it to the required version of Safari e.g. Safari 6 now seems to be the minimum version that Google support so change the second number from 5 to 6 (don't change anything else, only the change the second number). The value is different depending on your OS X version but as an example, for Snow Leopard 6534.59.10 becomes 6634.59.10
    -- Drag the file back from the desktop to its original location, choose the option to replace the old version, and enter your password when prompted.
    -- Run a permissions repair in Disk Utility to set the permissions in the file back to what they should be (not required, but good practice).
    -- Launch Safari and test Gmail.

  • Keep getting error message Adobe reader plugin for safari

    I keep getting an error message saying that Adobe REader has detected Missing Components that require repair. etc. Ask to select components I would like to repair but the message freezes solid and I can't even force quit it.
    Anyone else seen this?

    HI,
    Launch Adobe Reader. From the Menu Bar click Help/Repair Adobe Reader Installation.
    If you still have problems, go to ~/Library/Preferences and move the com.adobe.Reader.plist file to the Trash, then try the Help/Repair Adobe Reader Installation again.
    Carolyn

  • I get constant URL invalid messages when i go to safari web sites

    why do i get constantURL INVALID messages on Safari we sites

    Does Firefox or other browsers let you onto those sites? If so, try Reset Safari in Safari Menu. And a long shot from another thread is to be sure automatic date box is checked in Sytem Prefs Time & Date.

  • Why do I get an error message when trying to download Safari 6.02

    0Error message is NSURL Error domain error 3001)(102

    I get the same error message but as yet I don't have a solution

  • J Tool Tips - Strange and Awkward Bug

    Hello Everyone,
    I am having a very strange J Tool Tip bug. Okay first of all, the tool tip that I have created works when it is inside of a single panel for a single label. Basically, what I have is a number of J Labels - each having a unique tool tip. Here is the most basic of my code (notice that I have customized my own Tool Tip to have a yellow background and black foreground):
    currentLabel = new JLabel("LABEL TEST")
                // Extends the JLabel and overrides createToolTip() to return a custom tool tip:
                @Override
                public JToolTip createToolTip()
                    JToolTip toolTip = super.createToolTip();
                    toolTip.setComponent(this);
                    toolTip.setBackground(Color.YELLOW);
                    toolTip.setForeground(Color.BLACK);
                    return toolTip;
            currentLabel.setToolTipText("Testing Tool Tip Message");Okay, so here's the deal. Here's the tricky part. When I have this label nested inside of a Grid Bag Layout Panel, it works perfectly fine. It shows up when the user's mouse hovers over the label.
    Here's my problem. The project that I am working on is actually nested in many complicated panels. This project has about 100 java files, so I am just going to cut it short and let you know which kind of panels it is nested in.
    Starting from the lowest panel:
    1. J Panel (Grid Bag Layout)
    2. J Panel (Box Layout)
    3. J Panel (Border Layout)
    4. J Split Pane (Right Side)
    5. J Panel (Border Layout) (Largest Panel)
    One of the things I noticed is that now when I hover over the labels, a very small microscopic blue dot appears right to the left of the mouse cursor. I seriously think this is the Tool Tip, but for some reason it isn't showing any text. The strange thing is that the tool tip works when panels 2, 3, 4, and 5 are non-existent. If you guys have any ideas or suggestions, please let me know! I'd really appreciate it!
    Thanks,
    Brian

    What I might do is : see if listening for mouseEntered and mouseExited events work on the labels when in their complex arrangement. And make a little tooltip class based on JWindow (perhaps with a JLabel on its contentpane so you can display HTML). I found this approach more reliable. Though one would expect this is what is already implemented, the inbilt behaviour may overcomplicate things resulting in some no-shows. I seem to remember having this problem with tootips on table cell renderers.
    Edited by: kina_tji on Jul 23, 2008 6:33 PM

Maybe you are looking for

  • How do I code relative links as function parameters within Templates?

    I am a newcomer looking for best practices for a "How Do I?" properly code relative links as function parameters within an Adobe template (DWT) which accomodates page creation at 2 different level of folders. Dreamweaver doesn't appear to handle auto

  • Error while using selection option variable in the selection screen

    Hi All, I am facing an issue while using selection option variable in the selection screen for one of my reports. Scenario: For the field "Region From" we need to have wild card logic () in tes selection screen, for example if we put "BE" in the sele

  • Can no longer access iTunes store nor log into Apple ID account

    I can suddenly no longer log into iTunes store and my over 10 year old Apple ID log in information seems to have been corrupted. Apple ID and pasword are unrecognized, and what's weird, when I get directed to My Apple ID to reset the password, I do N

  • SCCM 2012 R2 WSUS wsyncact error 0x8013141A

    i have new servers with Server 2012 R2, SCCM 2012 R2, and SQL 2012 SP1 CU6. SCCM will not sync with WSUS. "Synchronize Software Updates" fails and no updates appear and the scheduled sync in "SUP Component Properties"\"Sync Schedule" runs, the WSUS s

  • Message area

    Can we have two message area UI controls in the same view (one at the Top and the other at the bottom section) and ensure that the messages are displayed at both places? Requirement reason:The View is a very big form which the user has to fill in, an