Based on the following code, what does the XML_URL refer to? var myXML:XML = new XMLQ;
var XML_URL:String =
var myXMLURL:URLRequest = new URLRequest(XML_URL); var myLoader:URLLoader = new URLLoader(myXMLURL);
myLoader.addEventListener('complete', xmlLoaded);
function xmlLoaded(event:Event):void
{
myXML = XML(myLoader.data);
trace("Data Ioaded.')
}
- The XML file name
- The name of the dynamic text where the XML will be stored
- The XMLfile URL
- The SWF path
Answer(s): C
Explanation:
The XML_URL is a string variable, which includes the XML file of the loaded content path. The above code is used to call the external content stored in the XML format. Answer options D, A, and B are incorrect. These are not valid options that are referred by the XML_URL.

Toggle Button Bar control has the following default characteristics:
· Preferred size: It is the size wide enough to contain all buttons with their label text and icons.
· Control resizing rules: By default, ToggleButtonBar cannot be resized. However, a developer can specify percentage sizes if he wants the ToggleButtonBar to be resized based on the size of its parent container.
· selectedlndex: It determines which button will be selected when the control is created.
When its value is 0, it selects the leftmost button in the bar.
When its value is set to -1, it deselects all buttons in the bar.
· Padding: By default, ToggleButtonBar control uses 0 pixels for the left and right properties.
Answer option D is incorrect. The LinkButton control is a borderless Button control. Its contents are highlighted when a user moves the mouse over it. In its initial state, the LinkButton is transparent and shows only its label and icon.
When the cursor hovers over the LinkButton, its background color changes and the pointing hand mouse cursor appears at that moment.
Show Answer Next Question