Introduced
7.5
Description
Creates an instance of an event wizard you can use to generate self-installing event plug-ins. The resulting wizard is a CustomProperty nested under the SDK wizard model which itself resides under the scene root.
Scripting Syntax
CreateEventWizard( [DestinationDir] )
Parameters
|
Parameter |
Type |
Description |
|
DestinationDir |
The destination folder for the plug-in to generate. Default Value: If no destination folder is specified, the wizard property will be created in the user path. |
Return Value
Newly created event wizard as a CustomProperty object.
Examples
JScript Example
/* This example demonstrates how to create an event wizard using the CreateEventWizard command and then generate a very simple custom event using the new wizard. */ var eventwiz = CreateEventWizard(); eventwiz.PluginName = "XYZEventPlugin"; eventwiz.FileName = eventwiz.PluginName.Value; eventwiz.ScriptLanguage = "JScript"; eventwiz.siOnKeyUp = true; eventwiz.siOnKeyUpName = "XYZOnKeyUpEvent"; // Generates the XYZOnKeyUpEvent implementation and plug-in GenerateEventPlugin(eventwiz); var ev = Application.EventInfos("XYZOnKeyUpEvent"); Application.LogMessage(ev.Name); // Expected results: // INFO : XYZOnKeyUpEvent
See Also
|
|
Autodesk Softimage v7.5