I am sorry guys, but I must be stupid.
Even with your help I still have not make it work.
I give you more details. (I assure that is the last time :-))
Using the following ActionScript, I am loading the 'Gallery2.swf' movie in the 'Index2.1.swf' movie:
loadMovie ("gallery2.swf", _root.loadWindow);
The 'Gallery2.swf' movie includes the following Scipt:
x = _xmouse;
y = _ymouse;
Dist1 = Math.sqrt(Math.pow(Math.abs(_xmouse - 259.4),2) + Math.pow(Math.abs(_ymouse - 101.5),2));
Rate1 = Dist1/60;
if (x > 195.4 and y >49.5 and x <324 and y < 154 ) {
scalex = (-90*Rate1) +90;
setProperty ("/bichroblur+", _xscale, scalex);
setProperty ("/bichroblur+", _yscale, scalex);
} else {
setProperty ("/bichroblur+", _xscale, 0);
setProperty ("/bichroblur+", _yscale, 0);
}
gotoAndPlay (1);
('bichroblur+' is just a one frame movie clip with an image on it frame)
Like you told me, I have tried with '_root.loadWindow.gallery2.bichroblur+' in my setProperty action but nothing.
Thanks again.
Attoc