Lawsuit fun, need help with lock script!

You could make the SWFs stop working after the week, that’d be pretty easy, but as far as the HTML that’s very open, I’m not sure what choice you have there. You could put timers in the PHP too, heh.


var cutoffDate:Date = new Date(whatever time you want);
function checkDate():void
{
     var rightNow:Date = new Date();
     if (rightNow > cutoffDate)
     {
          drawABigUglyBoxOverAllTheContent(lol);
     }
}