# Dynamic line drawing

**URL:** https://forum.kirupa.com/t/dynamic-line-drawing/246999
**Category:** flash
**Created:** [December 17, 2007, 5:22pm UTC](https://forum.kirupa.com/t/dynamic-line-drawing/246999 "2007-12-17T17:22:58Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![rai\_kane3](https://avatars.discourse-cdn.com/v4/letter/r/e47774/32.png) [@rai\_kane3](https://forum.kirupa.com/u/rai_kane3)
#### Post date: [December 17, 2007, 5:22pm UTC](https://forum.kirupa.com/t/dynamic-line-drawing/246999/1 "2007-12-17T17:22:58Z")

</div>

I have a line drawing that I have to animate it has curved lines like the image attached.

I have tried tweening however it looks terrible and not smooth in it drawing. so I thought I would try and action script it. I can actions script the lines but not animate them can anyone help.

this is the action script I already have so far.

> createEmptyMovieClip (“curveLine”, 1);  
> with (curveLine) {  
> lineStyle (2,0xffffff, 600);  
> curveTo (50,0,80,50);  
> }  
> curveLine.\_x = 300;
