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 >
Wrap
Text File
|
2005-02-25
|
259b
|
13 lines
class mx.controls.streamingmedia.CuePoint
{
function CuePoint(aName, aTime)
{
this.name = aName;
this.time = aTime;
}
function toString()
{
return "CuePoint: " + this.name + " at " + this.time + " seconds";
}
}