home *** CD-ROM | disk | FTP | other *** search
/ i·claim - visualizing argument / ICLAIM.ISO / mac / t_02.swf / scripts / __Packages / mx / controls / streamingmedia / CuePoint.as < prev    next >
Text File  |  2005-02-25  |  259b  |  13 lines

  1. class mx.controls.streamingmedia.CuePoint
  2. {
  3.    function CuePoint(aName, aTime)
  4.    {
  5.       this.name = aName;
  6.       this.time = aTime;
  7.    }
  8.    function toString()
  9.    {
  10.       return "CuePoint: " + this.name + " at " + this.time + " seconds";
  11.    }
  12. }
  13.