Well, try to trace the _x coordinate or print it onto screen so you can
see what it is.

What is pc_move? If you want to move the clip, you must say
if (_level0.pc_loader.pc._x<=100) {
_level0.pc_loader.pc._x = 0;
}

--
Patrik



hoho < wrote:
> i have two movieclips in my main movie,
>
> movie no.1 "pc" as a swf file loaded into the "pc_loader" instance.
> movie no. 2 "controller" is a movieclip already in the main movie.
>
> now from the "controller" movieclip i want to check the _x position
> from the "pc" movieclip. something like this:
>
> onClipEvent (load) {
> if (_level0.pc_loader.pc._x<=100) {
> pc_move = 0;
> }
> }
>
> but well, it does not work, i got the feeling that the _x position
> was not properly read at all.
>
> anybody could help me ???? thanx.
>
>
>