ActionScript for Flash MX: The Definitive Guide, 2nd Edition by Colin Moock The unconfirmed error reports are from readers. They have not yet been approved or disproved by the author or editor and represent solely the opinion of the reader. Here's a key to the markup: [page-number]: serious technical mistake {page-number}: minor technical mistake : important language/formatting problem (page-number): language change or minor formatting problem ?page-number?: reader question or request for clarification This page was updated October 1, 2004. UNCONFIRMED errors and comments from readers: {110} 2nd code-snippet; In the book, the code snippet is written like this: // If there's a valid description if (description === undefined) { trace("WARNING: No description value was specified!"); } else if (description !=== null) { // ...create description text field. } In the else if statement, theres one '=' too much, it has to be like this: // If there's a valid description if (description === undefined) { trace("WARNING: No description value was specified!"); } else if (description !== null) { // ...create description text field. } {484} 1st paragraph, and table R-4; The country code for the UK listed at: http://www.iso.org/iso/en/prods-services/iso3166ma/02iso-3166-code-lists/list-en1.html is GB, not UK as listed on this page.