dear forum
I tried to create a corresponding hotspot from the popup_bg layer.
instead of
Code
<action name="popup" scope="private:POPUP" args="type, content, width, height, scrollbars"><![CDATA[
if(popup, break(); );
closemenue(); action(hidemap);
addlayer('popup_bg', popup_bg);
set(popup_bg,
type=container,
align=lefttop, width=100%, height=100%,
zorder=9999,
handcursor=false,
bgcapture=true,
capture=false,
bgcolor=0xffffff, onloaded='tween(bgalpha,0.3,1.0);',
ondown='popup_close()'
);
addlayer('popup', popup); hidebars();
set(popup,
type=container,
parent='popup_bg'.....................
Display More
I tried to change addlayer to addhotspot and added ath=90, atv=00,
Code
<action name="popup" scope="private:POPUP" args="type, content, width, height, scrollbars"><![CDATA[
if(popup, break(); );
closemenue(); action(hidemap);
addhotspot('popup_bg', popup_bg);
set(popup_bg,
type=container,
align=lefttop, width=800, height=600, ath=90, atv=00,
zorder=9999,
handcursor=false,
bgcapture=true,
capture=false,
bgcolor=0xffffff, onloaded='tween(bgalpha,0.3,1.0);',
ondown='popup_close()'
);
addlayer('popup', popup); hidebars();
set(popup,
type=container,
parent=hotspot['popup_bg']...............................
Display More
Unfortunately, that doesn't work. Can someone help me with this?