Code: Select all
command savePrefs
get objects in group "GroupName"
repeat for each line tLongID in it
send "savePrefs" to tLongID
end repeat
end savePrefs
Thanks!
Jeff M.
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Code: Select all
command savePrefs
get objects in group "GroupName"
repeat for each line tLongID in it
send "savePrefs" to tLongID
end repeat
end savePrefs
Code: Select all
on mouseUp
repeat with i = 1 to the number of controls in group "myGroup"
put the long id of control i of group "myGroup" into tId
send savePrefs to tId
end repeat
end mouseUp
command savePrefs
-- save your prefs here
end savePrefs