本文主要是介绍做了个非常简单的Flash验证码(附源代码) 转载于http://www.cordyblog.cn/?action=showamp;id=68,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Submitted by cordy on 2007, November 28, 2:39 PM. flash
最近某个项目需要在flash登录,而验证码又不在服务器产生,就只需要一个flash里的随机验证码就行了。
于是就花了几分钟做了一个简单的随机验证码。
效果还不错哦。
效果:
这个有33K之巨是因为偷懒,直接把组件拿来做展示的结果。。实际上微不足道的。。
- var width=this._width;
- var height=this._height;
- var codebg = this.createEmptyMovieClip("codebg", 1);
- this.createTextField("codeTxt", 2, 0, 0, width, height);
- codeTxt.selectable=false;
- codeTxt.autoSize="center";
- codeTxt.html=true;
- function getRandCode() {
- this.randCode = random(10)+""+random(10)+""+random(10)+""+random(10);
- codebg.clear();
- codeTxt.htmlText="";
- for(var i=0;i<50;i++){
- var x=random(width)+1;
- var y= random(height)+1;
- var ex=x+random(5)-2;
- var ey=y+random(5)-2;
- ex=ex<=0?1:ex>=width-1?width-2:ex;
- ey=ey<=0?1:ey>=height-1?height-2:ey;
- codebg.lineStyle(1,random(0xFFFFFF), 100);
- codebg.moveTo(x,y);
- codebg.lineTo(ex,ey);
- }
- for(var i =0;i<this.randCode.length;i++){
- if(random(2)){
- codeTxt.htmlText=codeTxt.htmlText+" ";
- }
- codeTxt.htmlText=codeTxt.htmlText+"<font size='18' color='#"+random(0xFFFFFF).toString(16)+"'><b>"+randCode.charAt(i)+"</b></font>"
- }
- }
- function checkCode(code){
- var match=String(code)==String(this.randCode);
- getRandCode();
- return match;
- }
- getRandCode();
这篇关于做了个非常简单的Flash验证码(附源代码) 转载于http://www.cordyblog.cn/?action=showamp;id=68的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!