November 8, 200124 yr Newbies Hello... The following script pastes the contents of 'gname' at the end of the data already in the 'comments' field. However I need to be able to paste the data at the cursor position in the 'comments' field. Any suggestions would be appreciated. Copy [select, "gname"] Go to Field ["comments"] Paste [] thank you. [email protected]
November 8, 200124 yr I recommend using the Set Field command instead of copy and paste. If you want to append the contents of gname to comments, then you would have: Set field[comments, comments&gname] If you want to insert gname at the beginning of comments, you would have: Set field[comments, gname&comments]
Create an account or sign in to comment