Flash Lite 2 |
|||
| Flash Lite 2.x ActionScript リファレンスガイド > ActionScript クラス > TextFormat > url (TextFormat.url プロパティ) | |||
public url : String
このテキストフォーマットを使用するテキストのハイパーリンク先の URL を示します。url プロパティが空のストリングである場合、テキストにはハイパーリンクがありません。デフォルト値 null はプロパティを未設定にします。
使用できるバージョン : ActionScript 1.0、Flash Lite 2.0
この例では、Macromedia Web サイトへのハイパーリンクが設定されたテキストフィールドを作成します。
var myformat: TextFormat = new TextFormat();
myformat.url = "http: //www.macromedia.com";
this.createTextField("mytext",1,100,100,200,100);
mytext.multiline = true;
mytext.wordWrap = true;
mytext.border = true;
mytext.html = true;
mytext.text = "Go to Macromedia.com";
mytext.setTextFormat(myformat);