Grazie lo stesso a tutti...
credo di aver risolto così la cosa:
codice:
diff_y = project.bound_box._height;
bounds = project.bound_box.getBounds(this);
top = bounds.yMin;
bottom = bounds.yMax;
trace("bounds.xMin = " + bounds.xMin);
trace("bounds.xMax = " + bounds.xMax);
trace("bounds.yMin = " + bounds.yMin);
trace("bounds.yMax = " + bounds.yMax);
trace("diff_y = " + diff_y);
trace("top = " + top);
trace("bottom = " + bottom);
project.onEnterFrame = function() {
if (hitTest(_xmouse, _ymouse, true)) {
this.content._y = -(((_global.t - this.content.slot._height) * (bounds.yMin + _ymouse)) / bounds.yMax)-2;
}
};
dove:
project.bound_box._height è una Mc che ha le dimensioni del filmato fla, e _global.t è la dimensione massima della mc da scrollare!
Ciao a tutti e spero vi sia di aiuto!