Sha256: 198946cc6184d9f3b41d288be19772d522c5f313159abf1f43a208b444bae876

Contents?: true

Size: 1.73 KB

Versions: 3

Compression:

Stored size: 1.73 KB

Contents

<?xml version="1.0" encoding="utf-8"?>
<mx:Object xmlns:mx="http://ns.adobe.com/mxml/2009">
	<mx:Script>
<![CDATA[
	import mx.core.Application;
	import mx.core.UIComponent;
	
	[Bindable]
	private var view:UIComponent = Application.application.mainView;
]]>
</mx:Script>

	<mx:Declarations>
		<mx:Fade duration="300" id="fadeEffect"/>
	</mx:Declarations>
	
	<!-- Tweens ___________________________________________________________________ -->
	
	<mx:Declarations>
		<mx:Object id="centerPlaneFlipTweenTo" rotationY="-200" rotationX="360" z="-10"
			dropShadowFilter="{rightShadow}"/>
		<mx:Object id="centerPlaneFlipTweenFrom" rotationY="0" rotationX="0" z="0"
			dropShadowFilter="{leftShadow}"/>

		<mx:Object id="centerPlaneFlowOutTween" z="500" x="-150" rotationY="40"/>
		<mx:Object id="centerPlaneFlowInTween" dropShadowFilter="{rightShadow}"
			x="{(view.width/2)}" z="0" rotationY="0"/>

		<mx:Object id="leftPlaneTweenTo" rotationY="-80" z="-3" dropShadowFilter="{leftShadow}"/>
		<mx:Object id="leftPlaneTweenFrom" rotationY="0" z="0"/>

		<mx:Object id="rightPlaneTweenTo" rotationY="80" z="-3" dropShadowFilter="{rightShadow}"/>
		<mx:Object id="rightPlaneTweenFrom" rotationY="0"/>

		<mx:Object id="topPlaneTweenTo" rotationX="50"/>
		<mx:Object id="topPlaneTweenFrom" rotationX="0"/>

		<mx:Object id="bottomPlaneTweenTo" rotationX="-50"/>
		<mx:Object id="bottomPlaneTweenFrom" rotationX="0"/>

		<mx:Object id="fadeOutTween" alpha="0"/>
		<mx:Object id="fadeInTween" alpha="1"/>

		<!-- Filters __________________________________________________________________ -->

		<mx:Object id="leftShadow" blurX="5" blurY="5" alpha="0.5" distance="-10"/>
		<mx:Object id="rightShadow" blurX="5" blurY="5" alpha="0.5" distance="10"/>
	</mx:Declarations>
	
</mx:Object>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
emergent-core-0.1.0 rails_generators/emergent_config/templates/app/flex/com/fourD/animators/FourDTweenCollection.mxml
emergent-core-0.1.02 rails_generators/emergent_config/templates/app/flex/com/fourD/animators/FourDTweenCollection.mxml
emergent-core-0.1.01 rails_generators/emergent_config/templates/app/flex/com/fourD/animators/FourDTweenCollection.mxml