ImtToaster.mxml 836 B

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