Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Automatic (headless) DVD rip with MacTheRipper' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Automatic (headless) DVD rip with MacTheRipper
Authored by: barhar07 on Feb 07, '07 07:09:57AM

Code re-written, with added UNIX command ('rm ...') incorporated - to delete unwanted resultant invisible ('MacTheRipper' created) folder.

tell application "MacTheRipper" to activate
delay 10

tell application "System Events" to tell process "MacTheRipper" to tell window 1
click button "Go!"
delay 5

tell sheet 1
try
click button "Continue"
end try
try
click button "Ok"
end try
try
click button "Open"
end try
end tell
end tell

set MagicNumber to 0

repeat until MagicNumber is 1
delay 10
tell application "System Events" to tell process "MacTheRipper" to tell window 1 to tell sheet 1
try
click button "Close"
set MagicNumber to 1
end try
end tell
end repeat

try
do shell script ("drutil eject; rm -R ~/.dvdcss")
end try



[ Reply to This | # ]