Older Newer
Thu, 19 Dec 2019 04:58:50 . . . . SyneRyder [Initial definition]


Changes by last author:

Added:
= filterUniqueID =

== Syntax ==

string filterUniqueID

== Description ==

The UniqueID string value (up to 36 characters) used to identify your plug-in uniquely to the Photoshop scripting system. The UniqueID is needed for scripting so that Photoshop can distinguish between your plugin and other plugins. Two different plugins with the same UniqueID will be treated as the same plugin by Photoshop, so make sure your UniqueID is really unique, otherwise another plugin may be executed instead of yours.

== Comment ==

If you do not define UniqueID at the top of your code, FM will generate an random UniqueID every time it is launched.

== Example ==

<code>

%ffp

// UniqueID: "d5326b0c-7c78-26c7-97bc-00c0d1465278"

OnFilterStart:{

Info ("%s",filterUniqueID);

return false;

}

</code>