home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
One Click 21 (Special)
/
OC021.iso
/
Interface
/
it.dig
/
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
|
2006-07-04
|
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";
}
}