Display some text if mouseOver an image

Hi,
I want that the user can see some text if he passed with the mouse through an image..
This is my code but it doesn't work !!
<h:graphicImage onmouseover="return escape('some text')"
          value="media/info.gif" width="15">
</h:graphicImage>Thanks

Change this -
<pre align="left"><img src="007.jpg" width="266"
height="261">How do I
get
to this -
<pre align="left"><img src="007.jpg" width="266"
height="261"
style="float:left;">How do I get
Is that what you want?
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
==================
"Erniegar" <[email protected]> wrote in
message
news:g0km0b$l76$[email protected]..
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
Transitional//EN"
> "
http://www.w3.org/TR/html4/loose.dtd">
> <html>
> <head>
> <title>Damian Wilson Music</title>
> <meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1">
> <style type="text/css">
> <!--
> body {
> background-repeat: no-repeat;
> background-attachment: scroll;
> background-position: 0;
> background-image: url(wallpaper4b.jpg);
> }
> a:link {
> color: #0000FF;
> }
> a:visited {
> color: #0000FF;
> }
> .style16 {
> font-weight: bold;
> font-family: Verdana, Arial, Helvetica, sans-serif;
> font-size: 36px;
> }
> .style17 {font-size: 12px}
> -->
> </style>
> </head>
>
> <body>
> <div align="center">
> <pre class="style16">DAMIAN WILSON
> <span class="style17"><a
href="index.htm">Return to
> Homepage</a></span></pre>
> <div align="left">
> <div align="center">
> <pre align="left">
Download Damian Wilson's music FREE of charge
> below
> !
>
> This music is freely made available, by Damian, for
personal use only.
> Please do not attempt to sell or re-distribute this
music elsewhere !
>
> </pre>
> </div>
> </div>
> <div align="left">
> <pre align="left"><img src="007.jpg"
width="266" height="261">How do I
> get
> text in this big blue space above ???</pre>
> </div>
> <p align="left"> . </p>
> </div>
> </body>
> </html>
>
>

Similar Messages

  • Can you display some text after you have checked a yes or no box?

    Can you display some text after you have checked a yes or no box?
    Ex:
    Yes (Please contact Bob x3-1234) only want it to appear when you check box)
    No

    Sure. If you use a field (button, text field) to display the text, the Mouse Up script of the Yes check box could be:
    getField("button1").display = event.target.value === "Yes" ? display.visible : display.hidden;
    Change "button1" to the actual name of the field and "Yes" is the export value of the Yes check box. You can use whatever you want, and you'll probably want to make the button read-only as well.

  • Firefox doesn't display some text on certain pages.

    I've noticed that on some pages, Firefox doesn't display certain text. I have the newest version of Firefox installed and my flash and java are updated. The text displays fine on Chrome and IE. Please see my example in the screenshots of the stevenson.edu webpage. Does anybody know what I can do to fix this problem or if there is some sort of plugin I am missing to display certain content? Thanks.
    Screenshot of Firefox: http://i47.tinypic.com/123359k.jpg
    Screenshot of Chrome: http://i48.tinypic.com/2uy3ay1.jpg

    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Further information can be found in the [[Clear your cache, history and other personal information in Firefox]] article.
    Did this fix your problems? Please report back to us!

  • Javascript function doesn't display alt text of the initial image in recordset

    I have the following javascript code to display the alt text
    database field of the current moused over thumbnail image. All
    works fine except for the initial image's alt text. It does not
    display:
    PAGE EXAMPLE:
    http://www.canchair.com/new_web_product_detail.asp?ProductID=198&ProductFamily=1&ProductFa milySub=10
    HEAD SECTION JAVASCRIPT CODE:
    <script type="text/javascript">
    <!--
    var currentImage;
    function showBigImage( isource,bigImage,header ) {
    var theImage = document.getElementById( 'largeimage' );
    theImage.src = isource;
    currentImage = bigImage;
    document.getElementById('photoHeader').innerHTML=header;
    document.getElementById( 'largeimage' ).alt=header;
    PAGE CODE:
    <a href="javascript:;">
    <img src="imagescript.asp?path=<%= images.Fields.Item(
    "url_img" ).Value %>&Width=36" border="0"
    onmouseover="showBigImage( 'imagescript.asp?path=<%=
    images.Fields.Item( "url_img" ).Value %>&Width=250','<%=
    images.Fields.Item( "url_img" ).Value
    %>','<%=(images.Fields.Item("alt_img").Value)%>' )" alt=""
    /></a>

    Why don't you show the rendered code? (Not server code)
    Mick.
    aonefun wrote:
    > I have the following javascript code to display the alt
    text database field of
    > the current moused over thumbnail image. All works fine
    except for the initial
    > image's alt text. It does not display:
    >
    > PAGE EXAMPLE:
    >
    >
    http://www.canchair.com/new_web_product_detail.asp?ProductID=198&ProductFamily=1
    > &ProductFamilySub=10
    >
    > HEAD SECTION JAVASCRIPT CODE:
    >
    > <script type="text/javascript">
    > <!--
    > var currentImage;
    > function showBigImage( isource,bigImage,header ) {
    > var theImage = document.getElementById( 'largeimage' );
    > theImage.src = isource;
    > currentImage = bigImage;
    > document.getElementById('photoHeader').innerHTML=header;
    > document.getElementById( 'largeimage' ).alt=header;
    >
    > }
    >
    >
    > PAGE CODE:
    >
    > <a href="javascript:;">
    > <img src="imagescript.asp?path=<%=
    images.Fields.Item( "url_img" ).Value
    > %>&Width=36" border="0"
    onmouseover="showBigImage( 'imagescript.asp?path=<%=
    > images.Fields.Item( "url_img" ).Value
    %>&Width=250','<%= images.Fields.Item(
    > "url_img" ).Value
    %>','<%=(images.Fields.Item("alt_img").Value)%>' )" alt=""
    > /></a>
    >

  • NW04s WAS 7.0 displays some texts in chinese language

    I have installed NW04s ABAP instance (WAS 7.0)with all the default settings. When I logged in to the SAP system, I noticed that all the text messages are being shown in some Chinese language. Later I realized that, not only this screen but also all the screens have the same problems.Has anyone seen this kind of weird problem? Do you have any idea what is causing this? Any help in this regard will highly be appreciated.
    Thanks
    Rajan S

    Are you saying that different language pack is installed in this system?. I checked through SMLT and noticed only two language support packages of GERMAN and ENGLISH are imported.Also verifed through I18N , the system has  ENGLISH and GERMAN only. This is the default install and I have not installed any other language at all
    Thanks for you help.

  • Regarding showing of some text with one parameter.

    Hi
    I want to know that is there any funtion module by the help of which I can display some text information about one parameter. This will be displayed as the icon just after the selection field. On clicking on it the text information will be displayed.

    Here is an example of handling it manually in your program.  You still need to create the data element and the documentation of the data elment, in this example, it is ZTEST. 
    report zrich_0001.
    type-pools: icon.
    selection-screen begin of line.
    parameters: p_test type ztest.
    selection-screen pushbutton (4) help user-command help.
    selection-screen end of line.
    at selection-screen output.
      write icon_information to help.
    at selection-screen.
      case sy-ucomm.
        when 'HELP'.
          data: links type table of  tline.
          call function 'HELP_OBJECT_SHOW'
               exporting
                    dokclass = 'DE'
                    dokname  = 'ZTEST'
               tables
                    links    = links.
      endcase.
    Regards,
    Rich Heilman

  • Lion text problem: Some text does not display properly in Safari and Firefox

    Hello
    Some text in Safari and Firefox is seriously degraded, making it useless. I changed to Firefox because Safari was displaying wrongly, but Firefox displays the same way, so it seems to be an OS problem. See image as an example:
    I cannot see subtitles on BBC streamed movies, and the timing of the movies on the bottom ribbon do not display correctly.
    I am using Lion 10.7.5
    Is there a solution for this problem?
    Thanks for any help.

    Unbelievable (and I still cannot believe that) - is wmode="transparent/opaque/etc" - not supported by safari ? then how do you suggest we go about transparent flash elements on web pages? why isn't it working on safari while on every other browser on earth it does?

  • How to Display Html Text with Image

    HI Frens,
    I am getting some html text from a source, Later i want to
    display that data, but it may happened that it has some images in
    it. Currently I am using text area to display it.
    Now My question is if there is any image will it show, as we
    can see it in our mails? if Not, Which component I should use for
    this?
    I also want that I need to select some file from, How can i
    get open dialog box here?
    Thks in Advance for replies frens:
    Ashish Mishra

    Hi Ashish,
    If I have understood your requirement properly, u want to
    display html text on a flex application.
    I think there its better if you use the html component to
    display the text. I have a sample code which will give you a
    direction to think on.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application
    xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="vertical"
    creationComplete="initApp( )">
    <mx:Script>
    <![CDATA[
    public function initApp( ):void
    var initHtml:String = "<html><head> \
    <title='Page Example'/> \
    <body bgcolor='#ccddee'><h1>Page
    Example</h1> \
    <p>This is a complete <b>HTML</b> \
    page as a
    <em>string</em>.</p></html></body>";
    this.html.htmlText = initHtml;
    ]]>
    </mx:Script>
    <mx:HTML id="html" width="100%" height="100%" />
    </mx:Application>
    Also do you want a file open dialog box??

  • PDF file is missing some text while displaying on the iPad

    I have sent a PDF Invoice to my customer, he called me back and said that I must be joking because half the important text is missing.
    I have opened up the PDF on my computer and everything was there, so I was scratching my head... Than he called me back and said that
    he also opened up the file on his computer and the missing text was there. That way we have discovered that the PDF file is for some strange
    reason not displaying some parts of the text. I have checked on my own iPad trying to display it in iBooks, Adobe Reader, directly in a mail app,
    everywhere I could only see a part of the text.
    Can someone please explain to me how to fix this on the iPad or within the PDF itself?
    Thank you.

    Have you tried viewing the page at any different (even just slightly different) magnifications?
    I have what may be a related problem.  I created a PDF file from InDesign's "Export" to PDF feature. (See it at http://www.mydfz.com/pot20/2046today.pdf). When I went to that web page and opened it, I noticed a problem on page 2 as follows:
    The ad for "Duds-N-Suds Laundromat" should say "20, 30, & 40lb Dexter machines" between the company name and their hours. If I click on the icon to show the whole page, that space is blank. If I increase or decrease magnification the text appears. The whole page setting is shown as 86.5%. If I type that specific percentage in the box, the text appears. It is only when I use the whole page icon that the text vanishes.  If I try to access the original file on my own machine, the text in question is visible under all the conditions I tested. I couldn't get it to vanish.
    I just tried to access the web version again and this time the text is missing no matter what I do!  I uploaded a fresh copy of the file but it still won't show the text. Very strange!
    Evidently there is some bug in the rasterization routines but it only manifests under certain non-obvious circumstances. I grabbed screen images of the two states (visible and vanished) and will be happy to email them to anyone interested in pursueing this further.

  • Scribble some text on the image

    i am developing one application in applet.for my application i need to scribble some text on the image.the scribble text must displayed on the image when ever i open the image

    We do not support this functionality. I suspect you are talking about watermarking?
    I would suggest you send a message to [email protected] , the product manager for interMedia and describe your application. This would be helpful in defining future requirements. He may also know of partners that can supply this technology.
    You can add text to an image using JAI or some other packages before the image goes into the database, or when it goes out.
    Larry

  • Thumbnail images, bigger images and some text PROBLEM

    Unclear title, with an unclear problem.
    What I'm wanting to do is, when I click on a thumbnail image, I want the content in the DIV on the right to change accordingly to display the image and information relating to the thumbnail you have just clicked. I'm using Dreamweaver CS5 on MAC:
    - I have a page split into 2 vertical columns. On the left I have 6 thumbnail images in their individual DIVs, wrapped all together in another DIV container
    - on the right of the page I have assigned a large DIV to display a big image with a description underneath of what the project was etc...
    I know you can attach a behaviour to the thumbnail to change the big image on the right, but I have a short paragraph of text below the big image too, and I don't particularly want to make the image and text one huge image. I want to keep the text, text.
    How do I do it? Is this a simple thing? or is there a lot of coding to do this with JQuery or Javascript or something? Is there something to do with Data record sets involved?
    Is there a way of doing it that when you click on the thumbnail that it can load the relevant image and text into the DIV on the right?
    Sorry if it's not clearly explained, not sure how to do it, therefore not sure if I'm describing it properly.
    As always, all help and advice very welcome.

    Hi Murray,
    Here is a screenshot of the page in question.
    - On the left are the thumbBox DIVS, (shown here, "thumbBox1")
    - On the right there is a main container, "galleryDisplay"
    - Within "galleryDisplay" there is a DIV for the large image, "galleryDisplayImage", and another DIV to display a paragraph of information on the project, "galleryDisplayInfo".
    Just to repeat, I want that when you click on the "thumbBox1", that the content of "galleryDisplayImage" and "galleryDisplayInfo" change in accordance to the thumbnail clicked.
    Murray *ACP* wrote:
    The easy way to do this is to have each click on the thumbnail change the display Property of a container (containing both the image and the caption) from "none" to "block".  In the column on the right, just line up a series of divs, each containing the desired image+caption, and use DW's Chage Property behavior on a null link surrounding the thumbnail.  For example, a thumbnail image:
    <a href="#" onClick="MM_changeProp('image-caption1','','display','block','DIV'); return false"><img src="path_to_thumb.jpg" width="165" height="50"></a>
    Each click on a thumb would also have to change the display Property of all other image-caption containers to "none".
    I don't understand what I have to do with the relevant large image and text. You say to "line up a series of divs"... I don't understand. Where do I "store" the image and text combinations for each project? I can understand how an image can be loaded into the image div, but how and from where do I load in the html text with css applied into the info div?
    Can I change the content of 2 separate divs from one click?
    Sorry for not being overly clear, but I can't get my head round this.
    Thanks for your help. I'm sure I'll get there in the end with your expertise.

  • Some Text Messages do not display when using large font on iphone

    When using increased font size (accessability function) on iphone some text messages will not display. The iphone just seems to lock up. If normal font size is used text massage displays with out any issue. When font size is increased, text message will not display again.

    Hi Peter
    Actually, Captivate does have an essentially unlimited number
    of undo levels. But that number may appear to be different. The
    number of levels starts when you begin editing the project. If you
    close and re-open a project, that starts the undo process over.
    I've tested and I gave up after about 280 or so undos.
    Where Captivate doesn't allow an undo, it normally warns you
    with a rather catastrophic looking dialog.
    Cheers... Rick

  • Firefox page images do not display only text and links

    New desktop (not this one) with windows 8.1 Pro, Firefox 29, Norton Internet security. When I go to many of the Firefox pages images do not display, only text and links. This is true for the "get add-ons" page. I can search for add-ons, but when I try to install one, the installation fails. Is there a security setting in windows or NIS that is blocking Firefox images and installations? The Firefox installation went smoothly without error. Other sites do not have this problem.

    Wow! I never would have thought of that! My time settings were incorrect when I set up the PC, and I thought I set them. I did have the day, date, and time set correctly. But I did not have AM/PM set right. So, I was off by 12 hours. I corrected it and, voila, all works well.
    I'm so happy now, because I can now get all the security extensions I've grown to love:
    - NoScript
    - Ghostery
    - Better Privacy
    - Adblock Plus
    You guys are great! Thank you so much for your help.

  • Is there a way set up a tooltip popup that displays alternate text on an image rollover in DW CC?

    I would like to set up a tooltip popup that displays alternate text on an image rollover. I am using Dreamweaver CC. Used to be a Spry widget, but those options seem to be gone. Not looking for anything elaborate, just a simple tooltip message box.

    Hi Daylilybud,
    If you are looking for a tool tip on hovering over the image, try adding attribute  ->  title="Your text" inside your image tag.
    For example <img src="" alt=""  title="Test"> .
    See if this resolves your problem.

  • Some text on websites doesn't display properly

    Some text doesn't appear correct in Firefox (but does in IE). The text appears to get jumbled or scrambled but if I cut and paste the text from Firefox to a text file, the text is normal so it must be something in the display setting. The link below is a screenshot of Firefox.
    [http://www.pkhlineworks.ca/screen.jpg]
    Any ideas what is causing this?

    This issue can be caused by an old bitmap version of the Helvetica or Geneva font or (bitmap) fonts that Firefox can't display in that size.<br />
    Firefox can't display some old bitmap fonts in a larger size and displays gibberish instead.<br />
    You can test that by zooming out (View > Zoom > Zoom Out, Ctrl -) to make the text smaller.<br />
    <br />
    Uninstall (remove) all variants of that not working font to make Firefox use another font or see if you can find a True type version that doesn't show the problem.<br />
    There have also been fonts with a Chinese name reported that identify themselves as Helvetica, so check that as well.<br />

Maybe you are looking for

  • Word does not work after update

    I have Word on my Mac and after an update it tells me that my Word is no longer compatable with my computor ***.

  • Music Not Purchased from iTunes Not Synching

    My iPhone 5 no longer syncs any tracks that I did not purchase directly from iTunes (such as those I uploaded from CDs.) The albums show up on my phone, but when I attempt to play the songs they refuse to start and a red stop sign appears next to the

  • Dynamic populate works in livecycle, but not in reader

    When I'm in Livecycle, my dropdown list is dynamically populated from my XML file when i preview it, but when I open the PDF in Reader 8.0, it does not auto-populate. I've specified where my XML file is, so it should be able to find it.

  • Help with a Discoverer Query

    Hi can anyone help me create the fields I need below. I have a table in disco, below is an extract. Subj     Parent     Subj Desc 5001     P500     Non-Executive Dir P500     PBOA     Chairman & Non-Executives PBOA     PAYX     PAY BOARD PAYX     EXP

  • Faulting Application disp+work.EXE, Faulting module disp+work.EXE

    Hi All, Today one of our BIW server went into hand mode. All DIA work processes were showing running status and users were not able to logon. The same situation continued till 3 hours. We have checked in winodow event viewer and found following error