Привет! Пытаюсь начать работать с box2d, но сразу же как я объявляю переменную типа b2World у меня вылазят следующие ошибку:

Код:
1004: Namespace was not found or is not a compile-time constant.
5008: The name of definition 'b2Internal' does not reflect the location of this file. Please change the definition's name inside this file, or rename the file. C:\Documents and Settings\Администратор\Мои документы\HelloBox2dWorld\Box2D\Common\b2internal.as
Использую Flash CS3. Из-за чего такие глюки?

Код AS3:
package
{
import Box2D.Dynamics.b2World;
import flash.display.MovieClip;
/**
* ...
* @author Andrey Bogdanov
*/
public class Main extends MovieClip
{
private var world:b2World;
public function Main()
{
}
}
}