B
Bubbleboy
I am a relative novice at Applescripting and even less experienced at
scripting Excel. I am attempting to write Applescript that will
manipulate Excel to do the following:
paste a webpage, which I copied to the clipboard, to a certain cell in
a worksheet
then increment the location of the active cell in that worksheet such
that I can paste the next webpage I will copy to the clipboard into a
different cell on the same worksheet
PS I would like to paste the clipboard items such that they keep their
HTML formatting
Here is my pathetic attempt at the script language which results in
the clipboard contents being pasted over the preceding paste.
FYI: I set x to 1, earlier in the script
tell application "Microsoft Excel"
activate
activate object workbook "A.xls"
activate object sheet "Sheet1"
goto cell {1, x + 14}
paste worksheet active sheet
delay 3
set x to x + 14
..........................
end tell
Any help would result in saving my family and our cat from the
collateral damage caused by my tirades.
Thanks,
Monkeyboy
scripting Excel. I am attempting to write Applescript that will
manipulate Excel to do the following:
paste a webpage, which I copied to the clipboard, to a certain cell in
a worksheet
then increment the location of the active cell in that worksheet such
that I can paste the next webpage I will copy to the clipboard into a
different cell on the same worksheet
PS I would like to paste the clipboard items such that they keep their
HTML formatting
Here is my pathetic attempt at the script language which results in
the clipboard contents being pasted over the preceding paste.
FYI: I set x to 1, earlier in the script
tell application "Microsoft Excel"
activate
activate object workbook "A.xls"
activate object sheet "Sheet1"
goto cell {1, x + 14}
paste worksheet active sheet
delay 3
set x to x + 14
..........................
end tell
Any help would result in saving my family and our cat from the
collateral damage caused by my tirades.
Thanks,
Monkeyboy