16-10-2005, 17:17
|
|
|
חבר מתאריך: 03.09.05
הודעות: 2,857
|
|
שימוש פשוט בString CLASS
הנה, בניתי סקריפט העושה שימוש פשוט בcharAt על מנת לבדוק את כל האותיות.
קוד:
var myInput:String;
var intervalID;
var i:Number=0;
this.createTextField("selfWriting", this.getNextHighestDepth, Stage.width/3.1, Stage.height/4, 200, 60);
this.createTextField("contentInput", 123, Stage.width/3.1, Stage.height/2, 200, 60);
selfWriting.border=true;
selfWriting.selectable = false;
contentInput.border=true;
contentInput.type="input";
function strtWrite(TextToWrite:String)
{
_root.selfWriting.text+=TextToWrite.charAt(i)
i++
if(i>=TextToWrite.length)
{
clearInterval(intervalID)
i=0
}
}
btn.onRelease=function()
{
myInput=contentInput.text;
intervalID=setInterval(strtWrite,50,myInput);
}
התוצאה SWF
כתבו את הטקסט הרצוי בתיבה התחתונה ולחצו על start
(לצערנו פלאש עדיין לא תומכת בעברית כמו שצריך )
_____________________________________
|