home *** CD-ROM | disk | FTP | other *** search
/ i·claim - visualizing argument / ICLAIM.ISO / pc / glossary.swf / scripts / __Packages / mx / controls / streamingmedia / CuePoint.as < prev    next >
Encoding:
Text File  |  2005-02-24  |  287 b   |  15 lines

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