Posts Tagged ‘Actionscript’
25 lines
February 5th, 2009 by Bethany Lee | Tags: Actionscript, Derrick's ActionScript VQS Guide, Simplicity
Check this out: there is always something to learn from simplicity. http://www.25lines.com/
ActionScript VQS Errata – Page 140 Typo – Code 10.3 Correction
October 27th, 2008 by Derrick Ypenburg | Tags: Actionscript, Derrick's ActionScript VQS Guide, Flash
Thanks to Jason of http://www.jasonhildredesign.com for bringing a code error from Code 10.3 on Page 140 to my attention. For the textFocus event handler function, the event object should be a FocusEvent object and not a MouseEvent object. The correct code should read: function textFocus(evt:FocusEvent):void { evt.target.text = ‘ ‘; } Cheers, Derrick
ActionScript VQS Errata – Page 154 Typo – To generate random numbers
October 7th, 2008 by Derrick Ypenburg | Tags: Actionscript, Derrick's ActionScript VQS Guide, Flash
Thanks to Karen Collins of the University of Waterloo for finding a typo on page 154, To generate random numbers – Step 1. The code sample trace(‘pseudoRandomNumber; “ + pseudoRandomNumber); should read: trace(‘pseudoRandomNumber; ‘ + pseudoRandomNumber); The string pseudoRandomNumber ends in a double-quote and should end with a single quote (in bold). Cheers, Derrick
