Thanks for the input (pun intended 8^)
I understand what you are saying, but I don't know how to code it.
Can you help.
def on_input_changed(self, command, inputs, changed_input, input_values😞
if changed_input.id == 'target':
selection_input = inputs.itemById('tool')
selection_input.hasFocus
. . . . . . . . . . . . more code . . . . . . . . . . . .
# Create the command dialog
_inputSelectTargets = inputs.addSelectionInput('target', 'Select The Target Body', 'Select the Body\nThat Will Be Cut')
_inputSelectTargets.addSelectionFilter(adsk.core.SelectionCommandInput.Bodies)
_inputSelectTargets.setSelectionLimits(1, 1)
_inputSelectTools = inputs.addSelectionInput('tool', 'Select The Tool Bodies', 'Select the Bodies\nThat Will Do The Cutting')
_inputSelectTools.addSelectionFilter(adsk.core.SelectionCommandInput.Bodies)
_inputSelectTools.setSelectionLimits(0)
Brad Bylls