Invoke Taskflow from Script
Topic:
Invoke Taskflow from ScriptDescription:
var inputPropSet;var outputPropSet;
var taskUIsvc;
inputPropSet = TheApplication().NewPropertySet();
outputPropSet = TheApplication().NewPropertySet();
taskUIsvc = TheApplication().GetService("Task UI Service (SWE)");
inputPropSet.SetProperty("TaskName","<TaskFlow Name>");
taskUIsvc.InvokeMethod("LaunchTaskFromScript",inputPropSet,outputPropSet);
Comments
Post a Comment