<?xml version="1.0" encoding="utf-8"?> <mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="init()" viewSourceURL="srcview/index.html"> <mx:Script source="AIREncryptSWFMain.as" /> <mx:TextInput editable="false" id="inputName" left="32" top="50" cornerRadius="2" width="160"/> <mx:Button label="Browse" click="browseSWF()" left="209" top="50"/> <mx:Label text="Select Input SWF" top="20" left="20"/> <mx:Label text="Select Output Name" top="100" left="12"/> <mx:Label text="Password:" top="179" left="10"/> <mx:TextInput editable="false" id="outputName" top="126" left="32" cornerRadius="2" width="160"/> <mx:Button label="Encrypt" toolTip="Perform AES 256 encryption on input file and save output to file." click="encryptSWF()" top="216" left="20"/> <mx:Button label="Browse" click="browseSave()" top="126" left="209"/> <mx:Button label="Decrypt" toolTip="Perform AES 256 decryption on input file and save output to file." click="decryptSWF()" top="216" left="111"/> <mx:Button x="209" y="216" label="Load SWF" click="loadSWF()" toolTip="Loads input file using loadBytes()."/> <mx:TextInput x="79" y="177" id="keyText" displayAsPassword="true"/> </mx:WindowedApplication>