Important facts about commercial licenses

  • Licenses are perpetual. They do not expire and do not need to be renewed.
  • Licenses can be upgraded. You can upgrade to a more expensive license later paying only the difference in cost.
  • Pay attention to the distribution type - Hosted (sites / servers), binary (applications) or source (includes all the others). Choose according to your needs (more below).
  • All licenses allow commercial use unless otherwise indicated.
  • Read the full license by clicking on the icon.
  • Read more about licenses in our handy license guide.
$4

Personal License

1 site, unlimited servers No source distribution
You need to log-in or create an account
  • Create an account
  • Log-in
  • Please use your real name.
  • Account activation link will be sent to this address.
  • Minimum 8 characters

Clicking this button confirms you read and agreed to the terms of use and privacy policy.

  • Released: Apr 30, 2011
    Last Update: May 1, 2011
  • Language: ActionScript

Password Generator

Password Generator
Developed by Stijn Van den Bogaert, Released Apr 30, 2011

Generate a random password with only two lines of code.

ActionScript

Tags: actionscript 3.0 , as3 , generator , password generator

To generate a password, add these two lines of code in your project:

var generator:Generator = new Generator(10);
addChild(generator);

This code will generate a password from letters and digits, with a total length of 10. If you want a password with letters only, do it like this:

var generator:Generator = new Generator(10, false);
addChild(generator);

I created a demo, so you can see what you can do with this package.

User Reviews

No reviews have been submitted yet.

Questions & Comments


Or enter your name and Email
No comments have been posted yet.
You must be logged-in to vote. Log-in to your account or register now.