Errata

Flash Hacks

Errata for Flash Hacks

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
Printed Page 35
unsure

The example for Hack #7 does not work properly. If you watch the tree blowing in the wind, you'll notice it eventually falls over, blowing farther and farther to one side each time. This seems like a serious bug to me.

Anonymous   
Printed Page 257
top of page

mySound = new Sound(this);
mySoundEcho.attachSound("UISound");
mySound.start(0,1);
mySound.setVolume(200);
should be:
mySound = new Sound(this);
mySound.attachSound("UISound");
mySound.start(0,1);
mySound.setVolume(200);

Anonymous   
Printed Page 276-7
last line of 276, second line of 277

groovyTrans.fadeIn(3000, 2);
groovyTrans.fadeOut(6000);
should be:
groovy.fadeIn(3000, 2);
groovy.fadeOut(6000);

Anonymous