View Single Post
  #3  
Old 06-04-2012, 08:57 PM
brokk brokk is offline
Registered User
Join Date: May 2012
Posts: 84
brokk is on a distinguished road
Quote:
I'm amazed it's actually light blue and not white. You have 10 for red, green, blue and alpha. First off, all of the four values range between 0 and 1. And to get something that's not white/gray, you probably want to choose different values.
I redid the script. But the zoom and font dont seem to be changing?

PHP Code:
function onCreated(){ 
 
showText(1this.xthis.y-3$pref::graal::defaultfontname"c""" @(this.setnumber));
 
changeImgColors(11111);
  
with (findImg(1)) {
    
textshadow true;
    
shadowoffset "-2 2";
    
shadowcolors "0 0 0";
    
font "showg";
    
style "b";
    
layer 12;
    
zoom 2;
 }

Reply With Quote