Now here is an example how to check a user using our CAPTCHA.
Popularity: 38%
And now here is a running example. This shows how to generate a CAPTCHA setting about 4 parameters.
Popularity: 38%
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;
[…]
Popularity: 31%