I have developed an Applescript code which does the following:
• Go through a folder
• Get all .docs/.xls/.ppt/.pdf
• Question the user stuff like: "Which slides to include from .ppt?", "Which sheets to include from .xls?", "Which pages from the .doc?", "Which pages from the .pdf?"
• Get all requested doc pages, xls sheets, ppt slides, pdf pages
• Convert them all to .pdf
• Create a PDF-report with all requested items after each other
The Script is running properly, but in order to make it more practical (so far I have implemented it as an Automator service), I want to create a UI as follows:
• Window where you can add files by drag n drop
• Buttons with which you can move files up and down in the list and thus determine their position in the final PDF-report
I have no experience with Xcode, Objective C or Cocoa. Which is the easiest way to realize this?
Thank you!