Hi,
do you use the example code from the latest version?
Because the example was especially improved for that because there were similar requests.
Now there is a background layer that blocks controlling other elements.
It's defined here:
https://krpano.com/viewsource.html?relea…/popup_blur.xml
this way:
|
Source code
|
1
2
3
4
5
6
7
8
9
10
11
|
addlayer('popup_bg', popup_bg);
set(popup_bg,
type=container,
align=lefttop, width=100%, height=100%,
zorder=99,
handcursor=false,
bgcapture=true,
capture=false,
//bgcolor=0x123456, onloaded='tween(bgalpha,0.3,1.0);', // optional: colorize the background
ondown='popup_close()'
);
|
(depending on your other layers maybe increase the zorder value)
And there is code to automatically remove the blur when changing the pano:
|
Source code
|
1
|
set(global.events[popup].onremovepano, popup_close() );
|
That means when using the code from the latest release, that what you describe shouldn't happen.
Best regards,
Klaus