ID:166208
Sep 5 2006, 8:09 am
|
|
I'm not used to the DblClick proc, but how do I make it so that once an object is DblClicked, it can't be DblClicked anymore? Basically, just killing the DblClick command all-together once it's used once?
|
Sep 5 2006, 8:13 am
|
|
Make a var and check it to see if you have DblClicked.
|
In response to Zythyr
|
|
Or to make it dissapear you can have something like
DblClick() [do whatever] del([thing]) |
DragonMasterGod wrote:
I'm not used to the DblClick proc, but how do I make it so that once an object is DblClicked, it can't be DblClicked anymore? Basically, just killing the DblClick command all-together once it's used once? atom Of course, that applies to ALL objects, but you get the idea. |
In response to Foomer
|
|
Thanks man, yea I fixed the problem before I saw this I just didn't place the if and else statements in the right area before. Thanks guys. Problem fixed.
|