maybe someone else is also working on this so, in absence of a mailing list i thought i would post here.
I'm using a simple applescript to loop through a list of urls and save them to PNGs. however, i cant seem to get paparazzi to actually write out the PNGs. i thinkn its a bug with 0.53b but maybe there is some way to force the write out?
The last source code is 0.3. Is there any possibility of you releasing a more up-to-date version of the code. I will make sure to send back any modifications I made to contribute with development and all the proper attribution to you.
Comments
(*
chunks pinched from the galarhea script
*)
property newLine : (ASCII character 10)
global big_dir
global thumb_dir
global links
on run
tell application "Paparazzi!" to activate
set link to "http://localhost:9051/avatars/play/3"
grab_and_save(link)
set link to "http://localhost:9051/avatars/play/4"
grab_and_save(link)
end run
to grab_and_save(a_link)
set big_file_name to "/Users/dc/Desktop/shots/out1.png"
tell application "Paparazzi!"
capture a_link
repeat while busy
-- do nothing...
end repeat
save as PNG in big_file_name
end tell
end grab_and_save