//メインタイムラインのフレームアクション
			theSnap = this.getTextSnapshot();
			this.getText_btn.onRelease = function() {
			 text_txt.text = theSnap.getText(0, 6);
			};
			this.getCount_btn.onRelease = function() {
			 count_txt.text = theSnap.getCount();
			};
			this.search1_btn.onRelease = function() {
			 result1_txt.text = theSnap.findText(0, "snap", false);
			};
			this.search2_btn.onRelease = function() {
			 result2_txt.text = theSnap.findText(0, "snap", true);
			};
			
※.メインタイムライン上に"静止テキストの扱い(TextSnapshot)"と書かれた静止テキストフィールドを配置しておきます。