# Text Explosion

**URL:** https://forum.kirupa.com/t/text-explosion/27884
**Category:** flash
**Created:** [August 7, 2003, 3:50pm UTC](https://forum.kirupa.com/t/text-explosion/27884 "2003-08-07T15:50:06Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![gabe](https://avatars.discourse-cdn.com/v4/letter/g/5daacb/32.png) [@gabe](https://forum.kirupa.com/u/gabe)
#### Post date: [August 7, 2003, 3:50pm UTC](https://forum.kirupa.com/t/text-explosion/27884/1 "2003-08-07T15:50:06Z")

</div>

Hello all,

I was very intrigued by this effect, and wondered if anyone could help me get started on it.

I’ve seen it several places, but could not find any tuts on it.

Heres where I saw it last :::

> **[It Works! - A Sua Diretoria De Empresas Da Web.](http://www.itworks.com.pt)**
>
> A Sua Diretoria De Empresas Da Web.

(also saw it on this site somewhere, just forgot where 🙂 )

Thanks,

- gabe

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [August 7, 2003, 5:43pm UTC](https://forum.kirupa.com/t/text-explosion/27884/2 "2003-08-07T17:43:17Z")

</div>

Just a bunch of mc’s placed in such a way to represent the letters ‘i’ and ‘t’. Each mc has actions that make it move away from the mouse on rollover. Look closely and you’ll see that they dont always move the same way, so its a random direction.

I dont know the script off the top of my head, but i’m sure its not too hard to work out, or at least find a source for something similar.

Regards,  
Viru.

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [August 7, 2003, 6:02pm UTC](https://forum.kirupa.com/t/text-explosion/27884/3 "2003-08-07T18:02:51Z")

</div>

It’s extremly easy, actually… 😛

This should get you started: [http://www.kirupaforum.com/forums/showthread.php?s=&threadid=7926](http://www.kirupaforum.com/forums/showthread.php?s=&threadid=7926)

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [August 7, 2003, 6:32pm UTC](https://forum.kirupa.com/t/text-explosion/27884/4 "2003-08-07T18:32:19Z")

</div>

script? something like is this one!

on the movie clip

```auto
onClipEvent(load){
myX=this._x;
myY=this._y;
endX=null;
endY=null;
}

onClipEvent(enterFrame){
if(root._xmouse==myX and root._ymouse==myY) {
endX=myX+(random(100)-50);
endY=myY+(random(100)-50);
}
this._x += (endX-this._x)/speed;
this._y += (endY-this._y)/speed;
if(this._x==endX and this._y==endY){
endX=myX;
endY=myY;
}
}

```

that should work. Play with it.
