View Single Post
  #3  
Old 12-04-2007, 08:22 PM
Admins Admins is offline
Graal Administration
Join Date: Jan 2000
Location: Admins
Posts: 11,693
Admins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud of
A simple drag'n'drop script:

PHP Code:
function MyControl.onMouseDragged(modifierkeys,mx,my) {
  if (
isObject("DragControl"))
    return;

  new 
GuiBitmapCtrl("DragControl") {
    
width height 32;
    
mx width/2;
    
my height/2;
    
bitmap "graalicon_big.png";
    
alpha 0.5;
  }
  
DragControl.startDrag();
}

function 
DragControl.onStopDrag() {
  
DragControl.destroy();

Reply With Quote