Select Actors From A List Defined As A Variable for 6.5.1

I want to send task for selected user from combobox

Hi.

You need to use an actor filter on this task.
In the filter, you set the id of the user with a script :

apiAccessor.getIdentityAPI().getUserByUserName(theNameThatYouSelectInYourList).getId();

Thank you