Jump to content

Copy paste problem


This topic is 8196 days old. Please don't post here. Open a new topic instead.

Recommended Posts

  • 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]

Link to comment
Share on other sites

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]

Link to comment
Share on other sites

This topic is 8196 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.