Hi,

Using your own _javascript_s is not that hard to implement.

In the node for client-files add a new _javascript_-file.
Then use this file in your webPage.

for example, the copy and paste the content of scrollet.js.

<SCRIPT language="_javascript_">
var pos=0;
function scroll()
{
var bericht = this.bericht.value;
document.title = bericht.substring(pos, bericht.length) +
bericht.substring(0, pos);
pos=(pos+1)%bericht.length;
}

function startScroll()
{
setInterval("scroll()",100);
}
</SCRIPT>


You have to adjust the following:
var bericht=document.formname.bericht.value;


And then edit your webPage
<input type="hidden" name="bericht" value="A Message!" />
<a href="" scrolling</a>

And include this example in the i_axapta file
<!-- #include file="resources/scripts/scrollet.js" --> 

I hope this satisfies your _javascript_ needs.

/b




Yahoo! Groups Links

Reply via email to