mouse to make an object disapper?-HELP
Author |
Message |
upandatom
|
Posted: 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 |
|
|
|
|
|
Sponsor Sponsor
|
|
|
Cervantes
|
Posted: Sat Jan 15, 2005 9:56 pm Post subject: (No 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
|
|
|
|
|
|
|
upandatom
|
Posted: Sat Jan 15, 2005 10:07 pm Post subject: (No subject) |
|
|
ty man how did yu get so good with turing? |
|
|
|
|
|
Cervantes
|
Posted: Sat Jan 15, 2005 10:10 pm Post subject: (No subject) |
|
|
One highschool course and lots of time spend at CompSci.ca 8). But, I'm not "so good". |
|
|
|
|
|
|
|