I am using Flash Builder 4.6 Pro. I have the following code but I get an error saying that it can't resolve <mx:Script> to a component.
I would appreciate your help.
__________________________________________________
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx=http://ns.adobe.com/mxml/2009
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx"
minWidth="955" minHeight="600" backgroundColor="#FFFEFE"
preloaderChromeColor="#FFFDFD">
<mx:Script>
<![CDATA[
private function checkLogin(evt:ResultEvent):void
{
if(evt.result.loginsuccess == "yes")
{
currentState = "Logged In";
}
if(evt.result.loginsuccess == "no")
{
mx.controls.Alert.show("Invalid username/password");
}
}
]]>
</mx:Script>
North America
Europe, Middle East and Africa
Asia Pacific