Announcement

Collapse
No announcement yet.

Second Question for Today - DHTML

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Second Question for Today - DHTML

    Its me again!

    I have another question, this time its about embedding DHTML, I have looked through the forum for the answer but cant seem to find it.

    What I am wanting to be able to do is have a couple of words on the screen which when I hover over them with my mouse they produce an info box.

    http://simplythebest.net/scripts/DHT...script_43.html

    Visit that site for some examples.

    What I want to know is, is this possible in Actinic 7? If I place all the code within !!< >!! would that work?

    Cheers,
    O.

    #2
    Ok, since I posted this message I have started testing it, and so far, it looks like it might work! If it does I will let you all know.

    Looks like I will need to create a new template with the javascript instructions and then use the !!< >!! For the actual links.

    O.

    Comment


      #3
      Ok, it can be done, all you have to do is create a new template and place
      Code:
      <!-- Courtesy of SimplytheBest.net - http://simplythebest.net/scripts/ -->
      <div id="overDiv" style="position:absolute; visibility:hide; z-index:1;">
      </div>
      <script LANGUAGE="JavaScript" SRC="overlib.js"></script>
      within the <BODY> section and then use the !!< >!! statements to enter
      Code:
      <a href="http://simplythebest.net/scripts/" onmouseover="overlib('CGI scripts, DHTML scripts, JAVA scripts and VB scripts collection', HEIGHT, 30, LEFT, ABOVE, SNAPX, 5, SNAPY, 10); return true;" onmouseout="nd(); return 
      true;">SimplytheBest Scripts</a>
      and change the info as required

      O.

      Comment

      Working...
      X