Skip to main content
September 22, 2006
Question

vertical scrolling runtime made movieclips

  • September 22, 2006
  • 1 reply
  • 210 views
Hello,

I know this is a big answered question, but I can't find any solution for this.
I remember I read some time ago a good example from Kglad, but I can't find it.

The problem is

I have a grid of n movieclips, all made at runtime, this grid is not inside any movieclip, she is builted in _root, and the area I want to scroll is the intire _stage height.

How should I make this work?

Thanks in advance,
This topic has been closed for replies.

1 reply

Inspiring
September 22, 2006
Just change the _x or _y properties of the _root movie
September 22, 2006
Hello, thanks for reply,

Not that easy...

I use something like this to build my movies

for (var i = 0; i<this.n; i++) {
array_icones.push(this["pic_"+i]);
}
grelha = criar_grelha(1, i, 0, 54, 300, (7.5));
colocar_botoes();

where colocar_botoes() has the _root.createEmptyMovieClip("bláblá"+i, i);


now I need to scroll those _root["bláblá"+i]

Thanks again,