Hire someone for two scripts

I would like the existing scripts “Copy Selection to Current Group” and “Copy Selection to…” for creating rfts of the selection to be adapted to creating a Web Archive of the current page in Safari or Firefox.

I’m know this is a pretty basic applescript but I’m willing to pay somebody for these two scripts. (The easiest way is probably through paypal but if you another idea that’s fine.) If anyone is interested please email.

Thanks

Did you try the “Add web document to DEVONthink” scripts?

I’m looking for a script that specifically takes a page and creates a web archive in:

Script 1: a group chosen in a pop
Script 2: the selected group

Use the “Add web document to DEVONthink.scpt” as a template and replace…


tell application id "com.devon-technologies.thinkpro2" to create web document from this_URL name this_title

…with…


tell application id "com.devon-technologies.thinkpro2"
set theDestination to display group selector "Destination" buttons {"Cancel", "OK"}
create web document from this_URL name this_title in theDestination
end tell

…or with…


tell application id "com.devon-technologies.thinkpro2" to create web document from this_URL name this_title in current group

Works great.

Thank you