source: EDIS/trunk/java/tracking-ui-core/src/main/flex/gov/va/med/edp/view/HelpMessage.mxml@ 1227

Last change on this file since 1227 was 1227, checked in by George Lilly, 13 years ago

initial load of EDIS 1.0

File size: 491 bytes
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<mx:Panel
3 xmlns:mx="http://www.adobe.com/2006/mxml"
4 layout="vertical" borderAlpha="1" >
5
6 <mx:Script>
7 <![CDATA[
8 import mx.managers.PopUpManager;
9
10 private function closeWindow(): void
11 {
12 PopUpManager.removePopUp(this);
13 }
14 ]]>
15 </mx:Script>
16 <mx:Text id="message" />
17 <mx:Canvas width="100%" >
18 <mx:Button
19 label="Close"
20 top="12" right="12" bottom="12"
21 click="closeWindow()" />
22 </mx:Canvas>
23</mx:Panel>
Note: See TracBrowser for help on using the repository browser.