se ho capito bene cosa intendi puoi provare così
dopo a aver creato l'etichetta con il filo (che dovrebbe essere attaccato alla maniglia della valigia giusto?)converti il tutto in simbolo e
nel pannello azioni del movieclip aggiungi questo script, prova il filmato ...dovrebbe funzionare ...

onClipEvent (load) {
function initState() {
a = 1;
time = 0.90000000000000002;
num_osc = 1.3999999999999999;
released = 1;
}
initState();
init_ang = -60;
}
onClipEvent (enterFrame) {
this.onPress = function() {
released = 0;
};
this.onRelease = this.onReleaseOutside = function () { initState(); init_ang = this._rotation; };
if (released) {
a += 0.10000000000000001;
this._rotation = Math.sin(num_osc * a) * Math.pow(time, a) * init_ang;
}
if (!released) {
init_ang = Math.atan2(_parent._ymouse, _parent._xmouse) * 180 / Math.PI - 90;
this._rotation = init_ang;
}
}