Errata


Print Print Icon

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 "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



Version Location Description Submitted By Corrected
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 
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