Browse and handle jar files?
I dunno if this helps but when I do it thought terminal I first unarchive the .jar, change content and then compress it and move it back.
Is this possible?
Mac Book 13 inch, Mac OS X (10.5.8)
Mac Book 13 inch, Mac OS X (10.5.8)
set javrfile to quoted form of (POSIX path of (choose file with prompt ".jar file:" of type {"jar"}))
set filestoadd to choose file with prompt "files to add:" with multiple selections allowed
set filestoadd_unixpaths to {}
repeat with filetoadd in filestoadd
set filetoadd to quoted form of (POSIX path of filetoadd)
set filestoadd_unixpaths to filestoadd_unixpaths & filetoadd
end repeat
set AppleScript's text item delimiters to " "
set filestoadd_unixpaths to filestoadd_unixpaths as text
set AppleScript's text item delimiters to ""
display dialog (do shell script "jar vuf " & filestoadd_unixpaths)
Browse and handle jar files?