Hi,
follwing the current day resp. nigth time i tried that stuff step by step.
Solution - or better workaround is - the style does not affect the ADDLAYER action.
BAD IS:
addlayer(get(pic));
set(layer[get(pic)].style, flagtype-bannertextstyle);
So in order to get it done one needs to as folows.
GOOD is:
addlayer(get(pic));
set(layer[get(pic)].url,%BASEDIR%/plugins/textfield.swf);
set .... copy .... etc
AND set the parameters for the textfield step by step, like
set(layer[get(pic)].css, text-align:center; color:#FFFFFF; font-family:Arial; font-weight:bold; font-size:14px; );
Not so sexy like the use of the STYLE after the ADDLAYER action, but now it works.
Thanks for my answer
At Klaus:
Bug or is this line not correct:
set(layer[get(pic)].style, flagtype-bannertextstyle);
where
>> flagtype-bannertextstyle << is the name of the style .. see previous post
cheers