🎉Community Raffle - Win $25

An exclusive raffle opportunity for active members like you! Complete your profile, answer questions and get your first accepted badge to enter the raffle.
Join and Win

How to work with object before executing process

User: "carbourator"
New Altair Community Member
Updated by Jocelyn
Hello,

is there a way how to work with object right after connection to input port? I want something like your Aggregate operator-I need to take a look at the input object and offer all its members to user who would choose which members shall go to the output. Is this possible?

Thank you

Oh and the input object is not ExampleSet, I guess that makes it more complicated

Find more posts tagged with

Sort by:
1 - 3 of 31
    User: "Skirzynski"
    New Altair Community Member
    Hey,

    you can write your own operator and add your needed functionality to your own extension. Or you can use the "Execute Script"-Operator where you can access your input and do whatever you want. As a language you have to use Groovy. In the documentation of the "Execute Script"-Operator you can look up how to access the input etcpp.

    Martch
    User: "carbourator"
    New Altair Community Member
    OP
    Yes, I am writing my own operator, but I dont know how to work with the object outside of doWork method
    User: "carbourator"
    New Altair Community Member
    OP
    I am thinking it would even be best to make some dialog window pop out during doWork method. When my operator gets its input, it should present it to the user and let him choose what to do wit it. How can I do that?