package flash
{
import flash.display.MovieClip;
public dynamic class Main extends MovieClip
{
public var lProxy;
public var her;
public var loader;
public function initl(l) : void {
// Temporarily disable all of the movement functions which can retract the tongue
var startFastIn = lProxy.createProxy(her.tongue, "startFastIn");
startFastIn.addPre(function() { return true; }, false);
var startMovingTongueIn = lProxy.createProxy(her.tongue, "startMovingTongueIn");
startMovingTongueIn.addPre(function() { return true; }, false);
var moveTongueIn = lProxy.createProxy(her.tongue, "moveTongueIn");
moveTongueIn.addPre(function() { return true; }, false);
// Extend the tongue
her.tongue.hangOut();
loader.updateStatus("Tongue will now stick out permanently. Press RESET to retract it.");
}
}
}