Quote:
Originally Posted by cbk1994
Why are you doing this?
PHP Code:
globalTriggerName = this.name;
It's probably better to just do this:
PHP Code:
globalTrigger = this;
then you can just do
PHP Code:
globalTrigger.function();
|
Ah yeah, should have done that. thanks.