# HELP! Scrolling a long tube of buttons

**URL:** https://forum.kirupa.com/t/help-scrolling-a-long-tube-of-buttons/80100
**Category:** flash
**Created:** [February 19, 2005, 7:03am UTC](https://forum.kirupa.com/t/help-scrolling-a-long-tube-of-buttons/80100 "2005-02-19T07:03:52Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![denizengt](https://avatars.discourse-cdn.com/v4/letter/d/58f4c7/32.png) [@denizengt](https://forum.kirupa.com/u/denizengt)
#### Post date: [February 19, 2005, 7:03am UTC](https://forum.kirupa.com/t/help-scrolling-a-long-tube-of-buttons/80100/1 "2005-02-19T07:03:52Z")

</div>

I’ve been looking around for tutes on scrolling objects using actionscript; I haven’t been lucky, most are tweens which I don’t what to do.

I’ve got a mask, and a long tube of buttons in a movie clip. I’m trying to programatically scroll that tube under the mask, but in a circular fashion, ie, when the end of tube appears, immediately after it is the front of the tube.

I did get a kind of scrolling action using the following on the tube clip …

```auto

onClipEvent(enterFrame){
 
_x = _x + 5;
 
}

```

…however I can’t get that circular scrolling action. Any hints? Or is this one consigned to the tweenage?
