sez [EMAIL PROTECTED]: >...I was moving the htmlText of >the field so that any imbedded font/style/size changes in the text in >the original field are carried over to the target field. > >* Create a field containing text, including "â" (euro symbol). >* Copy the field >* Put the rtfText of field 1 into field 2: "â" = "\'DB" >* Put the htmlText of field 1 into field 2: "â" = "¤" >* Put the unicodeText of field 1 into field 2: "â" = " Â" >* Put the text of field 1 into field 2: "â" = "â" > >So how does one move _styled_ text containing "â "from one field to >another without changing the content & style? Is there some way to >define "¤" to Run Rev or the O/S? Maybe I'm missing something, but why would you want to put *the htmlText* of one field *directly into* another field? This would make sense if you're making an app to do HTML editing -- but if that's the case, "¤" is exactly what you *should* see in place of the euro symbol, not so? Try any of these instead and see how they go:
set the htmlText of field 2 to the htmlText of field 1 set the unicodeText of field 2 to the unicodeText of field 1 set the rtfText of field 2 to the rtfText of field 1 _______________________________________________ use-revolution mailing list [EMAIL PROTECTED] http://lists.runrev.com/mailman/listinfo/use-revolution
