All functions Mac OS X Windows Crossplatform Components New in version: 1.0 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 2.0
Component: Plugin
Mac OS X: Works
Windows: Works
MBS( "Register" ; Licensee Name; component; License Type; Expire Month; Serial number )
Parameter | Description | Example value |
---|---|---|
Licensee Name | This is the name of the person or organization that holds the license for the plug-in | Your Name |
component | The component that was licensed. For example “Complete” or “Screen” | Applescript |
License Type | Seats purchased. For example, “1 seat”, “10 seats”, "Developer" | 1 Seat |
Expire Month | This is the month in which the serial will expire for new versions of the plug-in in YYYYMM format. Plug-in released before the end of that month will continue to work forever. New Releases after that date will require a renewal | 200708 |
Serial number | The license number | your serial number |
Returns OK on success.
This function is used to register the Plugin. You must call this function for each Component you purchased. If you purchased the “Complete” component, that includes all other components and is the only one you need to register.
Register the plug-in
Let(
[
/*-----------------PARAMETERS--------------------*/
Licensee Name = "Your Name";
Feature Set = "Applescript";
License Type = "1 Seat";
Expire Month = 200708;
Serial number = "" // place your code here
];
/*-------------------FUNCTION----------------------*/
MBS(
"Register";
Licensee Name;
Feature Set;
License Type;
Expire Month;
Serial number
)
)
Feedback: Report problem or ask question.