Friday, October 29, 2010

“No Response” Display Issue in TitleBar of your AIR Project.

Issue: If you are working on Air with huge load on your application like lot of DragDrop operation, moving component from here and there and performing lot of animation on your application which will lead to hang your application (stuck your application) but after some time it will work properly but issue is - you can find "No Response" will get displayed at TitleBar of your Application.

Solution: After R&D I found that there is property called applicationActivate in WindowedApplication which is used to solve your problem. Call below function to make your project name assigned to “title” of your application

private function applicationActivateHandler():void{
this.title = "ProjectName";
}

No comments:

Post a Comment