Repository: flex-asjs Updated Branches: refs/heads/feature/dragAndDrop 06213a0c1 -> 1b1697a0f
Fix EffectsTimer test Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/7cd30933 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/7cd30933 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/7cd30933 Branch: refs/heads/feature/dragAndDrop Commit: 7cd3093332caf3d03c5c9eca7a424c9d4f16f953 Parents: bde25eb Author: greg-dove <[email protected]> Authored: Mon Aug 21 17:01:44 2017 +1200 Committer: greg-dove <[email protected]> Committed: Mon Aug 21 17:01:44 2017 +1200 ---------------------------------------------------------------------- manualtests/EffectsExample/src/MyInitialView.mxml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/7cd30933/manualtests/EffectsExample/src/MyInitialView.mxml ---------------------------------------------------------------------- diff --git a/manualtests/EffectsExample/src/MyInitialView.mxml b/manualtests/EffectsExample/src/MyInitialView.mxml index 74cfafb..19fefe8 100644 --- a/manualtests/EffectsExample/src/MyInitialView.mxml +++ b/manualtests/EffectsExample/src/MyInitialView.mxml @@ -28,6 +28,10 @@ limitations under the License. font-size: 14pt; font-weight: bold; } + + global { + IEffectTimer: ClassReference("org.apache.flex.utils.EffectTimer"); + } </fx:Style> @@ -78,10 +82,10 @@ limitations under the License. <js:TextButton text="fade in" click="fadein()" /> </js:Container> - <js:Container width="500"> - <js:Image id="image1" source="twong.jpg" x="100" y="20" /> + <js:Container width="500" height="500"> + <js:Image id="image1" src="twong.jpg" x="100" y="20" /> <js:Label id="caption1" text="Dick" x="100" y="200" /> - <js:Image id="image2" source="jproctor.jpg" x="400" y="20" /> + <js:Image id="image2" src="jproctor.jpg" x="400" y="20" /> <js:Label id="caption2" text="Jane" x="400" y="200" /> </js:Container> </js:Container>
