Results 1 to 4 of 4

Thread: Tooltips that stay open

  1. #1
    Join Date
    May 2009
    Posts
    23

    Tooltips that stay open

    i am not goog in coding also have not much knowledge about it but i need help regarding Does anyone know as the mouse hovers how to set a tooltip to stay open for long time ? any one know ?
    thank you

  2. #2
    Join Date
    May 2008
    Posts
    2,389

    Re: Tooltips that stay open

    try this

    ToolTipManager.sharedInstance (). SetInitialDelay (n);

    also

    private void btnNewRound_MouseHover(object sender, EventArgs e)
    {
    toolTip1.Show(".............", btnNewRound, 30000);
    }

    Stays up for 30 seconds

  3. #3
    Join Date
    Apr 2008
    Posts
    2,005

    Re: Tooltips that stay open

    Gets or sets the period of time the ToolTip remains visible if the pointer is stationary on a control with specified ToolTip text.


    Visual Basic (Usage)

    Dim instance As ToolTip
    Dim value As Integer

    value = instance.AutoPopDelay

    instance.AutoPopDelay = value

    C#

    public int AutoPopDelay { get; set; }

    Visual C++

    public:
    property int AutoPopDelay {
    int get ();
    void set (int value);
    }

    JScript

    public function get AutoPopDelay () : int
    public function set AutoPopDelay (value : int)

    check here

  4. #4
    Join Date
    May 2008
    Posts
    2,297

    Re: Tooltips that stay open

    It is possible to pass options to the method simpletooltip in the form of an associative array:
    • margin used to define the minimum distance between the edge of the window and the tooltip in pixels. (5 by default)
    • effect determines the animation that will use jQuery to display the tooltip (Integrated effects jQuery ).
    • click, set to true, it can open the tooltip to click. (false by default)
    • delay, in seconds, helps delay the disappearance of the tooltip to rollout. (0 default)

Similar Threads

  1. How to Disable tooltips in opera
    By strongArm in forum Technology & Internet
    Replies: 6
    Last Post: 25-07-2011, 04:57 AM
  2. Skype won’t stay open.
    By Kelley in forum Technology & Internet
    Replies: 3
    Last Post: 20-06-2011, 09:49 PM
  3. How to add balloon tooltips in Mozilla Firefox?
    By Sahira in forum Technology & Internet
    Replies: 5
    Last Post: 12-03-2010, 08:38 AM
  4. How to Fix Tooltips hide behind Windows taskbar
    By WindowsGeek in forum Customize Desktop
    Replies: 3
    Last Post: 25-10-2009, 05:48 AM
  5. Increasing the Size of Tooltips Text - Windows XP
    By Quimby in forum Customize Desktop
    Replies: 1
    Last Post: 22-11-2008, 04:43 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,718,969,856.72669 seconds with 16 queries