Export embedded media from Apple Numbers to Path AppleScript

73 Views Asked by At

I want to export embedded media from Apple Numbers to Path with AppleScript. It should only export media like embedded PDF;PNG;JPG;audiorecord from the current Table from the active Sheet. I dont want a package from all media. All media should remain in there specific datatype in one directory.

At this time i can count the media, get there names... but i cant export those

1

There are 1 best solutions below

4
On

I can suggest one possible solution for saved .numbers documents.

-- Choose "numbers" file
set numbersFile to choose file of type "numbers"

-- Choose destination folder
set destinationFolder to (choose folder) as Unicode text

-- Get temporary items folder references
set tempFolder to path to temporary items folder from user domain

-- Unzip to temporary items folder, then Move to destination folder
do shell script "/usr/bin/unzip -o -d " & ¬
    quoted form of (POSIX path of tempFolder) & ¬
    space & ¬
    quoted form of (POSIX path of numbersFile)
try
    tell application "Finder" to ¬
        move files of folder "Data" of folder (tempFolder as Unicode text) to ¬
            folder destinationFolder replacing yes
end try