JK Patel
JK Patel

Reputation: 858

Want a Animation

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?

Upvotes: 0

Views: 132

Answers (1)

Sr.Richie
Sr.Richie

Reputation: 5740

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

Upvotes: 1

Related Questions