
You are a life savior!!! I just wan to press x, from animation data…this means unlinking? I am not sure!
Well, I have still a small problem…not all the actions can be seen, well right now, none is visible…
Am I missing smth still?
EDITED:
Well, I have made some alterations without using the code
object = bpy.context.object
object.animation_data.action = None
and if I do it manually, meaning I add the strips to the list and afterwards I push the “snowflake” and replace the latest (of each human) existing ones with the ones that I just made it works perfectly…

Here is the code (in order to show the queue of the actions) - this is the one with the problem
# Script for importing to nla
def to_nla(name, start_frame, end_frame):
context = bpy.context
object = context.object
scene = context.scene
scene.frame_end = scene.frame_end + 200
frame = start_frame
action = context.object.animation_data.action
# add an NLA track
newtrack = object.animation_data.nla_tracks.new()
newtrack.name = name
# add a new Strip at current frame
strip = newtrack.strips.new(name=action.name, start=start_frame, action=action)
strip.name = action.name
strip.action_frame_start = start_frame
strip.frame_end = end_frame
object = bpy.context.object
object.animation_data.action = None