road0001 / tweensy

Automatically exported from code.google.com/p/tweensy
1 stars 0 forks source link

Beta fx cs4 - Undefined property rotationX, rotationY, rotationZ, scaleZ and z #5

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Create a Flex Library Project
2. SVN Checkout from http://tweensy.googlecode.com/svn/trunk/beta/source/cs4/
3. Build swc

What is the expected output? What do you see instead?
A swc being build.

What version of the product are you using? On what operating system?
Beta fx cs4

Please provide any additional information below.
1119: Access of possibly undefined property rotationX through
a reference with static type flash.display:DisplayObject.   
tweensy/com/flashdynamix/motion/plugins DisplayTween.as line 80

1119: Access of possibly undefined property rotationY through 
a reference with static type flash.display:DisplayObject.   
tweensy/com/flashdynamix/motion/plugins DisplayTween.as line 82

1119: Access of possibly undefined property rotationZ through 
a reference with static type flash.display:DisplayObject.   
tweensy/com/flashdynamix/motion/plugins DisplayTween.as line 84

1119: Access of possibly undefined property scaleZ through a reference with
static type flash.display:DisplayObject.    
tweensy/com/flashdynamix/motion/plugins DisplayTween.as line 74

1119: Access of possibly undefined property z through 
a reference with static type flash.display:DisplayObject.   
tweensy/com/flashdynamix/motion/plugins DisplayTween.as line 64 

Original issue reported on code.google.com by hpe...@gmail.com on 4 Mar 2009 at 2:06

GoogleCodeExporter commented 8 years ago
Because this is the CS4 SWC it requires that you compile using Flash Player 10 
as this version supports these 
properties for 3D rotations

Original comment by flashdyn...@gmail.com on 8 Mar 2009 at 2:24

GoogleCodeExporter commented 8 years ago
hi!
i had the same problem.
this is easy to fix. instead of:
_current.scaleX
just use:
_current['scaleX']

so this does not trace you an 1119-error
regards,
 daniel

Original comment by daniel.b...@gmail.com on 12 Mar 2009 at 10:50