I am reading the book "Flash Builder 4 and Flex 4 Bible". On page 373 the following is mentioned:
The older Flex 3 effects support an architecture known as a trigger, which plays an effect in reaction to a specific event. This code, for example, would cause an object to fade in and out in reaction to having its visible property set to true or false:
<mx:Image source=”assets/flower1.jpg” showEffect=”{myMXEffect}” hideEffect=”{myMXEffect}”/>If you try to use this syntax with Spark effects, the results are inconsistent. Adobe recommends that Spark effects be called directly from ActionScript code or in the context of a view state transition.
I cannot however find any such thing mentioned in adobe documentation. Is it true that "If you try to use this syntax with Spark effects, the results are inconsistent." ?