// create an lso privatevar lso : SharedObject = getLocal( "myLso" ); // create some sample data privatevar sampleData : String = "data"; //assign some data to the lso lso.data.sampleData = sampleData; //flush to the file system lso.flush(); //check the lso value trace( lso.data.sampleData ); // delete the lso lso.clear(); // should be "undefined" trace( lso.data.sampleData );