# Play multiple action animation mixer

**URL:** https://discourse.threejs.org/t/play-multiple-action-animation-mixer/34359
**Category:** Questions
**Tags:** gsap, blender, animation
**Created:** [February 1, 2022, 9:25am UTC](https://discourse.threejs.org/t/play-multiple-action-animation-mixer/34359 "2022-02-01T09:25:40Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![LeenAlfalah](https://yyz1.discourse-cdn.com/flex035/user_avatar/discourse.threejs.org/leenalfalah/32/18835_2.png) [@LeenAlfalah](https://discourse.threejs.org/u/LeenAlfalah)
#### Post date: [February 1, 2022, 9:25am UTC](https://discourse.threejs.org/t/play-multiple-action-animation-mixer/34359/1 "2022-02-01T09:25:40Z")

</div>

Hey folk,  
i have an object contain many actions of animations , then i want to play it with scroll , i am already do that for one action

```javascript
        mixer = new THREE.AnimationMixer(model);
            var action = mixer.clipAction(gltf.animations[1]);
            action.play();
            createAnimation(mixer, action, gltf.animations[1]);

```

```javascript
function createAnimation(mixer, action, clip) {
    let proxy = {
        get time() {
            return mixer.time;
        },
        set time(value) {
            action.paused = false;
            mixer.setTime(value);
            action.paused = true;
        }
    };

    let scrollingTL = gsap.timeline({
        scrollTrigger: {
            trigger: renderer.domElement,
            start: "top top",
            end: "+=500%",
            pin: true,
            scrub: true,
            onUpdate: function () {
                camera.updateProjectionMatrix();
            }
        }
    });

    scrollingTL.to(proxy, {
        time: clip.duration,
    });
}

```

but i want to play all of actions , i don’t need to be separated so maybe i can merge its in blender or not ??

---

<div class="post-metadata">

### Author: ![mahmud\_hussin\_Mohamed](https://yyz1.discourse-cdn.com/flex035/user_avatar/discourse.threejs.org/mahmud_hussin_mohamed/32/26712_2.png) [@mahmud\_hussin\_Mohamed](https://discourse.threejs.org/u/mahmud_hussin_Mohamed)
#### Post date: [October 1, 2022, 7:12pm UTC](https://discourse.threejs.org/t/play-multiple-action-animation-mixer/34359/2 "2022-10-01T19:12:38Z")

</div>

im in your sopt today !! the same issue but now answer yet found !! gope you make it throw tell me bro 😅
