Hi Gang ~
I’m currently working on a
Tutorial using Flash that you’re gonna really like but as I re-read the instructions, I realized it wasn’t too clear for those who might not have Flash experience. I found myself committing the same offense many others do in thinking . “
You know what I mean “. Anyway, it will be up probably tomorrow.
For those who are interested, this is a little code to place in the Head of your Document that will Display an
Amber Alert Ticker. I am especially concerned about this because it just seems to me I’m hearing more & more stories about little Kids being abducted, sexually abused or killed then I ever recall years ago. So the more these Amber Alerts are around maybe the better the chance of someone actually seeing one of these Kids. If you save one child, you’ve done more than most in a lifetime.
Amber Alert Java Applet Code for Website Pages :
<!-- Begin Code Amber Ticker code. -->
<P ALIGN=CENTER>
<SCRIPT LANGUAGE="JavaScript1.2" src="http://www.codeamber.org/js/codea.js">
</script>
</P>
<!-- end of Code Amber Ticker code (c)Copyright codeamber.org 2002, 2003, 2004,2005,2006,2007-->
******************************************************
THIS IS A COOL LITTLE CURSOR SNAKE SCRIPT WHERE A SET OF WORDS THAT YOU DECIDE WILL FOLLOW THE CURSOR AROUND THE SCREEN. THIS IS FUN FOR AWHILE BUT SOON YOU MIGHT GET TIRED OF SEEING IT AS I DID OVER TIME. ANY PROBLEMS GETTING IT WORKING, LET ME KNOW ..
*******************************************************
<!-- THREE STEPS TO INSTALL MOUSE BANNER:
1. Copy the coding into the HEAD of your HTML document
2. Add the last code into the BODY tag your HTML document
3. Put the final code inside the BODY of your HTML page -->
<!-- STEP ONE: Paste this code into the HEAD of your HTML document -->
<HEAD>
<style>.spanstyle {
COLOR: white; FONT-FAMILY: Verdana; FONT-SIZE: 8pt; FONT-WEIGHT: bold; POSITION: absolute; TOP: -50px;
VISIBILITY: visible
}
</style>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
var x, y;
var step = 10;
var flag = 0;
var message = "JavaScript is so cool !! ";
message = message.split("");
var xpos = new Array();
for (i = 0; i <= message.length - 1; i++) {
xpos[i] = -50;
}
var ypos = new Array();
for (i = 0; i <= message.length - 1; i++) {
ypos[i]= -50;
}
function handlerMM(e) {
x = (document.layers) ? e.pageX : document.body.scrollLeft + event.clientX;
y = (document.layers) ? e.pageY : document.body.scrollTop + event.clientY;
flag = 1;
}
function makesnake() {
if (flag == 1 && document.all) {
for (i = message.length - 1; i >= 1; i--) {
xpos[i] = xpos[i - 1] + step;
ypos[i] = ypos[i - 1];
}
xpos[0] = x + step;
ypos[0] = y;
for (i = 0; i < message.length - 1; i++) {
var thisspan = eval("span" + (i) + ".style");
thisspan.posLeft = xpos[i];
thisspan.posTop = ypos[i];
}
}
else if (flag==1 && document.layers) {
for (i = message.length - 1; i >= 1; i--) {
xpos[i] = xpos[i - 1] + step;
ypos[i] = ypos[i - 1];
}
xpos[0] = x + step;
ypos[0] = y;
for (i = 0; i < message.length - 1; i++) {
var thisspan = eval("document.span" + i);
thisspan.left = xpos[i];
thisspan.top = ypos[i];
}
}
var timer = setTimeout("makesnake()", 10);
}
// End -->
</script>
</HEAD>
<!-- STEP TWO: Copy this code into the BODY tag of your HTML document -->
<body bgcolor="#000080" text="#000000" onload="makesnake()"
style="OVERFLOW-X: hidden; OVERFLOW-Y: scroll; WIDTH: 100%">
<!-- STEP THREE: Put the final code inside the BODY of your HTML document -->
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
for (i = 0; i <= message.length-1; i++) {
document.write("<span id='span"+i+"' class='spanstyle'>");
document.write(message[i]);
document.write("</span>");
}
if (document.layers) {
document.captureEvents(Event.MOUSEMOVE);
}
document.onmousemove = handlerMM;
// End -->
</script>
<p><center>
<font face="arial, helvetica" SIZE="-2">The Tech Support Forum<br>
by <a href="http://techsupportforum.com">The Tech Support Forum</a></font>
</center><p>
<!-- Script Size: 2.08 KB -->
*****************************************************
Comments & Questions post here!
*
*