1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

ティラノスクリプトのタグコード解析

Posted at

はじめに

ティラノスクリプトのコードからタグの詳細な処理を解析します。

メッセージ

[cm]

NextImg、全てのメッセージレイヤーの文字、フリーレイヤーをクリアする。

this.kag.ftag.hideNextImg();
this.kag.layer.clearMessageInnerLayerAll();
this.kag.layer.getFreeLayer().html("").hide();

[er]

NextImg、カレントのメッセージレイヤーの文字をクリアする。

this.kag.ftag.hideNextImg();
this.kag.getMessageInnerLayer().html("");

[l]

NextImgを表示し、クリック待ちする。

// スキップ、オートの場合はif文で次の処理に進む。
this.kag.ftag.showNextImg();

[p]

クリック待ち+改ページ。
[l][cm]との違いは不明(コードは異なる)。

this.kag.stat.flag_ref_page = true;
this.kag.ftag.showNextImg();

[r]

改行(< br />)を追加する。

var j_inner_message = this.kag.getMessageInnerLayer();
var txt = j_inner_message.find("p").find(".current_span").html() + "<br />";
j_inner_message.find("p").find(".current_span").html(txt);        
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?