Computer Science Canada

mouse to make an object disapper?-HELP

Author:  upandatom [ Sat Jan 15, 2005 9:29 pm ]
Post subject:  mouse to make an object disapper?-HELP

i have some objects im creating at the and i want the user to click them to get rid of them

Author:  Cervantes [ Sat Jan 15, 2005 9:56 pm ]
Post subject: 

Turing:

mousewhere (mX, mY, btn)
if mX > objX and mX < objX + objWidth and mY > objY and mY < objY + objHeight and btn not= 0 then
  flag := false
end if

if flag then
  drawobject
end if

Author:  upandatom [ Sat Jan 15, 2005 10:07 pm ]
Post subject: 

ty man how did yu get so good with turing?

Author:  Cervantes [ Sat Jan 15, 2005 10:10 pm ]
Post subject: 

One highschool course and lots of time spend at CompSci.ca 8). But, I'm not "so good".


: