thanks umalo
i just set one ui_setting for the ui check
when some bottons false than the image of bottons will no show and the others will arrange in the other way.
the code just like
<ui_settings info="true"
tel="true"
showmap="true"
/>
and set one events onxmlcomplete="ui_startup();
the ui_startup action like this
<action name="ui_startup">
if(ui_settings.info == false,
set(layer[info].visible,false);
set(layer[tel].x,70);
set(layer[showmap].x,140);
);
if(ui_settings.tel ==false,
set(layer[tel].visible,false);
);
if(ui_settings.showmap ==false,
set(layer[showmap].visible,false);
);
</action>
it works in the pc viewers, but i also set position of the layer[info]and the others with x.normal and x.mobile ,when i put x.normal and x.mobile into the action, it doesn't work.
how to do