Люди, подскажите, pls:
есть код:

Код:
smth = function()
{
this.init = function()
{
this.someVar = someVal;
}
this.XMLLoad = function()
{
// this.someVar = ... //здеся подгружаем откуда-нибудь значение
}
this.paint = function()
{
_root.createEmptyMovieClip("some_clip",_root.getNextHighestDepth());
// задаём параметры и т.д. и т.п.
//...
_root["some_clip"].onMouseMove = function()
{
//как здеся узнать значение someVar?
}
}
}
я тока один способ знаю - юзать не this.someVar а _global.someVar
а мона как-ндь подругому?