Hi, > var strpixels:String = element.style.width as String; > if (strpixels.indexOf('%') === -1) > > We may have still RTE ?
Yep it would also RTE if strpixels was null. So perhaps this instead? > if (strpixels !== null && strpixels.indexOf('%') === -1) Justin