im trying to change the transition so that it rotates on the x cordinate kind of like a rotating cube effect.
I tried changing the tweener code to the following:
Code:
private function movePhrase():void
{
var field:TextField=container_mc.getChildByName('field_txt') as TextField;
Tweener.addTween(container_mc, {rotationX:container_mc.rotationX+180, time:1, onComplete:callTimer});
}
I obviously changed it to import the whole caurina transition class so that has nothing to do with it.
This doesn't throw any errors when i compile it for "flash player 10" however i don't see any of the text at all. If i compile it for "flash player 9" i get the error "## [Tweener] Error: The property 'rotationX' doesn't seem to be a normal object property of [object MovieClip] or a registered special property." If i revert it back to the original tweener code it works fine and i see the default text and transition style.
How can i change the transition style so that it rotates like a cube and work? What am i doing wrong?