Il mio problema è questo:
Ho fatto un menu' del genere, ma quando il mouse passa sulle mie img queste si spostano in alto e a sinistra...qual'è il comando da cambiare?Grazie
// ----------------------------------------------
// mouse drags
// ----------------------------------------------
startDrag("", true);
// ----------------------------------------------
// da settare a mano:
// ----------------------------------------------
movieheight = 99;
moviewidth = 500;
// ----------------------------------------------
// variabili
// ----------------------------------------------
w = getProperty("../picture", _width);
// ----------------------------------------------
// Drag Speed is INVERSE: ie:numero alto drag lento
speed = 105;
// ---------------------------------------------
// begin drag calculations
// ---------------------------------------------
xPos = getProperty("", _x);
yPos = getProperty("", _y);
// -------------------------------------------
// Center the Drag Effect
// -------------------------------------------
xPos = xPos-(moviewidth/2);
yPos = yPos-(movieheight/2);
// -------------------------------------------
// slide <--x-->
// -------------------------------------------
setProperty("../picture", _x, getProperty("../picture", _x)-(xPos/speed));
if (Number(getProperty("../picture", _x))<Number(-(w/2))) {
setProperty("../picture", _x, 0.01);
} else if (Number(getProperty("../picture", _x))>0) {
setProperty("../picture", _x, -w/2);
}
// -------------------------------------------