/* external file "mybcparameters.txt" begins */ // begin: Belt Conveyer's Parameters - //width of the Conveyer in pixels: set to your own; //Longer Messages (exceeding width) will slide OK anyway; //var bwidth=280; var bwidth=780; //height of the Conveyer in pixels: set to your own; //you may set the height for as many lines as you'd like; //"20" is more or less for one line! //var bheight=20; var bheight=20; //BACKGROUND: either color(1) or image(2) ; //1.Background color: could be like: "#ffff00" or "yellow"; //set it "" for no background color; var bbcolor="#E6FFFB"; //or 2.Background image: "imagename.ext"; //leave it "" for no image background; var bbground=""; //border for sliding area: 1, ... ; //set it 0(zero) for no border; var bborder=0; //speed in pixels: the higher the faster! var bspeed=1; //pause between messages in milliseconds: 1000=1s; set to your own; var bpause = 0; //speed for exceeding portions in milliseconds: 1000=1s; //the higher the slower: set to your own; //"20" equals the speed to the main portion! //leave it unchanged otherwise; var fpause=20; //First message shows up at the left edge (or centered) and pauses: 1 //First message shows up at the right edge and starts scrolling: 0 var rlopt=0; //live speed-change option: 0 (not desired) or 1 (desired); //beltclass would be the STYLE //celcolor would be background color var bsopt = 1; if(bsopt==1){ var beltclass='class=stilupdn'; var celcolor='#ccffcc'; }