| 123456789101112131415161718192021222324 |
- <?xml version="1.0" encoding="utf-8"?>
- <ToastMessageBase
- xmlns="com.fnicollet.toaster.message.*"
- xmlns:mx="http://www.adobe.com/2006/mxml"
- width="260" height="160"
- timeToLive="5"
- horizontalAlign="left"
- verticalGap="0"
- paddingLeft="5" paddingRight="15"
- creationComplete="creationCompleteHandler()">
- <mx:Script source="../../scripts/common/IMTToaster.as" />
-
- <mx:HBox width="100%">
- <mx:Label text="{titleMessage}" styleName="toasterTitle" width="100%" />
- <mx:Spacer width="100%" />
- <mx:Image source="@Embed('images/messages/close.png')" click="this.close()" />
- </mx:HBox>
- <mx:HBox width="185" height="100%" verticalAlign="top">
- <mx:Text text="{message}" styleName="toasterMessage" selectable="false" width="100%" />
- </mx:HBox>
- </ToastMessageBase>
|