_global problem (between two movies)

Hi, (I 've read other _global topics & didnt help )
my second swf (which will display as a tip in windows) reads data from Access. Buttons are in the first swf. Onrollover sends an “id” to the second swf.

first swf says:

_global.num = 2;
loadMovie(“second.swf”,“golge”);

second swf:
movie_on_load:
any_num = _global.num;

tip says: (which is a moveClip)
loadVariables("GetDetail.asp?Record="add String(_root.any_num) ,this);

there is a BIG mistake for me …

I couldnt find anything. What’s wrong???

loadVariables("GetDetail.asp?Record="add String(_root.any_num) ,this);

there u have to remove the _root

loadVariables("GetDetail.asp?Record="add String(any_num) ,this);