the only thing I can imagine is that this variable gets overridden somewhere! (Ach was!?

Is it a local or global variable?
Best
Klaus
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Code: Select all
set the htmlText of field "myField" to the htmlText of field "myField"
from the htmlText of the field and set the htmlText of the field back to the "cleaned" html.�
Code: Select all
on mouseUp
lock screen
set the cursor to busy
repeat with i = 1 to the number of cards
go card i
repeat with j = 1 to the number of fields
put the htmlText of field j into tText
replace "�" with "" in tText
set the htmlText of field j to tText
end repeat
set the cursor to busy
end repeat
go card 1
unlock screen
end mouseUp