<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>FESFlip hang</title>
<description> Hello,

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.</description><link>http://www.flasheff.com/forum/read.php?31,6981,6981#msg-6981</link><lastBuildDate>Wed, 19 Jun 2013 00:34:12 -0500</lastBuildDate>
<generator>Phorum 5.2.7</generator>
<item>
<guid>http://www.flasheff.com/forum/read.php?31,6981,6991#msg-6991</guid>
<title>Re: FESFlip hang</title><link>http://www.flasheff.com/forum/read.php?31,6981,6991#msg-6991</link><description><![CDATA[ Hello kneo,<br /><br />thank you for the hint which just has solved another problem. To speed up FESFlip i had to disabled smoothing:<br /><br /><pre class="bbcode">
			flipShowTransition.smooth=false;
			flipShowTransition.smoothSegments=1;</pre>]]></description>
<dc:creator>krumedia</dc:creator>
<category>FlashEff 2.0 Flex</category><pubDate>Tue, 22 Feb 2011 05:22:26 -0600</pubDate></item>
<item>
<guid>http://www.flasheff.com/forum/read.php?31,6981,6986#msg-6986</guid>
<title>Re: FESFlip hang</title><link>http://www.flasheff.com/forum/read.php?31,6981,6986#msg-6986</link><description><![CDATA[ There is no stop method on flasheff. Probably you want to call removeAll or removeEffect method.]]></description>
<dc:creator>kneo</dc:creator>
<category>FlashEff 2.0 Flex</category><pubDate>Tue, 22 Feb 2011 00:54:19 -0600</pubDate></item>
<item>
<guid>http://www.flasheff.com/forum/read.php?31,6981,6981#msg-6981</guid>
<title>FESFlip hang</title><link>http://www.flasheff.com/forum/read.php?31,6981,6981#msg-6981</link><description><![CDATA[ Hello,<br /><br />i set up serveral show transitions and decide which effect to play:<br /><br /><pre class="bbcode">
		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();
		}</pre><br />But the flipShowTransition (FESFlip) hangs when played and the processor usage is high and flash player blocks for the duration of the transition.<br /><br />This is the configuration of the flipShowTransition:<br /><br /><pre class="bbcode">
			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';</pre><br />The other types of transitions work fine.]]></description>
<dc:creator>krumedia</dc:creator>
<category>FlashEff 2.0 Flex</category><pubDate>Mon, 21 Feb 2011 08:56:22 -0600</pubDate></item>
</channel>
</rss>