Ok, I saw your script. Try to use URL without spaces in the forum
You must use the object mov in Flash format.
Write the image at the end of the object, after all buttons, this way, the image will show OVER all the other hotspots of the panorama.
I added a new flag in the latest version 0,7,6,8 to block all mouse events when the mouse is over an image, this way you can avoid to move the panorama when the user click in the image. The name of this flag is "block", write this flag in the effects parameter of the image. In your example:
Code:
(pano)
{
TYPE=MOV;
FILE=dining_room.mov;
BUTTON3D=group1,detail1,1, 67,32,200, 0,0,0,0,#11,info,info,info,70,10,70,no,no,no,2,nokey,release," Click for show 3D 1","Fade("_this_","",100,0.5,"infowindow");";
IMAGE= infowindow,image1,0,0,0,#99,100,block,foto;
BUTTON=infowindow,close1,0,120,-230,0,0,#99,closebutton,closebutton,closebutton,100,80,50,trans,trans,trans,2,nokey,release,"Close","Fade("_this_","",0,0.5,"infowindow");";
}
(info)
{
type=IMAGE;
file=infobutton.png;
}
(closebutton)
{
TYPE=IMAGE;
FILE=close.bmp;
}
(foto)
{
TYPE=IMAGE;
FILE=222.swf;
}
regards!