Older Newer
Fri, 04 Apr 2014 13:10:08 . . . . SyneRyder [Minor formatting cleanup]


Changes by last author:

Added:
= DESIGNTIME =

== Syntax ==

:bool DESIGNTIME

== Description ==

:Use the DESIGNTIME system variable to test if the plug-in is running inside the FilterMeister editor (true) or as a stand-alone compiled plug-in (false).

== Example ==

:If you want to create a plug-in without a dialog window, you can use the following code. The use of DESIGNTIME helps to keep the FilterMeister editor open whilst creating the plug-in.

<code>

OnFilterStart: {

if (!DESIGNTIME) {

doAction(CA_APPLY);

}

return true;

}

</code>