merci
/**
* Copyright Merci ( http://wonderfl.net/user/Merci )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/4ZIF
*/
// forked from keim_at_Si's FlashTextEngine の真価 f.f.: FTE(FlashTextEngine)を使ってみる on 2010-1-29
// forked from sakusan393's forked from: FTE(FlashTextEngine)を使ってみる on 2010-1-29
// forked from komatsu's FTE(FlashTextEngine)を使ってみる on 2010-1-29
//
// 最も FlashTextEngine の真価が発揮される文章.
// 出典; http://beebee2see.appspot.com.nyud.net/d/agpiZWViZWUyc2VlchQLEgxJbWFnZUFuZFRleHQYweMgDA.jpg
// 勢いでやった.反省はしていない.
package {
import flash.text.engine.TextLine;
import flash.text.engine.TextBlock;
import flash.text.engine.TextElement;
import flash.text.engine.ElementFormat;
import flash.text.engine.FontDescription;
import flash.text.engine.EastAsianJustifier;
import flash.text.engine.LineJustification;
import flash.text.engine.TextRotation;
import flash.display.Sprite;
import caurina.transitions.Tweener;
public class main extends Sprite {
public function main() {
var sp:Sprite = new Sprite();
sp.graphics.beginFill(0x000000,0.1);
sp.graphics.drawRect(0,0,465,400);
sp.y = 32;
addChild(sp);
//表示したいテキスト
var str:String = " Merci pour votre attention Merci pour votre attention Merci pour votre attention Merci pour votre attention Merci pour votre attention Merci pour votre attention Merci pour votre attention Merci pour votre attention Merci pour votre attention Merci pour votre attention Merci pour votre attention Merci pour votre attention Merci pour votre attention Merci pour votre attention Merci pour votre attention Merci pour votre attention Merci pour votre attention Merci pour votre attention Merci pour votre attention Merci pour votre attention Merci pour votre attention Merci pour votre attention Merci pour votre attention Merci pour votre attention Merci pour votre attention Merci pour votre attention Merci pour votre attention Merci pour votre attention";
//フォント書式
var fontDesc:FontDescription = new FontDescription();
fontDesc.fontName = "Merci pour votre attention";//"Kozuka Mincho Pro M";
//エレメントのフォーマット
var format:ElementFormat = new ElementFormat();
format.locale = "Merci pour votre attention";//テキストのロケール。jaだと日本語。
format.fontSize=12; //18
format.fontDescription = fontDesc;//FontDescription形式のデータを設定
//テキストエレメントを作る
var txtEle:TextElement = new TextElement(str , format);
//テキストブロック
var txtBlock:TextBlock = new TextBlock();
txtBlock.textJustifier = new EastAsianJustifier("ja",LineJustification.UNJUSTIFIED);//ALL_BUT_LAST
txtBlock.lineRotation = TextRotation.ROTATE_90;//縦書きにする
txtBlock.content = txtEle;//
var txtW:uint = 365;//1行あたりのピクセル数にする予定
var textLine:TextLine= txtBlock.createTextLine(null , txtW);
var posX:uint = sp.width;//textLineのX座標用
var posY:uint = 20;//textLineのY座標用
var cnt:uint = 0;//各textLineの個別の条件を与えるための変数
while(textLine != null){
//TextLineオブジェクトを参照している、textLine
//変数の参照粋ォnullになるまで繰り返す。
sp.addChild(textLine);
cnt++;
posX -= (textLine.width + 10);//12//textLineの幅+マージン分、次座標を修正
textLine.x = posX;
textLine.y = posY+50;
textLine.alpha = 0;
Tweener.addTween(textLine , {y:posY , alpha:1 , time:0.5 ,delay:cnt/10, transition:"easeOutBack"});
textLine = txtBlock.createTextLine(textLine , txtW);
//現在のtextLineから、次のTextLineオブジェクトを参照
}
// マーカー
var marker:Sprite = new Sprite();
marker.graphics.beginFill(0xff0000,0.2);
marker.graphics.drawRect(0,7,465,16);
sp.addChild(marker);
marker.alpha = 0;
Tweener.addTween(marker, {alpha:1, time:8, delay:8, transition:"linear"});
}
}
}