0

My project is based on Adobe AIR/Actionscript Project and it's a small desktop application. I opened a popup using PopupManager Class. So here is code.

var _dataviewPopup = new dataviewPopup();
/*  PopUpManager.addPopUp(_dataviewPopup , FlexGlobals.topLevelApplication as DisplayObject, true);
PopUpManager.centerPopUp(_dataviewPopup);

and I remove popup using

PopupManager.removePopUp(_dataviewPopup);

So I want to give some animation to this popup when it appears and disappears, is it possible? Is there any library available for it?

ketan
  • 19,129
  • 42
  • 60
  • 98
JK Patel
  • 858
  • 8
  • 22

1 Answers1

1

Have a look at this tutorial to see how you can use the NativeWindow class to animate new windows. Hope it helps http://blog.flashdesign-store.com/?p=128

Sr.Richie
  • 5,680
  • 5
  • 38
  • 62