You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@flex.apache.org by Christofer Dutz <ch...@c-ware.de> on 2016/07/26 20:37:45 UTC

[FlexJS] Something broke in CreateJS

Hi,


starting my last update from today the CreateJS module has started producing compile errors:


[INFO] --- flexjs-maven-plugin:0.7.0-SNAPSHOT:compile-as (default-compile-as) @ CreateJS ---
[INFO] Executing COMPC in tool group Falcon with args: [-load-config=/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/target/compile-as-config.xml]
Loading configuration: /Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/target/compile-as-config.xml

/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:34
Warning: Definition org.apache.flex.effects.IEffect could not be found.
import org.apache.flex.effects.IEffect;
      ^

/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:35
Warning: Definition org.apache.flex.effects.Sequence could not be found.
import org.apache.flex.effects.Sequence;
      ^

/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:36
Warning: Definition org.apache.flex.effects.Parallel could not be found.
import org.apache.flex.effects.Parallel;
      ^

/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:37
Warning: Definition org.apache.flex.effects.Fade could not be found.
import org.apache.flex.effects.Fade;
      ^

/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:38
Warning: Definition org.apache.flex.effects.Move could not be found.
import org.apache.flex.effects.Move;
      ^

/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:68
Error: Call to a possibly undefined method Sequence.
_sequence = new org.apache.flex.effects.Sequence();
               ^

/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:94
Error: Type was not found or was not a compile-time constant: org.apache.flex.effects.Sequence.
private var _sequence:org.apache.flex.effects.Sequence;
                     ^

/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:97
Error: Type was not found or was not a compile-time constant: IEffect.
public function internalEffect():IEffect
                                ^

/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:117
Error: Type was not found or was not a compile-time constant: IEffect.
var para:IEffect = tween.internalEffect();
        ^

/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:32
Warning: Definition org.apache.flex.effects.IEffect could not be found.
import org.apache.flex.effects.IEffect;
      ^

/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:33
Warning: Definition org.apache.flex.effects.Parallel could not be found.
import org.apache.flex.effects.Parallel;
      ^

/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:34
Warning: Definition org.apache.flex.effects.Fade could not be found.
import org.apache.flex.effects.Fade;
      ^

/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:35
Warning: Definition org.apache.flex.effects.Move could not be found.
import org.apache.flex.effects.Move;
      ^

/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:65
Error: Call to a possibly undefined method Parallel.
_parallel = new Parallel();
               ^

/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:140
Error: Type was not found or was not a compile-time constant: Move.
var move:Move = new Move();
        ^

/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:140
Error: Call to a possibly undefined method Move.
var move:Move = new Move();
                   ^

/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:148
Error: Type was not found or was not a compile-time constant: Fade.
var fade:Fade = new Fade();
        ^

/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:148
Error: Call to a possibly undefined method Fade.
var fade:Fade = new Fade();
                   ^

/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:165
Error: Type was not found or was not a compile-time constant: Parallel.
private var _parallel:Parallel;
                     ^

/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:168
Error: Type was not found or was not a compile-time constant: IEffect.
public function internalEffect():IEffect
                                ^

Would be great if this could be fixed.


Chris

AW: [FlexJS] Something broke in CreateJS

Posted by Christofer Dutz <ch...@c-ware.de>.
Ok ... so it turned out the CreateJS was missing two dependencies to the Effects module. I added them and things compiled again.


Chris

________________________________
Von: Christofer Dutz <ch...@c-ware.de>
Gesendet: Dienstag, 26. Juli 2016 22:37:45
An: 'dev@flex.apache.org'
Betreff: [FlexJS] Something broke in CreateJS

Hi,


starting my last update from today the CreateJS module has started producing compile errors:


[INFO] --- flexjs-maven-plugin:0.7.0-SNAPSHOT:compile-as (default-compile-as) @ CreateJS ---
[INFO] Executing COMPC in tool group Falcon with args: [-load-config=/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/target/compile-as-config.xml]
Loading configuration: /Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/target/compile-as-config.xml

/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:34
Warning: Definition org.apache.flex.effects.IEffect could not be found.
import org.apache.flex.effects.IEffect;
      ^

/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:35
Warning: Definition org.apache.flex.effects.Sequence could not be found.
import org.apache.flex.effects.Sequence;
      ^

/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:36
Warning: Definition org.apache.flex.effects.Parallel could not be found.
import org.apache.flex.effects.Parallel;
      ^

/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:37
Warning: Definition org.apache.flex.effects.Fade could not be found.
import org.apache.flex.effects.Fade;
      ^

/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:38
Warning: Definition org.apache.flex.effects.Move could not be found.
import org.apache.flex.effects.Move;
      ^

/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:68
Error: Call to a possibly undefined method Sequence.
_sequence = new org.apache.flex.effects.Sequence();
               ^

/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:94
Error: Type was not found or was not a compile-time constant: org.apache.flex.effects.Sequence.
private var _sequence:org.apache.flex.effects.Sequence;
                     ^

/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:97
Error: Type was not found or was not a compile-time constant: IEffect.
public function internalEffect():IEffect
                                ^

/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:117
Error: Type was not found or was not a compile-time constant: IEffect.
var para:IEffect = tween.internalEffect();
        ^

/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:32
Warning: Definition org.apache.flex.effects.IEffect could not be found.
import org.apache.flex.effects.IEffect;
      ^

/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:33
Warning: Definition org.apache.flex.effects.Parallel could not be found.
import org.apache.flex.effects.Parallel;
      ^

/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:34
Warning: Definition org.apache.flex.effects.Fade could not be found.
import org.apache.flex.effects.Fade;
      ^

/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:35
Warning: Definition org.apache.flex.effects.Move could not be found.
import org.apache.flex.effects.Move;
      ^

/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:65
Error: Call to a possibly undefined method Parallel.
_parallel = new Parallel();
               ^

/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:140
Error: Type was not found or was not a compile-time constant: Move.
var move:Move = new Move();
        ^

/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:140
Error: Call to a possibly undefined method Move.
var move:Move = new Move();
                   ^

/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:148
Error: Type was not found or was not a compile-time constant: Fade.
var fade:Fade = new Fade();
        ^

/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:148
Error: Call to a possibly undefined method Fade.
var fade:Fade = new Fade();
                   ^

/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:165
Error: Type was not found or was not a compile-time constant: Parallel.
private var _parallel:Parallel;
                     ^

/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/CreateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:168
Error: Type was not found or was not a compile-time constant: IEffect.
public function internalEffect():IEffect
                                ^

Would be great if this could be fixed.


Chris

AW: [FlexJS] Something broke in CreateJS

Posted by Christofer Dutz <ch...@c-ware.de>.
Hi Peter,


Just have a look at my latest commit ... that contains how to do the same in Maven.

It's all fixed now.


Chris

________________________________
Von: Peter Ent <pe...@adobe.com>
Gesendet: Dienstag, 26. Juli 2016 22:58:10
An: dev@flex.apache.org
Betreff: Re: [FlexJS] Something broke in CreateJS

Yes, I added a dependency on the Effects project to CreateJS so that the
CreateJS SWF side would be able to look similar to SWF side. I changed the
dependency in the upper build xml file.

What's necessary to get it work for Maven?
‹peter

On 7/26/16, 4:37 PM, "Christofer Dutz" <ch...@c-ware.de> wrote:

>Hi,
>
>
>starting my last update from today the CreateJS module has started
>producing compile errors:
>
>
>[INFO] --- flexjs-maven-plugin:0.7.0-SNAPSHOT:compile-as
>(default-compile-as) @ CreateJS ---
>[INFO] Executing COMPC in tool group Falcon with args:
>[-load-config=/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/framewo
>rks/projects/CreateJS/target/compile-as-config.xml]
>Loading configuration:
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/target/compile-as-config.xml
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:34
>Warning: Definition org.apache.flex.effects.IEffect could not be found.
>import org.apache.flex.effects.IEffect;
>      ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:35
>Warning: Definition org.apache.flex.effects.Sequence could not be found.
>import org.apache.flex.effects.Sequence;
>      ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:36
>Warning: Definition org.apache.flex.effects.Parallel could not be found.
>import org.apache.flex.effects.Parallel;
>      ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:37
>Warning: Definition org.apache.flex.effects.Fade could not be found.
>import org.apache.flex.effects.Fade;
>      ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:38
>Warning: Definition org.apache.flex.effects.Move could not be found.
>import org.apache.flex.effects.Move;
>      ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:68
>Error: Call to a possibly undefined method Sequence.
>_sequence = new org.apache.flex.effects.Sequence();
>               ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:94
>Error: Type was not found or was not a compile-time constant:
>org.apache.flex.effects.Sequence.
>private var _sequence:org.apache.flex.effects.Sequence;
>                     ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:97
>Error: Type was not found or was not a compile-time constant: IEffect.
>public function internalEffect():IEffect
>                                ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:117
>Error: Type was not found or was not a compile-time constant: IEffect.
>var para:IEffect = tween.internalEffect();
>        ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:32
>Warning: Definition org.apache.flex.effects.IEffect could not be found.
>import org.apache.flex.effects.IEffect;
>      ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:33
>Warning: Definition org.apache.flex.effects.Parallel could not be found.
>import org.apache.flex.effects.Parallel;
>      ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:34
>Warning: Definition org.apache.flex.effects.Fade could not be found.
>import org.apache.flex.effects.Fade;
>      ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:35
>Warning: Definition org.apache.flex.effects.Move could not be found.
>import org.apache.flex.effects.Move;
>      ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:65
>Error: Call to a possibly undefined method Parallel.
>_parallel = new Parallel();
>               ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:140
>Error: Type was not found or was not a compile-time constant: Move.
>var move:Move = new Move();
>        ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:140
>Error: Call to a possibly undefined method Move.
>var move:Move = new Move();
>                   ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:148
>Error: Type was not found or was not a compile-time constant: Fade.
>var fade:Fade = new Fade();
>        ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:148
>Error: Call to a possibly undefined method Fade.
>var fade:Fade = new Fade();
>                   ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:165
>Error: Type was not found or was not a compile-time constant: Parallel.
>private var _parallel:Parallel;
>                     ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:168
>Error: Type was not found or was not a compile-time constant: IEffect.
>public function internalEffect():IEffect
>                                ^
>
>Would be great if this could be fixed.
>
>
>Chris


Re: [FlexJS] Something broke in CreateJS

Posted by Peter Ent <pe...@adobe.com>.
Yes, I added a dependency on the Effects project to CreateJS so that the
CreateJS SWF side would be able to look similar to SWF side. I changed the
dependency in the upper build xml file.

What's necessary to get it work for Maven?
‹peter

On 7/26/16, 4:37 PM, "Christofer Dutz" <ch...@c-ware.de> wrote:

>Hi,
>
>
>starting my last update from today the CreateJS module has started
>producing compile errors:
>
>
>[INFO] --- flexjs-maven-plugin:0.7.0-SNAPSHOT:compile-as
>(default-compile-as) @ CreateJS ---
>[INFO] Executing COMPC in tool group Falcon with args:
>[-load-config=/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/framewo
>rks/projects/CreateJS/target/compile-as-config.xml]
>Loading configuration:
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/target/compile-as-config.xml
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:34
>Warning: Definition org.apache.flex.effects.IEffect could not be found.
>import org.apache.flex.effects.IEffect;
>      ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:35
>Warning: Definition org.apache.flex.effects.Sequence could not be found.
>import org.apache.flex.effects.Sequence;
>      ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:36
>Warning: Definition org.apache.flex.effects.Parallel could not be found.
>import org.apache.flex.effects.Parallel;
>      ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:37
>Warning: Definition org.apache.flex.effects.Fade could not be found.
>import org.apache.flex.effects.Fade;
>      ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:38
>Warning: Definition org.apache.flex.effects.Move could not be found.
>import org.apache.flex.effects.Move;
>      ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:68
>Error: Call to a possibly undefined method Sequence.
>_sequence = new org.apache.flex.effects.Sequence();
>               ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:94
>Error: Type was not found or was not a compile-time constant:
>org.apache.flex.effects.Sequence.
>private var _sequence:org.apache.flex.effects.Sequence;
>                     ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:97
>Error: Type was not found or was not a compile-time constant: IEffect.
>public function internalEffect():IEffect
>                                ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Sequence.as:117
>Error: Type was not found or was not a compile-time constant: IEffect.
>var para:IEffect = tween.internalEffect();
>        ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:32
>Warning: Definition org.apache.flex.effects.IEffect could not be found.
>import org.apache.flex.effects.IEffect;
>      ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:33
>Warning: Definition org.apache.flex.effects.Parallel could not be found.
>import org.apache.flex.effects.Parallel;
>      ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:34
>Warning: Definition org.apache.flex.effects.Fade could not be found.
>import org.apache.flex.effects.Fade;
>      ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:35
>Warning: Definition org.apache.flex.effects.Move could not be found.
>import org.apache.flex.effects.Move;
>      ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:65
>Error: Call to a possibly undefined method Parallel.
>_parallel = new Parallel();
>               ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:140
>Error: Type was not found or was not a compile-time constant: Move.
>var move:Move = new Move();
>        ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:140
>Error: Call to a possibly undefined method Move.
>var move:Move = new Move();
>                   ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:148
>Error: Type was not found or was not a compile-time constant: Fade.
>var fade:Fade = new Fade();
>        ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:148
>Error: Call to a possibly undefined method Fade.
>var fade:Fade = new Fade();
>                   ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:165
>Error: Type was not found or was not a compile-time constant: Parallel.
>private var _parallel:Parallel;
>                     ^
>
>/Users/christoferdutz/Projects/Apache/Flex/flex-asjs/frameworks/projects/C
>reateJS/src/main/flex/org/apache/flex/createjs/tween/Tween.as:168
>Error: Type was not found or was not a compile-time constant: IEffect.
>public function internalEffect():IEffect
>                                ^
>
>Would be great if this could be fixed.
>
>
>Chris