i have a problem with connection new nodes to one existing node
the follwoing script is just for testing
for j in range(1,5):
nuke.toNode('LESEN').knob('selected').setValue(True)
nuke.createNode("Blur","size 50 mix " + str(j/10.0) + " name blende"+str(j))
nuke.createNode("Write","file c:/nukefolder/test" + str(j) + ".jpg name schreiben" + str(j))
nuke.endGroup()
my problem is that all Blur nodes should be connected to the one Read-Node called LESEN
at the moment i have 4 group with blur and write connected but not to the read node
how can i say which node is parent at creating a new node
hope for answers