I tried and tried - but finally got those files to download… using www after http:// - wonder if it was DNS issue? Anyhow, I have the files - but, I need the actionscript folder with all the scripts as well…
http://www.nufish.com/z_staging_08/actionscript.zip
Grab the fuse class stuff here (a good resource fyi) www.mosessupposes.com
have it all loaded, and it partially works - fuse is failing due to objects not being found when I try to load press.swf into main - not sure if I’m missing other imgs/assets that load into this… anywho - one question - looks like you’re loading press.swf into pressText correct? do you know the x,y coords of pressText - i see it center stage but am guessing you’re setting it to 0,0? If so, within pressscroll.fla - replace scrollPanel() with this work:
function scrollPanel() {
trace(":::::: _ymouse: "+this._parent._ymouse);
if(this._parent._xmouse<b.xMin || this._parent._xmouse>b.xMax || this._parent._ymouse<b.yMin || this._parent._ymouse>b.yMax) {
this.onRollOver = panelOver;
delete this.onEnterFrame;
}
if(tn07._y >= 32) {
tn07._y = 32;
}
if(tn07._y <= -670.2) {
tn07._y = -670.2;
}
var ydist = this._parent._ymouse - 200;
tn07._y += Math.round(-ydist / 10);
}
Let me know if you have any luck.