View Single Post
  #3  
Old 05-27-2012, 01:55 AM
fowlplay4 fowlplay4 is offline
team canada
fowlplay4's Avatar
Join Date: Jul 2004
Location: Canada
Posts: 5,200
fowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond repute
You can do so like this:

PHP Code:
//#CLIENTSIDE
function onCreated() {
  
drawBlock();
}

function 
GraalControl.onResize() {
  
drawBlock();
}

function 
drawBlock() {
  
with (findimg(200)) {
    
image "block.png";
    
width 32// I set the width statically, since getimgwidth(image) 
                // will return 0 if the image isn't downloaded yet.
    
screenwidth width 16;
    
16;
    
layer 4;
  }

__________________
Quote:
Reply With Quote