jess
06-24-2002, 09:44 AM
Hi All,
Not sure if this sounds a bit stupid but am totally stumped and only have a couple of days left now to find a solution, you guys are my only hope!!
I have used the following 'scrolling text box';
onClipEvent (load){
daTextBox = "<P ALIGN=\"LEFT\">
<b>NAME OF PARTS................................6<br>
STANDARD ACCESSORIES.....................8<br>
STITCH PATTERNS..............................9<br><br>
POWER & LIGHT SWITCH....................10<br>
SELECTING THE STITCH PATTERN..........10<br>
SEWING ADVISOR LCD FUNCTIONS........10<br>
PRESSER FOOT LIFTER.......................11<br>
STITCH WIDTH ADJUSTMENT DIAL.........11<br>
STITCH LENGTH ADJUSTMENT DIAL........11</b>";
scrolling = 0;
frameCounter = 1;
speedFactor = 3;
}
onClipEvent (enterFrame){
if( frameCounter % speedFactor == 0){
if( scrolling == "up" && daTextBox.scroll > 1){
daTextBox.scroll--;
}
else if( scrolling == "down" && daTextBox.scroll < daTextBox.maxscroll){
daTextBox.scroll++;
}
frameCounter = 0;
}
frameCounter++;
}
- as shown on the tutorials of this site.. HOWEVER I now need each item to 'LINK' to another section of the site!!?? Is this possible at all??? Thank you so much for taking the time to even read me!! Any help welcome!
Jess :D
Not sure if this sounds a bit stupid but am totally stumped and only have a couple of days left now to find a solution, you guys are my only hope!!
I have used the following 'scrolling text box';
onClipEvent (load){
daTextBox = "<P ALIGN=\"LEFT\">
<b>NAME OF PARTS................................6<br>
STANDARD ACCESSORIES.....................8<br>
STITCH PATTERNS..............................9<br><br>
POWER & LIGHT SWITCH....................10<br>
SELECTING THE STITCH PATTERN..........10<br>
SEWING ADVISOR LCD FUNCTIONS........10<br>
PRESSER FOOT LIFTER.......................11<br>
STITCH WIDTH ADJUSTMENT DIAL.........11<br>
STITCH LENGTH ADJUSTMENT DIAL........11</b>";
scrolling = 0;
frameCounter = 1;
speedFactor = 3;
}
onClipEvent (enterFrame){
if( frameCounter % speedFactor == 0){
if( scrolling == "up" && daTextBox.scroll > 1){
daTextBox.scroll--;
}
else if( scrolling == "down" && daTextBox.scroll < daTextBox.maxscroll){
daTextBox.scroll++;
}
frameCounter = 0;
}
frameCounter++;
}
- as shown on the tutorials of this site.. HOWEVER I now need each item to 'LINK' to another section of the site!!?? Is this possible at all??? Thank you so much for taking the time to even read me!! Any help welcome!
Jess :D