home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
i·claim - visualizing argument
/
ICLAIM.ISO
/
pc
/
gloss.swf
/
scripts
/
__Packages
/
mx
/
controls
/
streamingmedia
/
CuePoint.as
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2005-02-26
|
287 b
|
15 lines
class mx.controls.streamingmedia.CuePoint
{
var name;
var time;
function CuePoint(aName, aTime)
{
this.name = aName;
this.time = aTime;
}
function toString()
{
return "CuePoint: " + this.name + " at " + this.time + " seconds";
}
}