How to create roll-over/hover text?

Please have a look at the 'Team' section of this website I made: http://sinoprestige.com/team.html
I have been asked to give each person a mini biography. Is there a way I can make it so when the mouse cursor hovers over someone's name e.g. Peter Graham, text (biography) pops up?
Need to do this for all members. I have the text, I just don't know how to put it on. The biographies are actually quite long, maybe 200-300 words per person...
Alternatively, how would I do this by making links to each biography? I.e. if you were to click on the name (hyperlink) it would take you to another page containing the bio... is that possible? I would much prefer the first option!
Urgent help greatly appreciated!!
Thanks.

Hi T-Bone,
This is a perfect case for using the Tool Tip Composition Widget. Use the tool tip widget and drag the triggers over the names of the team members, select the first trigger and place the target where you would like it. In the Tool Tip properties set the setings to 'Stacked'. You can have as many tooltips as you like and make them as big or small as you want and style them however you want as well.
But in short you can easily do what you suggest using the Tool Tip Widget. Actually you can do both scenerios if you like. Set the Tool tip to onmouseover in the settings and give the names link to a full Bio page if you like.

Similar Messages

  • How to create a muli line text area using JavaFx

    Hi all,
    Since the preview SDK does not contain TextArea any more, I am wondering how to create a muli line text area using JavaFX. The behaviour of this text area/field should be somehow similar to JTextArea in Swing or StyledTextWidget in SWT.
    Does JavaFX have any support for this? What would be a sensible approach to create such a widget?
    Thanks for your suggestions,
    br michael

    This is a pretty old thread (I know I came across this while searching for something similar recently), but I figured I'd throw this out there in case other people might find this useful. As I write this, JavaFX's latest version is 1.3... which may have added the needed functionality since the last post.
    You can now create a multi-line text area using a TextBox and by specifying the nubmer of lines and setting the "multiline" value to true. It may not offer all of the same functionality as JTextArea, but it did the job for what I needed... newlines by pressing enter, scrollbar if text surpasses height, etc.
    Here's a simple example:
    Group {
       content: [
          TextBox {
             text: "This is a multi-line textbox"
             lines: 10  // <-- this may/may not be necessary depending on your situation. Default is 5.
             multiline: true
    }Edited by: loeschg on Jul 29, 2010 2:59 PM

  • How to create a table using Text Layout Framework?

    How to create a table using Text Layout Framework? I meen real tables - like in HTML.

    Cell as indipendant TLF should work, I have created my table using same approach and works fine for me ... this is where it is
    http://apps.live-documents.com/docs/openWebDoc.do?docId=1480607
    Regards
    Raf

  • How to create pdf files with text field data

    how to create pdf files with text field data

    That looks like it should work, but it doesn't.
    I opened the PDF I had created from Word in Acrobat (X Pro). Went to File > Properties. Selected "Change Settings". I then enabled "Restrict editing...", set a password, set "Printing Allowed" to "none", "Changes Allowed" to "none", and ensured that "Enable copying of text..." was disabled.
    I saved the PDF file, closed Acrobat, opened the PDF in Reader, and I was still able to select text and graphical objects.
    I reopened the PDF in Acrobat, and the document summart still shows everything as allowed. When I click on "show details" (from File > Properties) it shows the correct settings.
    Any ideas?

  • How to create a custom shape text field?

    I have a diamond shape movieClip and I need add a text Field in the same shape format.
    Now how to create a diamond shape text field?
    Please help me!
    Thanks,
    Jafy

    there's no easy way to do that in flash.  that's an advanced task.

  • How to create a hyperlink from text within a rollover caption

    Hello,
    I have a rollover caption that appears when the learner rolls
    over a topic category (text caption). Within the contents the
    rollover caption that appears I would like to provide an active
    link to a website that is refered in specific rollover caption.
    There are several rollover captions and associated hotshops, but
    only ONE needs an active link.
    Play control for the whole project is controlled by a NEXT
    button, so the project is paused until it is clicked.
    It doesn't seems like Captivate allows you to select text and
    then link it - you have a set up a click box or button. I don't
    understand how I could use these objects without them appearing all
    the time. I only want the link to appear in ONE rollover caption.
    Does anybody know how I might be able to acheive this
    functionality?
    Thanks lisa

    Have a look here:
    http://htmldb.oracle.com/pls/otn/f?p=31517:1
    There are lots of examples that may be usefull for you.
    Denes Kubicek

  • How to create a "Command Line"/"Text Validation"

    I want to create a command line like the picture. I'm using "Input Text" method for text. Variable name is "myText", Instance Name is "line".
    How can I use "if" in input text like this:
    Command name is: exit, if user wrote "exit" command, exit the flash app.

    This is a pretty old thread (I know I came across this while searching for something similar recently), but I figured I'd throw this out there in case other people might find this useful. As I write this, JavaFX's latest version is 1.3... which may have added the needed functionality since the last post.
    You can now create a multi-line text area using a TextBox and by specifying the nubmer of lines and setting the "multiline" value to true. It may not offer all of the same functionality as JTextArea, but it did the job for what I needed... newlines by pressing enter, scrollbar if text surpasses height, etc.
    Here's a simple example:
    Group {
       content: [
          TextBox {
             text: "This is a multi-line textbox"
             lines: 10  // <-- this may/may not be necessary depending on your situation. Default is 5.
             multiline: true
    }Edited by: loeschg on Jul 29, 2010 2:59 PM

  • How to create a tab-delimited text file?

    Hi,
    I need to create a tab-delimited text file at presentation server getting content from an internal table. My file should also have a header - also tab-delimited. Data for a header is stored in some work area.
    Any ideas how to add tab-delimiter into a text file? Or should I go for a HEX file and use
    CONSTANTS: c_tab TYPE x VALUE '09'.
    and separate my data with this constant instead?
    Any thoughts whould be appreciated.
    TIA
    Ivaylo Mutafchiev

    Hi Ivaylo,
    Refer sample code:
        IF i_final_head[] IS NOT INITIAL.
          CALL FUNCTION 'GUI_DOWNLOAD'
            EXPORTING
              filename                = lcl_filename
              filetype                = 'ASC'
              write_field_separator   = 'X'
            TABLES
              data_tab                = i_final_head
            EXCEPTIONS
              file_open_error         = 1
              file_read_error         = 2
              no_batch                = 3
              gui_refuse_filetransfer = 4
              invalid_type            = 5
              no_authority            = 6
              unknown_error           = 7
              bad_data_format         = 8
              header_not_allowed      = 9
              separator_not_allowed   = 10
              header_too_long         = 11
              unknown_dp_error        = 12
              access_denied           = 13
              dp_out_of_memory        = 14
              disk_full               = 15
              dp_timeout              = 16
              OTHERS                  = 17.
          IF sy-subrc <> 0.
            MESSAGE s000 WITH text-031.
            EXIT.
          ENDIF.
        ENDIF.
    Reward points if this helps.
    Manish
    Message was edited by: Manish Kumar

  • How to remove desktop innerpage hover text

    Hi
    Does anyone know how to remove the 'desktop innerpage' hover text that appears in the main content area. Can't see how to get at this one.
    Regards
    Phil

    Hello,
    Here is link.
    Link: [http://help.sap.com/saphelp_nw04/helpdata/en/b4/771158e4cb4bf6af9974380948db86/frameset.htm]
    Goto Portal Content > Portal Users > Standard Portal Users > Default Framework Page and then select check box Desktop Inner page and remove.

  • How to create the Over exposure wipe effect?

    Films like The Secret produce a wipe effect of over exposed light emiting from the video as it transitions to the next shot. Any idea how to creat this effect?
    Thx
    Kevin

    It can definitely play a factor. DVD has a little more leeway, and I've never seen an issue on my TV, but it's properly set up. For the typical viewer who probably has their brightness turned way up so they can watch TV in the afternoon with the sun shining right on the screen, the transitions will probably tear and distort.
    I love the vapor across transition, but only use it for web based projects, and things I know that only I am going to be watching.

  • How can I type over existing text on a web page?

    I would like to be able to type over existing text on a web page. This can be done by hitting the "insert" key in several applications; however, it does not work in Firefox.
    I'm running Firefox 31.0 and Windows 7.

    Unfortunately that is not possible in Firefox.
    The insert key is not supported (i.e. Firefox is always in insert mode), so you will have to delete the old text and type the new text.

  • How to create a retro 3d text effect in indesign Cs6?

    Hello, i need to know how to make this retrolift 3d text effext in indesign.

    http://indesignsecrets.com/making-long-shadows-indesign.php

  • How to Create the Engraved/Carved Text Effect.

    Hello everyone,
    First I have search the forum for this topic but did  not find it.
    I am looking to create a Carved/Engraved  Text Effect.
    Something like this: http://www.patrickjudson.com/projects/example.jpg
    There are other better examples but basically the text appeared to  be  engraved or carved in the background.
    I have been  struggling to learn this.
    Any ideas?
    Thanks for  the help.

    The short answer is to use layer styles which will do a pretty good fake of this effect. If you are looking to actually distort a texture, check out this tutorial: http://www.2morrow.dk/75ppi/3dtext/default.htm (you may substitute KPT3.0 with Photoshops shape burst gradient effect).

  • How to create booklet from ordinary text in pages?

    Can anyone tell me how to create a booklet from ordinary A4 pages either in Microsoft Office with Parallell Desktop or in Iwork pages?

    See  Imposing booklets.
    Peter

  • Lagging when rolling over objects, text boxes, images in indesign CS5

    I just installed CS5 suite onto my new upgraded machine. In InDesign, whenever I roll the cursor over and object, image, text box, there is about a 1-2 second lag in the cursor, almost like my system freezes as Indesign differentiates between the bounding boxes. My system is brand new and exceeds all system requiremnts for running CS5. Photoshop renders 3D lightning fast and I have encountered no other issues in any of the other Apps so far. Indesing itself runs fine until there are multiple frames on a page at which point just moving the pointer from one side of the screen to the other results in choppin movements and lag. Any help or thoughts would be greatly appreciated.

    Set your Live Screen Drawing preference to delayed. Does that help?
    Bob

Maybe you are looking for

  • Integrated ITS 6.40 - Connect to SAP R/3 4.6 C

    Hi, here first the tecnical details as required : SAP-BW 3.5 SP 15 SAP R/3 46C Web browser IE 6 Integrated ITS release 6.40 Kernel patch level 105 I am trying to establish the ITS connection in order to be able to jump from Web reports to a specific

  • How to sync two iTunes libraries between two Macs?

    I have two macs (Mavericks) plus the latest version of iTunes. What I want to do is to mirror any change I do on one library to the other iTunes library using Google Drive (iTunes Library Mac 1 to iTunes Library Mac 2 and vice versa). I installed Goo

  • Transfer iPod Movie toe Library (PC)

    I am new to the iPod scene and do not know how to transfer movies from the ipod to the PC. I purchased a move from the iTune Store using my PC at work. I want to add it to the PC at home from my iPod (30GB Video). How do you syncronize the iPod to up

  • Resize image code doesn't work for some JPGs

    Hi. I'm using the below code to resize images and store them on the server. However, with some JPGs, the resize produces a reddish tint on the image. Any ideas what could be causing this? Here's the original image: http://www.unctv.org/tWxkBbq_10M6wK

  • Acrobat X update - .pdf printer missing afterwards

    I get notified of an update but every time I try to install the .pdf printer is missing afterwards. The only way I can get it back is to uninstall Acrobat and reinstall from original CD, but then I cannot update it