# Text scroller + mouseover stop?!

**URL:** https://forum.kirupa.com/t/text-scroller-mouseover-stop/41823
**Category:** Uncategorized
**Created:** [February 2, 2004, 10:01am UTC](https://forum.kirupa.com/t/text-scroller-mouseover-stop/41823 "2004-02-02T10:01:00Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![sWo0p](https://avatars.discourse-cdn.com/v4/letter/s/f0a364/32.png) [@sWo0p](https://forum.kirupa.com/u/sWo0p)
#### Post date: [February 2, 2004, 10:01am UTC](https://forum.kirupa.com/t/text-scroller-mouseover-stop/41823/1 "2004-02-02T10:01:00Z")

</div>

I made a news scroller with dynamic read function… but is there anyway to make a on mouseover and stop function to this thing?

here is the action on 3 frames…

frame 1

```php

pos = 90;

```

frame 2

```php

pos = pos-1;
_parent.news._y = pos;
if (_parent.news._y<=-320) {
	gotoAndPlay(1);
}

```

frame 3

```php

gotoAndPlay (2);

```
