on run argv
tell application "tool/CoverStory.app"
quit
activate
set x to open (item 1 of argv)
tell x to export to HTML in (item 2 of argv)
quit
end tell
return item 1 of argv & "|" & item 2 of argv
end run
It takes two arguments, the first being the directory to open the gcda and gcno's from and the second being the export path. Hope it's useful to someone else. Would be more than happy to see this in the wiki, you have my green lights for that.
Regards,
Johannes
--
You received this message because you are subscribed to the Google Groups "coverstory-discuss" group.
To post to this group, send email to coverstor...@googlegroups.com.
To unsubscribe from this group, send email to coverstory-disc...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/coverstory-discuss?hl=en.
tell application "CoverStory"
activate
set a to open "lcda files' folder"
tell a
export to HTML in "out_final.html"
end tell
end tell