Home
> FlashEff 2.0 Flex
> Topic
FESFlip hang
Posted by krumedia
|
FESFlip hang February 21, 2011 08:56AM | Registered: 2 years ago Posts: 25 |
Hello,
i set up serveral show transitions and decide which effect to play:
But the flipShowTransition (FESFlip) hangs when played and the processor usage is high and flash player blocks for the duration of the transition.
This is the configuration of the flipShowTransition:
The other types of transitions work fine.
i set up serveral show transitions and decide which effect to play:
private function imageLoadingCompleted():void
{
// Need to stop
effect.stop();
switch (imageChangeReason)
{
case IMAGE_CHANGE_DEFAULT:
effect.showTransition = photoShowTransition;
break;
case IMAGE_CHANGE_NEXT:
slideShowTransition.preset = 2;
effect.showTransition = slideShowTransition;
break;
case IMAGE_CHANGE_PREVIOUS:
slideShowTransition.preset = 1;
effect.showTransition = slideShowTransition;
break;
case IMAGE_CHANGE_COLOR_NEXT:
effect.showTransition = flipShowTransition;
break;
case IMAGE_CHANGE_COLOR_PREVIOUS:
effect.showTransition = flipShowTransition;
break;
}
effect.show();
}But the flipShowTransition (FESFlip) hangs when played and the processor usage is high and flash player blocks for the duration of the transition.
This is the configuration of the flipShowTransition:
flipShowTransition = new FESFlip(); flipShowTransition.preset=1; flipShowTransition.focalDistance=120; flipShowTransition.smooth=true; flipShowTransition.smoothSegments=3; flipShowTransition.tweenDuration=0.9; flipShowTransition.tweenType='Strong'; flipShowTransition.easeType='easeInOut';
The other types of transitions work fine.
|
Re: FESFlip hang February 22, 2011 12:54AM | Admin Registered: 5 years ago Posts: 519 |
|
Re: FESFlip hang February 22, 2011 05:22AM | Registered: 2 years ago Posts: 25 |
Sorry, only registered users may post in this forum.






