yes... dammi un minuto che ti posto l'AS che permette l'"effetto terremoto", 'petta eh 
eccolo, lo devi associare al clip filmato (il testo che vuoi far muovere).
codice:
onClipEvent (load) {
_root.stop();
// imposto le variabili per il posizionamento
xposition = this._x;
yposition = this._y;
// registro i valori iniziali in altre 2 variabili
partx = Number(xposition);
party = Number(yposition);
i = 1;
}
// ora ad ogni ripetizione del movie clip
onClipEvent (enterFrame) {
i = i+1;
rx = random(5);
ry = random(5);
randx = random(5);
randy = random(5);
this._x = Number(xposition+randx);
this._y = Number(yposition+randy);
if (i == 10) {
xposition = Number(xposition+rx);
yposition = Number(yposition+ry);
}
if (i == 20) {
xposition = Number(xposition+rx);
yposition = Number(yposition-ry);
}
if (i == 30) {
xposition = Number(xposition-rx);
yposition = Number(yposition-ry);
}
if (i == 40) {
i = 1;
xposition = partx;
yposition = party;
}
}
tutto ovviamente by Ragno75 