Hello Michael.
1. You can try to made all flames in movieclip the same size (with
transparent background rectangle that fit to the largest clip).
2. You can try to refresh ScrollPane every time animation changed
(ScollPane.invalidate() or ScrollPane.size()).
3. You can refresh ScrollPane witth your own parameters <width> and
<height> of content. By:
private function updateScroll():Void{
scroll.setScrollProperties(<width>, 1, <height>, 1 );
scroll.hPosition = Math.min(scroll.hPosition,
scroll.maxHPosition);
scroll.vPosition = Math.min(scroll.vPosition,
scroll.maxVPosition);
}
Hope it was helpfull.
On Wed, 30 Aug 2006 09:59:41 -0400
"Mendelsohn, Michael" <[EMAIL PROTECTED]> wrote:
Hi list...
I have a scrollpane that contains a mc that goes to different frames
whose heights longer or shorter, thus turning on or off the
scrollpane
components vertical scrollbar (vScrollPolicy = auto). The problem
is
when the vScrollBar becomes visible, the thumb is up too high.
Setting
the vPosition to 0 doesn't make a difference. Any clues?
Thanks,
- Michael M.
_______________________________________________
[email protected]
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
With best regards,
Stan Reshetnic,
Another Flash Guy
ICQ:4534777
_______________________________________________
[email protected]
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com