// queste attivano e disattivano l'alt text
tessuto_1.onRollOver = function() {
showAlt("select one of the three combinations");
};
tessuto_1.onRollOut = function() {
removeAlt(this);
};
// qua invece sono definite le proprietà dell'alttext in generale..
function showAlt(txt) {
_root.createEmptyMovieClip("altText", 2);
var ob = _root.altText;
ob.createTextField("altTextField", 1, 10,0, 0,0);
ob.startDrag(true);
ob.altTextField.background = true;
ob.altTextField.border = true;
ob.altTextField.backgroundColor = 0xFFFFCC;
ob.altTextField.color = 0x999999;
ob.altTextField.selectable = false;
ob.altTextField.autoSize = true;
ob.altTextField.text = txt;
};
function removeAlt() {
removeMovieClip(_root.altText);
};