Class: FZBlockXMLSettingsManager


Class allows you to add properties to XML document. It's very useful in widget editor.

Function addSettingToXML


public static function addSettingToXML(setXML:XML, setName:String, setValue:String):void


Example:

var res:XML = new XML("<settings />");
 
FZBlockXMLSettingsManager.addSettingToXML(res, "glowInDur", "100");
 
res == XML("<settings><glowInDur><![CDATA[100]]></glowInDur></settings>")


 

Developer guide


Overview

API

Lessons