Now here is an example how to check a user using our CAPTCHA.
For source files see bellow.
And now here is a running example. This shows how to generate a CAPTCHA setting about 4 parameters.
More parameters can be added to this example, like dots size, polygons transparency, font size but all that are features.
Enjoy!
PS: Sources are bellow.
Recently I needed to implement a CAPTCHA (means: “Completely Automated Public Turing test to tell Computers and Humans Apart” – on wikipedia) functionality to a sign-up form in flex.
So here is the class:
public class Captcha extends Canvas
{
private const CAPTCHA_WIDTH:uint = 120;
private const CAPTCHA_HEIGHT:uint = 40;
[...]