# Caurina tweener: how to make a movieclip begin a tween at a certian frame?

**URL:** https://forum.kirupa.com/t/caurina-tweener-how-to-make-a-movieclip-begin-a-tween-at-a-certian-frame/285183
**Category:** Uncategorized
**Created:** [March 28, 2009, 12:25am UTC](https://forum.kirupa.com/t/caurina-tweener-how-to-make-a-movieclip-begin-a-tween-at-a-certian-frame/285183 "2009-03-28T00:25:10Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![farban](https://avatars.discourse-cdn.com/v4/letter/f/d07c76/32.png) [@farban](https://forum.kirupa.com/u/farban)
#### Post date: [March 28, 2009, 12:25am UTC](https://forum.kirupa.com/t/caurina-tweener-how-to-make-a-movieclip-begin-a-tween-at-a-certian-frame/285183/1 "2009-03-28T00:25:10Z")

</div>

(sorry if i accidently posted this twice)

I am using the caurina tweener and i know that by default the tween will begin to tween at frame 1 and tween till \_frame:number

how can i make a tween start at a certian frame? such as make thetest tween at frame 25 to 50

here is the code

```auto

import caurina.transitions.*;
import caurina.transitions.properties.DisplayShortcuts;
DisplayShortcuts.init();

thebutton.addEventListener (MouseEvent.ROLL_OVER, thebutton_ROLLOVER);

function thebutton_ROLLOVER (e:MouseEvent) :void
{
    Tweener.addTween (theicon, {_frame:27, time:0.5, transition:"linear" });
    Tweener.addTween (thetest, {_frame:50, time:0.5, transition:"linear"});
}

thebutton.addEventListener (MouseEvent.ROLL_OUT , thebutton_ROLLOUT);

function thebutton_ROLLOUT (e:MouseEvent) :void
{
    Tweener.addTween (theicon, {_frame:0, time:0.5, transition:"linear"});
    Tweener.addTween (thetest, {_frame:0, time:0.5, transition:"linear"});
}

```
