Search Nodes in a Batch Schematic:
If you know the name of the node(s) you’re looking for in your schematic, find and frame them. Also prints the list in the console.
1 2 3 4 5 6 7 | import flame typed_in = raw_input () input_list = typed_in.split() flame.batch.selected_nodes = (input_list) flame.batch.frame_selected() print "typed_in (raw) --> " , typed_in # type node's names separated by a space, like: Source02 CC mux6 |