Here can find some information about Enhanced Scripting function to control organizer engine by script!
| Check OrganizerStatus | |
| Syntax | Organizer.Status( ) |
| Description: | |
| Get a bool value of Organizer engine status, if running or not | |
| Returns | bool |
| In Object: | Organizer |
| Parameters: | none |
| Start Organizer | |
| Syntax | Organizer.FStart( ) |
| Description: | |
| Start Organizer engine. | |
| Returns | void |
| In Object: | Organizer |
| Parameters: | none |
| Stop Organizer | |
| Syntax | Organizer.FStop( ) |
| Description: | |
| Stop scavenger engine. | |
| Returns | void |
| In Object: | Organizer |
| Parameters: | none |
| Change Organizer item list | |
| Syntax | Organizer.ChangeList(string) |
| Description: | |
| Change list of oganizer item, List must be exist in organizer GUI configuration | |
| Returns | void |
| In Object: | Organizer |
| Parameters: | ListName |
| Run Organizer from python | |
| Syntax | Organizer.RunOnce(string ListName, int SourceContainer, int DestinationContainer, int DragDelay) |
| Description: | |
| Run the specified Organizer list, using the source, dest, and drag delay specified. Note: source, dest, and drag delay can be -1 and they will use whatever is specified on the gui | |
| Returns | void |
| In Object: | Organizer |
| Parameters: | string ListName, int SourceContainer, int DestinationContainer, int DragDelay |
| Example |
Organizer.RunOnce("test", 0x42292AD3, 0x4005A1AD, 1000)
|