Metti le miniature in un clip filmato contenitore al quale dai ad esempio nome istanza "mc"
Alle frecce dai nome istanza "sinistra", "destra" poi nel primo fotogramma metti questo
codice:
sinistra.onRollOver = function()
{
    onEnterFrame = function()
    {
        mc._x-=2
        }
    }
    sinistra.onRollOut = function()
{
    delete onEnterFrame
trace("ok")
    }
    
    
    
    destra.onRollOver = function()
{
    onEnterFrame = function()
    {
        mc._x+=2
        }
    }
    destra.onRollOut = function()
{
    delete onEnterFrame
trace("ok")
    }