Errata

Learning Flash Media Server 3

Errata for Learning Flash Media Server 3

Submit your own errata for this product.

The errata list is a list of errors and their corrections that were found after the product was released. If the error was corrected in a later version or reprint the date of the correction will be displayed in the column titled "Date Corrected".

The following errata were submitted by our customers and approved as valid errors by the author or editor.

Color key: Serious technical mistake Minor technical mistake Language or formatting error Typo Question Note Update

Version Location Description Submitted By Date submitted Date corrected
PDF
Page 214
Client.prototype.playRecorded

Note from the Author or Editor:
If the settings are either -2 or 0, the application plays a recorded stream. The live stream should be shut off when attempting to playback a recorded stream, but there may be some lag. So, using 0 will work as well, and in most respects is probably a better choice.

J?rgen Nielsen  Aug 21, 2009 
PDF
Page 209
whole page

Example 9-3 should be a listing of chooseflv.asc but is a listing of liverecord.asc from the following example. Please supply the missing code!

best regards
Joergen Nielsen

Note from the Author or Editor:
//Choose FLV to Play
application.onAppStart = function()
{
trace("Choose FLV app.");
};
application.onConnect = function(user)
{
application.acceptConnection(user);
Client.prototype.chooseFLV = function(flvName)
{
this.flvStream = Stream.get("flvPlay");
if (this.flvStream) {
this.flvStream.play(flvName, -2);
trace("Playing " + flvName);
}
};
Client.prototype.stopPlay = function()
{
this.flvStream.play(false);
trace("All play has stopped.");
};
};

joeniels  Aug 19, 2009