Indigo Rose Software

Professional Software Development Tools

 
Results 1 to 5 of 5
  1. #1
    Join Date
    Feb 2005
    Posts
    4

    Pointing on an image

    I wonder if it is possible when only pointing on an image the name of the image can pop up in a little textfile.

    TIA,
    2frogs

  2. #2
    Join Date
    Jul 2002
    Location
    USA
    Posts
    3,959
    If all you're asking is if it is possible, then the answer is Yes.

    If you're asking how, then you need to provide a bit more information.

    Are you displaying the image in an Image Object or some other object?

    Is the image static?

    What type of object do you want the name to show in, Input, Paragraph, etc.?

    Be specific in what you want, and someone here will more than likely post code or a sample project that does what you want.

  3. #3
    Join Date
    Dec 2003
    Location
    Raleigh, NC
    Posts
    80
    Before you reply, 2 frogs, my guess is that you have an image and wish to display its caption on mouseover but not at any other time. If so, here is an easy way using a label object for the caption.

    Let's call the image object Image1 and the label object Label1.

    In the page's On Preload tab (script), type in: Label.SetVisible("Label1", false);
    [this assures that caption will not be visible when returning to this page from some other page where Label1 may have been set to visible]

    Copy above line and put it in Image1's On Leave tab.

    Lastly, in Image1's On Enter tab, type in: Label.SetVisible("Label1", true);

    Instead of a label object, you could use a paragraph object if you prefer--just change "Label" above to "Paragraph". Hope this helps.

  4. #4
    Join Date
    Feb 2005
    Posts
    4
    Great, this is it. Thank you very much helping me out on this one. It does work perfect.

  5. #5
    Join Date
    Dec 2003
    Location
    Raleigh, NC
    Posts
    80
    Glad to be of assistance.

Similar Threads

  1. Switching pictures with forward/back buttons
    By ilandv in forum AutoPlay Media Studio 4.0
    Replies: 10
    Last Post: 08-08-2004, 04:51 PM
  2. Function: Resize & Center an Image
    By kpsmith in forum AutoPlay Media Studio 5.0 Examples
    Replies: 0
    Last Post: 05-17-2004, 01:36 PM
  3. Making a Thumbnail Image Browser
    By Desmond in forum AutoPlay Media Studio 5.0 Examples
    Replies: 0
    Last Post: 09-26-2003, 02:16 PM
  4. Making an Image Browser
    By Desmond in forum AutoPlay Media Studio 5.0 Examples
    Replies: 0
    Last Post: 09-26-2003, 02:06 PM
  5. Reloading Image Objects at Runtime
    By Desmond in forum AutoPlay Media Studio 5.0 Examples
    Replies: 0
    Last Post: 09-26-2003, 10:26 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts