Scripted Black and White image
Posted On: July 28, 2009
Price: Free
Flash Player Version: 8
Swishmax Version: Swishmax 2, 2008.08.12
Comments: No comments yet
Price: Free
Flash Player Version: 8
Swishmax Version: Swishmax 2, 2008.08.12
Comments: No comments yet
This file uses ColorMatrixFilter to create a scripted black and white image.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | onFrame (1) { img.onRollOver = function(){ this.useHandCursor = false; myFilter = new flash.filters.ColorMatrixFilter (); myFilter.matrix = new Array (0.333, 0.333, 0.333, 0, 0, 0.333, 0.333, 0.333, 0, 0, 0.333, 0.333, 0.333, 0, 0, 0, 0, 0, 1, 0); this.filters = [myFilter]; } img.onRollOut = function(){ this.filters = [undefined]; } } |


