If you want the guide to follow a link, add the following line inside the link tag.
onMouseOver="come(new Array(Dialogue_Array), event, this)"
Where
The last parameter, this, is optional, and when present and the user clicks on the guide which is already over the corresponding link, the link action will be triggered. By removing this parameter, no action will be taken even when the guide is clicked.
Note: Due to the syntax rules of JavaScript, you CANNOT use the same kind of quotation mark (' or ") inside a quotation wrap. For example, the following line is INCORRECT and will cause error when executed.
onMouseOver="come(new Array("a", "b", "c"), event, this)"
Note that the above line is using a pair of " marks to wrap several " inside. To make the above line correct, simply change the outside wrapping marks from " to ', like this:
onMouseOver='come(new Array("a", "b", "c"), event, this)'
You are always recommended to test the page locally before posting it online. After that, upload your HTML document, all ".js" files and images to your web server.
If you are stuck, take a look at the included example in the zip. Email me if you have any questions. Please include your HTML document in your email.
Support Anime Theme to provide MORE scripts! Thanks!
Return to Dynamic HTML Resource Center