Search found 1 match

by vaster
Fri Oct 30, 2020 6:28 am
Forum: Photoshop Scripting - General Discussion
Topic: Bennifits of using an object to run a script
Replies: 5
Views: 6207

Re: Bennifits of using an object to run a script

Functions that are stored in object properties are called “methods”. Methods allow objects to “act” like object.doSomething(). Methods can reference the object as this. The value of this is defined at run-time. When a function is declared, it may use this, but that this has no value until the functi...