Dear all,
If have this code at in frame 1:
import mx.transitions.Tween;
import mx.transitions.easing.*;
Which is used for this part in a function:
var tw:Tween = new Tween(snipper,"_xscale",Strong.easeOut,snipper._xscale,100,1,true);
But when I preview my movie it says:
Tween.as, line 13 1093: Syntax error.
Strong.as, line 10 1093: Syntax error.
Both referring to the version class that should be included in the Tween en and the easing class. In both classes this line is included at the beginning of the code
#include "Version.as"
The version class constists outof:
//****************************************************************************
//Copyright (C) 2003-2005 Macromedia, Inc. All Rights Reserved. The
//following is Sample Code and is subject to all restrictions on such
//code as contained in the End User License Agreement accompanying
//this product.
//****************************************************************************
// version info for mx.transitions classes
// this file is included by every class in that package so that
// this static is a member of each of those classes.
public static var version:String = "1.1.0.52";
I cant figure out what to do and could not find any solution on the net, any help is appriciated.
Thanks