//------------------------------------- // 99 Bottles in object oriented actionscript // 11/2002 by Ralf Bokelberg - helpQLODhelp.de //------------------------------------- //------------------------------------- // The Baseclass for the drinks //------------------------------------- function PackageClass(name, content){ this.name = name; this.content = content; } // PackageClass.prototype.display = function(nr){ if(nr > 1) return nr + " " + this.name + "s of " + this.content; else if(nr == 1) return "1 " + this.name + " of " + this.content; else return "no more " + this.name + "s of " + this.content;