Hi!

imp_txt.flags = VISIBLE;

should be

imp_txt.flags |= VISIBLE;
or
imp_txt.flags |= SHOW; // FOR VER 7.66.4

give us feedback smile

Ottawa