hosted3334
MIS
I have a scrollermc component.The size is small on the screen. How can I make it so that it is larger and has large letters.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
[b]stop();[/b]
x=new XML();
x.onLoad=init;
x.load(exemel);
x.ignoreWhite=true;
// scroller variables //
var last=-1; //set to -1 bc if set to 0 it skips the first char
var delayFlag=false; // scroll pause toggle
scroller.text=""; // clear scroller text
scroller.border=true;
function init(success){
if(success==true){
root=x.firstChild;
getView(root);
getSpeed(root);
getHotSpot(root);
formatTextBox(root);
getText(root);
[b]gotoAndPlay(2);[/b]
}else{
// the fun path :)
trace("error reading xml["+exemel+"]");
}
}