hi,
textbox have problem :
we can only set textbox layer in c2 editor and not with the events , but we need it . why ?
problem :
if we make a global textbox then we change the layout the textbox layer can change
now if the new layer is invisible then textbox will be invisible and we can not change the layer of textbox in code
this code in textbox plugin is the problem : (look at the red)
[quote:k7jog20d]
// Is entirely offscreen or invisible: hide
if (!this.visible || !this.layer.visible || right <= 0 || bottom <= 0 || left >= rightEdge || top >= bottomEdge)
{
if (!this.element_hidden)
jQuery(this.elem).hide();
this.element_hidden = true;
return;
}