
Originally Posted by
liselotte
Is it with this menu also possible to add the "change image" effect?
(maybe I`m willing too much).
There is no "change image" effect. If you want to make a rollover image change, there are literally millions of ways that can be done. Most likely, to do one with this menu would require extensive modification but, there may be a relatively simple way. It would also depend to an extent upon what exact kind of rollover effect you were looking for. "change image" by itself is more than a little vague.
Something like:
Code:
ssmItems[1]=["<img src='some.gif' lowsrc='someother.gif' border='0' onmouseover='rollover(this);' onmouseout='rollover(this);'>", "http://www.dynamicdrive.com", "frame"]
might work, the rollover function would need to be something like so:
Code:
function rollover(el){
var hold=el.src;
el.src=el.lowsrc;
el.lowsrc=hold;
}
Bookmarks