item
└XML data
XML element | 名前 | 番号 | 相対 | 範囲 | フィルタ | ID |
itemクラスから継承された属性 | |
name | ユニコード |
名前 | |
text | 文字列 |
文字列の形でのXMLデータ |
パースされた、XMLデータ。
XML elementオブジェクトを作って追加ということはできない。
XML dataオブジェクトのtext属性にXML文字列を設定すると、パースして XML elementオブジェクトが作られる。
Mac OS X10.4現在、ちょっと微妙な使い勝手となっている。
tell application "System Events"
set theXML to make XML data with properties {name:"HTML", text:"<html><head></head><body></body></html>"}
name of XML element 1 of XML element 1 of theXML
end tell