ID:270892
 
Is there any reason why Click() doesn't activate for me? If I input Dblclick() my verbs work, but Click() does nothing at all. It should be working.
I've checked tutorials that use Click() and they are fine, I've even compared how they have done it and it doesn't work for me. My co-owner has also tried doing it and it fails to work.
Click() is almost the samething as DblClick() except you just need to click once for it to happen instead of twice. Maybe you did something incorrect in calling the thing you wanted to happen?

Try posting the snippet of the Click() you are having problems with and a brief snippet of twhatever you are calling.

- GhostAnime
In response to Muyoine Guyinne
If you overwrote something in client/Click() without calling ..(), then atom/Click() will not be called.

~~> Unknown Person
In response to Unknown Person
obj
hud
HUD
layer = MOB_LAYER + 1
icon = 'Hud.dmi'
say
name="Speak"
icon_state = ""
Click()
var/T = input("Others on the screen will see this text:")as null|text
if(!T)
return
else
view(12)<<"<b><font color=black>[usr]</font>:</b> [T]"
New(client/C)
screen_loc = "1,1"
C.screen+=src

client/New()
..()
new/obj/hud/HUD/say(src)

It's just a basic hud code and it doesn't activate the Click() proc.
In response to Unknown Person
Ah, I found the problem. I looked around and saw my test system WAS overriding the Click() proc. Thanks a lot. =)