Pausing animation and changing animation frame

When I try to pause the animation and change the animation frame using a variable for the object, they don’t work. Creating the object does work however:

Among objects Girls_F, create object named GlobalVariableString(GirlName)+"_F" at position 314;444
Pause the current animation of GlobalVariableString(GirlName)+"_F"
Do =GlobalVariable(Pose) to animation frame of GlobalVariableString(GirlName)+"_F"

When using a hardcoded object they do work:

Create object Yuki_F at position 314;444
Pause the current animation of Yuki_F
Do =GlobalVariable(Pose) to animation frame of Yuki_F

If I can’t use the first solution, I have to add a lot and a lot more conditions and actions.

Does anyone know a solution if it exists?

You can’t use expression to designate an object. Instead, you can put all the objects in a group and then use the group’s name instead of the object’s name.

Among objects Girls_F, create object named GlobalVariableString(GirlName)+"_F" at position 314;444
Pause the current animation of AllPossiblyCreatedObjectsGroup
Do =GlobalVariable(Pose) to animation frame of AllPossiblyCreatedObjectsGroup

Thank you very much. That did the trick.

can i ask a screen shot of your program because i have also same problem.
Thank you