I can then obtain that objects fileName
Code: Select all
--get the fileName of selected image of group
put the fileName of img into fld "Field_who_am_I"
thanks in advance for any suggestions.
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Code: Select all
--get the fileName of selected image of group
put the fileName of img into fld "Field_who_am_I"
Code: Select all
on mouseUp
put the short name of the target into fld "Field_who_am_I"
end mouseUp
yes, thank you for your reply, that gives me a direction to head in.gyroscope wrote:Hi reelstuff, one way would be:Hope that's of help.Code: Select all
on mouseUp put the short name of the target into fld "Field_who_am_I" end mouseUp