| View previous topic :: View next topic |
| Author |
Message |
josephprice Guest
|
Posted: Thu Nov 19, 2009 10:37 pm Post subject: Copy and Paste --> Copy and Retype |
|
|
I'd like to be able to copy and paste a numeric value from one cell into another cell in MS Project. The complication is that the second cell does not accept pasting. So instead I'd like to be able to have AutoHotKey remember the numeric value from the first cell and then *retype* -- not paste -- the numeric value into the second cell.
Is such a thing possible?
In short, it would be mimicking the copy and paste functionality but retyping instead of pasting the contents of the clipboard. |
|
| Back to top |
|
 |
darrin0
Joined: 19 Nov 2009 Posts: 5
|
Posted: Thu Nov 19, 2009 10:44 pm Post subject: |
|
|
Use:
Send %Clipboard% |
|
| Back to top |
|
 |
rtcvb32
Joined: 17 Feb 2008 Posts: 289
|
Posted: Thu Nov 19, 2009 10:57 pm Post subject: |
|
|
| darrin0 wrote: | Use:
Send %Clipboard% |
For safety reasons, i'd add Raw
| Code: |
Send, {Raw}%clipboard%
|
|
|
| Back to top |
|
 |
|