I would like to delete all field that contain the word "ora" in the name,
Code: Select all
repeat for the number of field in this card
if the name of fld contains "ora" then
delete fld ...
end if
end repeat
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Code: Select all
repeat for the number of field in this card
if the name of fld contains "ora" then
delete fld ...
end if
end repeat
Code: Select all
on mouseUp
repeat with i = the number of fields down to 1
if the short name of field i contains "ora" then delete field i
end repeat
end mouseUp