とある日の妄想モバイル - FLASH(15)文字列とか

0.戻る

2007年08月11日(木)

AS2.0って文字列置き換え関数ないんかな〜?
ということでメモ。

function strReplace(srcKey, newKey, srcStr) {

var temp = srcStr.split(srcKey);
return temp.join(newKey);

}


あと、テキストフィールドでHTML使えるようにしたときは

textField.htmlText

のプロパティに書き込まないとHTMLタグ反映できない。
すぐ忘れるのでメモ。
0.戻る

©2001-2009 konkon All Rights Reserved.