truth and politics

i just witnessed a display of truth in politics and I am amazed : here is the link. His name is Tim Ryan’s and apparently it’s a video from one or two years back; but still. I wonder what bill he was standing agains’t.
view here.. viva you tube!
Peace.

ActionScript - Composing Images using BitmapData

In my current project I need to create a weird drop shadow effect, which is exactly like a checker board with black and transparent squares. I could do this using the drawing API but that would require quite a lot of drawing and a complex algorithm to manage different square sizes.
So I looked into doing [...]

ActionScript Drawing Method - SquiglyLineTo

In a project I am currently working on I am required to draw squigly lines using the drawing API, as they are a basic part of most skins of the common controls (dialog box, buttons..). I used Ric Ewing’s dashTo method as a basis to build a function called SquiglyLineTo:
MovieClip.prototype.squiglyLineTo = function(startx, starty, endx, endy, [...]