Errata

Developing Android Applications with Adobe AIR

Errata for Developing Android Applications with Adobe AIR

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.

The following errata were submitted by our customers and have not yet been approved or disproved by the author or editor. They solely represent the opinion of the customer.

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

Version Location Description Submitted by Date submitted
PDF Page pg 133
on last code's function onImageLoaded

i read the full code but i don't see where exactly variable reader is defined...

var exif:ExifInfo = reader.exif;

instead i used for it to work.
var exif:ExifInfo = exifLoader.exif;

Then on page 134 the first function
isn't this condition

if( reference == "S" || reference == "E" )
{

}

Juan Jose Mendez  May 26, 2011 
PDF Page pg 133
on last code's function onImageLoaded

i read the full code but i don't see where exactly variable reader is defined...

var exif:ExifInfo = reader.exif;

instead i used for it to work.
var exif:ExifInfo = exifLoader.exif;

Then on page 134 the first function
isn't this condition

if( reference == "S" || reference == "E" )
{

}

Juan Jose Mendez  May 26, 2011 
PDF Page pg 133
on last code's function onImageLoaded

i read the full code but i don't see where exactly variable reader is defined...

var exif:ExifInfo = reader.exif;

instead i used for it to work.
var exif:ExifInfo = exifLoader.exif;

Then on page 134 the first function
isn't this condition

if( reference == "S" || reference == "E" )
{
degree * - 1
}

supposed to be instead?

if( reference == "S" || reference == "E" )
{
degree *= - 1
}

Note from the Author or Editor:
Yes,
degree * - 1;
should be
degree *= -1;

Juan Jose Mendez  May 26, 2011 
PDF Page pg 133
on last code's function onImageLoaded

this local variable declared is never used within its function

var parts:Array;

Juan Jose Mendez  May 26, 2011 
Printed, PDF Page 50
Second function

The function about mid-page:

if (stage.supportsOrientationChange) {
.....
}

I think should be "Stage" with a cap S:

if (Stage.supportsOrientationChange) {
.....
}

Angela Ferrell  Jan 12, 2012