Add Chart to Slide using Automator

Keynote 08 version 4.0.3
Automator version 2.0.2 (160)
I am creating a Keynote presentation with Automator, and I am trying to add a chart to a slide and am encountering an error.
Here are the following steps to reproduce the error.
1) Start Automator and create a Custom workflow
2) Drag "Make New Keynote Presentation" to workflow
___a) Change Theme to Black
___b) Change Width to 1024
___c) Change Height to 768
3) Drag "Add Slide to Keynote Presentation" to workflow
4) Drag "Get Specified Text" to workflow (I will talk more about this action more later)
5) Drag "Add Chart to Slide"
___a) Change Chart Type to Area 2D (this is the default for me)
___b) Change Chart Group to Column (this is default for me)
___c) Change Slide to 1 (this is the default for me)
5) Press the Run button on Automator
The error I get is the following:
"Keynote got an error: Invalid key form. (459482768)"
No matter what data I put in step 4 "Get Specified Text" I get an error. The description of "Add Chart to Slide" says the input is a two dimensional array of chart labels and data. What format should this two dimensional array be in? I have tried many different combinations and all have an error.
Has anybody tried to "Add Chart to Slide" and had it work?

It's often necessary to delete the album art from an mp3 track before adding to a slideshow.
If using Apple files, it's possible to make an MP3 in iTunes.
See my instructions on the attched thread.
http://forums.adobe.com/message/4579309?tstart=0

Similar Messages

  • How to resize and change the resolution of a batch of photos using Automator

    I searched for a long time tonight looking for the answer to this (seemingly) simple question:
    How do I use Automator to scale and change the resolution of a batch of images?
    It was not so simple.
    Links to this question:
    https://discussions.apple.com/message/12341246#12341246
    https://discussions.apple.com/message/12342026#12342026
    https://discussions.apple.com/message/5785047#5785047
    https://discussions.apple.com/message/1173358#1173358
    https://discussions.apple.com/message/5641853#5641853
    https://discussions.apple.com/message/3207516#3207516
    These are just the links on this site - I found them all over the place at MacRumors, Apple Tips, Mac Help, etc.
    You can actually manage this in Automator.
    Here are the steps that worked for me:
    Create an Automator APPLICATION - not a workflow (this is due to the way that I'm batch converting images - workflows might be ok for some cases)
    Step 1 is Copy Finder Items
    My flow inserts an SD card, opens the DCIM folder that my Nikon creates, selecting the images that I click (command + click to multi-select) and once I have the photos highlighted, I drag them onto this Automator App we're creating.
    <==  You'll have this guy soon!
    As a result - I want to copy the originals to my computer as step 1.  I don't touch the originals on the SD card (and cards are cheap so I tend to leave them on the cards as well)
    Step 2 is the Scale Images action - you can search the library for this and find it quickly.  For my part, I found that scaling images to about 38.8 percent of their size on the SD card is good for uploading to a blog.  Change this value to whatever you wish.
    Step 3 is Run Shell Script - and here is where we marry the brilliance found at this link with our script.If you have a hard time reading the text in the image, it is as follows:
    #bin/bash
    for f in "$@"
    do
         /usr/bin/sips -s dpiHeight 72.0 -s dpiWidth 72.0 $f
    done
    Save this application (I named mine "Format Photos")
    Place the application inside the target folder where you want the images to end up.  I do this because when I have the SD card window open, I can also open my "Photos" window and see my App sitting there.  I select my images as I mentioned and drag them on top of this app.  The app copies the originals and the conversions into the folder.
    NOTES: When you open a converted pic in Preview, you will see Resolution = 300 dpi if you go to Tools --> Adjust Size...  This reading is explained by another brilliant discussion as sips only touches the JFIF properties inside the file's MetaData.  However, if you look at the bottom of the Adjust Size... window, you'll see the image size is probably around 500 kb (give or take depending on the original).  My goal was to get the images down from the 3.0 MB I shoot at to around 500 kb.  Therefore even though the MetaData still thinks that it is 300 DPI according to Preview, it has been changed to 72 (open it in some other applications mentioned at the links and you'll find different readings - it all depends on what the application reads from the Meta).
    This does not rename the files, so you'll get DSC_1000.jpg and DSC_1000 copy.jpg in all likelihood.  If that annoys you, add a step into the Automator Application that renames the file after the "Run Shell Script" action has run, and you can have each file renamed according to some convention that you like.
    This took a heck of a lot longer than I expected - so I decided to put in the effort to share this with the community and save others the hassle. 

    PPI is pixels per inch of the image.  It is difficult to increase resolution as you are trying to add data that is not there.
    But for printing purposes what you want is dpi or dots per inch.
    The image processor either accessed from Bridge (tools/photoshp) or PS is a good way to change a batch of images.

  • How can I use automator to import a .csv file into a an excel file

    I would still like all the import settings that I get if I am using excel to do the process, i.e. going in with the text format instead of the general format. That way my dates don't change

    You'll need to use Applescript in Automator.
    Note:  File extension cannot be CSV (Excel will assume that the file is comma separated), so add an action to copy or rename with extension TXT.
    (You can rename back at end of Workflow is needed)
    The Applescript Action is:
    on run {input, parameters}
         repeat with f in input
              tell application "Microsoft Excel"
                   open text file filename (f as string) data type delimited field info {{1, text format}} other char "|" with use other
              end tell
          end repeat
          eturn input
    end run
    NOTE: This is formating the 1st col to text
    If you need to format the second, then you need to:
      open text file filename (f as string) data type delimited field info {{1, general format}, {2, text format}} other char "|" with use other
    (You'll need to list the 1st col, 2nd col, etc until you get to the col to format as text).  Formats are (from the Applescript Excel Library):
    [field info list] : A list contain parse information for the individual columns of data.
    Formats are general format, text format, MDY format, DMY format, YMD format, MYD format, DYM format, YDM format, skip column.
    Or you can skip using Automator and just use an Applescript App (this is a droplet, just drop the files on the icon, or click to choose files):
    on run
         set fs to choose file with prompt "Select one or more files to open:" default location alias (the path to desktop folder as text) with multiple selections allowed
         proceed(fs)
    end run
    on open fs
         proceed(fs)
    end open
    on proceed(fs)
         repeat with f in fs
              tell application "Microsoft Excel"
                   open text file filename (f as string) data type delimited field info {{1, text format}} other char "|" with use other
               end tell
          end repeat
    end proceed

  • Using Automator in place of Tether

    +I posted this in another topic in reply to a question, but since I get asked this a lot I figured I'd give it a unique post.+
    So, if you were one of the many hoping Apple would add the ability to shoot tethered directly from within Aperture, only to discover the newly added feature left your shiny new Canon SLR out in the cold, here's how to more or less achieve the same thing using Automator and the Canon software:
    Using Automator to accomplish the task is pretty simple. You'll of course need to use Canon's EOS Utility software to do the remote capture. It's better than Aperture anyway, since it'll actually let you change the settings on the camera remotely as well (Aperture simply lets you click the shutter).
    Once you have the Canon software set up and running, you'll choose a folder to capture the photos to. This can be any folder you like, named anything you like. Within Aperture, create a new project or use and existing project. Do the following:
    1. Open Automator
    2. Choose a "Custom" workflow
    3. You can narrow the action list down by choosing "Photos" under library, and then find the Aperture Icon with "Import Photos" and drag it to the area on the right.
    4. Choose your project from the drop down menu, then select "Import by reference" if you want Aperture to leave the photos where they are and just reference them. Leave it unchecked if you want them imported to the Aperture library. You can also choose to have them deleted after the import if you'd like.
    5. Once you've set up the action with your project and import preferences, go to the file menu and choose "Save as Plug In." Name the action "Tether" or another appropriate name.
    6. In the first drop down menu choose "Folder Action"
    7. In the second drop down menu choose the folder where you have your Canon captured shots going and click "save".
    That's it! Now every time you take a photo using the Canon software, the photos will automatically be imported to the project of your choosing. Good luck!

    I was advising a friend to budget $1000 for a suitable tethered camera along with Aperture2, & more ram.
    I had previously used a video camera to take a snap of a product that he wanted sent via email to a web host on a daily basis. It worked when using iMovie and saving frames.
    As of yesterday, I became familiar with Automator, set up an action that should do the trick anddon't have to use iMovie.
    I do have Adobe Acrobat Pro for making pdf's so I can output in that format, however, will Leopard also output as a pdf without acrobat Pro?

  • Delete duplicates using Automator or applescript??

    Every time I move a photo from one iPhoto album to another I seem to create another duplicate-I'm really annoyed at the way iPhoto is written -who wants to go into a huge, unsorted- iPhoto library and delete stuff? Is there a way I can use automator or apple script to delete a photo from one album when it is moved to another? Also , when I use PhotoShop Elements to Browse for an album made in iPhoto-the only way I can find an album is to go through every year-iPhoto can't be this bad , can it?
    One more question-If I delete a photo in an album, it still remains in the library, how do I delete that without sorting through hundreds of pictures or using spotlight?
    mac book pro 17inch   Mac OS X
    mac book pro 17inch   Mac OS X (10.4.6)  

    whidbey:
    Welcome to the Apple Discussions. Photos you add to an album are only links to the original photo in the library. You are not duplicating files in doing so. The only time a file is duplicated is when you edit a photo and then there is a modified version created and placed in the Modified folder. You don't want to go about deleting files from within iPhoto Library folder via the Finder - Don't tamper with files in the iPhoto Library folder from the Finder.
    Albums in iPhoto are only virtual containers. There is no way you can find it and it's contents via PSE's browser. It does not exist outside of iPhoto. When you move a photo from one album to another and you don't want it in the first album you'll just have to delete it manually from that album. Remember if you delete a photo from the main library you'll be deleting every occurrence of it in your library.
    If you're trying to use Photoshop Elements to edit a photo, you don't need nor want to open it via the Finder. Instead, use iPhoto's preferences to use PSE as the editor of choice when you double click on a thumbnail in iPhoto. The only caveat to that is if you create a layered image or otherwise create a file that requires you to save it as a psd file, you must either flatten it and save as a jpg without a name change or do a Save As to the desktop and then import it as a new file. Any subsequent edit on that psd file can be make normally.
    Do you Twango?

  • Using Automator to Batch Create PDFs

    I've been trying to find a way to make an Automator workflow that will take the name of a folder and combine it's files into a PDF with as little manual input as possible and have finally figured out how to do so. I've seen others ask how to do this for a while so I wanted to share how I did it.
    Why would you want to create PDFs? If you have scanned books, photos, documents or anything else on your Mac, you can create PDFs out of them. You can then store these in iTunes and either read them using Preview on your Mac or iBooks on your iOS device.
    What this workflow will do:
    Take a folder with images, get the folder's name, and create a PDF of the images with it's name.
    On the next pass of the workflow, it will send the previous folder to the trash.
    Create/have a backup of your files!
    Create a folder somewhere that you can drop your folders in. Name it Automator Dropbox. You can create one wherever you want, but this workflow was created with Automator Dropbox in mind so you'll need to change it as necessary.
    Open Automator and create a new workflow.
    Find Finder Items
    - Search Automator Dropbox
    - [All] of the following are true:
    - [Label] is [Red]
    This will search for any folders that were done before.
    Move Finder Items to Trash
    This will move the previous folder/files to the trash.
    Ask for Finder Items
    - Prompt: [Choose a Folder]
    - Start at: Automator Dropbox
    - Type: [Folders]
    This will ask you to choose the next item to convert to PDF.
    Set Value of Variable
    - Variable: pdfvariable
    This will take the name of the folder you just selected and use it to to rename your PDF.
    Label Finder Items
    - [Red]
    This will mark the folder you're working on for deletion the next time the workflow is ran.
    Get Folder Contents
    This will grab all the image files within the folder so that it can create a PDF out of them.
    Scale Images
    - To size (pixels): 1600
    This will scale the maximum dimension of your image down (or up) to 1600px. I find this to be the sweet spot for performance on the iPad 3, and it looks just fine. If the maximum dimension of your image is lower than 1600px, I'd create a duplicate workflow of this and leave out this step; otherwise you will be upscaling and your image won't look as good. You can also leave this step out if you want your original image size kept, but on the iPad 3 and below there will be a delay going from page to page.
    New PDF From Images
    - Save Output to: [Desktop]
    - Output File Name: tempname
    This will save your finalized PDF to the Desktop. You can change this to whatever you want; I would suggest the Automatically Add to iTunes folder located in [Music > iTunes > iTunes Media > Automatically Add to iTunes]. You will find your PDF in the Books category in iTunes.
    Rename Finder Items
    - [Replace Text]
    - Find: tempname in [Full Name]. Ignore Case checked.
    - Replace: [pdfvariable] (Drag pdfvariable from the variables window into the text field for "Replace". If you don't see the variables, go to "View > Variables."
    You can't just drag the variable into the PDF name field in the step above, so this extra step is necessary. It will rename your PDF with the name of the folder it was created from. It will also add the full file path, which will be taken care of in the next step.
    Rename Finder Items
    - [Replace Text]
    - Find: Users/yourname/Documents/Automator Dropbox in [Full Name]. Ignore Case checked.
    - Replace: LEAVE EMPTY
    This will delete the name of the path from the name of your PDF. If your working folder is not Documents/Automator Dropbox, change it to whatever that is.
    If you're running this workflow on a bunch of folders, you can simply keep your cursor over the workflow's play button and press the right arrow + enter to select the next item in queue. This workflow was made for using a little human interaction as possible, so if anyone has suggestions on how to improve on it please post below.
    One last thing - if you're seeing a red folder when you run the workflow to choose a folder, it's because spotlight hasn't indexed it yet and the workflow could not find it to delete it. Just go on to the next item.

    Someone (not me) has created an automator workflow that does this, using a shell script that runs the "pstopdf" unix command. I just downloaded it and tested it on 10 .eps files. You will need to edit the first automator action in the workflow to find the eps files you want (by default it looks for all eps files on your computer), but once you do that, it works like a charm! Converted my eps files to pdf's. Of course, once they are pdf files, you can use automator to convert them to whatever format you want.
    http://mad-sci.blogspot.com/2007/12/why-i-hate-computers.html
    (link to the actual zip file containing the workflow below)
    http://www.physics.mcgill.ca/~burkes/code/PDFworkflows.zip

  • How do i add a  blank slide

    How do i add a blank slide and text?

    In the slide show album
    As Frank said,   only you have to pick a slideshow Theme that will allow it (Classic, Ken Burns).  For example, in the "Places" theme these options to insert blank slides will be grayed out (in Aperture 3.4.3), since this theme creates its own titles based on the locations. Switching between themes will not help. Title slides inserted using another theme will simply be removed.
    With "Places" or "Reflections" the cogwheel menu will look like this: You'll have nearly no control about the slide transitions at all:
    To add blank slides to a slideshow these themes, create images with a solid black or white background by adjusting new versions of your images or creating them in an external editor.
    Regards
    Léonie

  • How to add captions to slide shows

    How do I add captions to slide shows in iPhoto?

    In iPhoto 11, use the Text Slide feature.
    Regards
    TD

  • Using Automator to AutomaConnect iMac on Network for Backup to Time Capsule

    My wife uses her new 2.66 GHz iMac (10.5.2) for e-mail via dial-up. She has airport capability in iMac and we have an Airport network that I use. I am ready to add Time Capsule this weekend. I want to be able to have Time Machine back up her computer to TC at night when she is not using it. I plan to use it to back up my MB Pro also.
    Here's what I would like to do. Automatically disconnect her modem connection at, say 2 AM, then turn Airport on (in her iMac), let Time Machine back up to TC. After a couple of hours, shut down Airport and reconnect her dial-up connection. Is this possible with TC and Time machine using Automator?

    Thanks, Guru, but the problem is that the dial-up e-mail on the iMac will not work with airport on. So, my wife leaves airport off most of the time. I believe the e-mail client tries to connect to the dial-up isp through airport and gets no connection when airport is on.

  • Using Automator with iPhoto or Preview

    I'm brand new to iMac. I love it, just having some learning curves.
    I have over 14,000 photos needing my watermark. How do I use automator to do this quickly instead of one photo at a time with preview?

    I didn't see a watermark option for graphics files in Automator.
    However, I think every photo processing app will batch convert all of your files and some of them have a watermark option.
    From a google search, Aperture provides a watermark option and batch processing.
    In Photoshop Elements, you can "Process Multiple Files…" which allows you to add a text watermark.
    I don't know if GraphicConverter can add a watermark.

  • Can we add any image slider in Dreamweaver

    Hi,
    Myself sandeep kumar, I am owner of two blogs Tech Blog and another one is a Health Blog. Can we add Image slider using Dreamweaver? If yes then how?

    Both of these websites are WordPress websites and you can add sliders using any of the WordPress slider plugins. You don't need Dreamweaver to do that.
    Simply do a Google Search for "wordpress slider plugins" and you will see dozens.
    Now, you can build and add to WordPress themes using Dreamweaver. Here's a tutorial that was written for Dreamweaver CS5 but the basic tenants of it apply: http://www.creativepro.com/article/build-wordpress-sites-dreamweaver-cs5-part-1
    And here's an article from a hosting perspective:
    http://www.hosting.com/support/wordpress/use-dreamweaver-to-manage-a-wordpress-site

  • Using Automator for Aperture Export?

    Hi everyone,
    I'd like to use Automator to export different versions of photos from aperture 3.5 (different exposure -2, -1, 0, +1, +2)
    I've seen in automator the different action : "export photo" "change exposure to -x" but I have absolutely no idea of how make it works in Aperture...
    If anyone can help me, it would be amazing!
    Thanks in advance,
    Julien

    mm strange, I'm running 10.9.2 also and I don't get that message. Ok try this one
    I remove the reference actions (both the set and get) and replaced it with a second Get selected images. Note I have the new Get Selected Images action ignoring its input.
    If you add more for more adjustments make sure you have all those set to ignore input also.
    Also you might be able to remove the Reset all Adjustments action and use the Replace existing adjustments checkbox in the Apply action. Seems right but I didn't try it.

  • Setting PDF color background using Automator

    Has anyone figured out how to add background color to PDF files using Automator? I need an easy, reliable way to establish a specific color background for an evolving series of PDF files (text and images) that are eventually to go online.
    alan

    So close.
    Thanks All
    https://decibel.ni.com/content/blogs/DailyCLAD

  • Add mobile broadband profile using netsh gives "Invalid Profile XML" error

    We're trying to create an automated installation to upgrade to 8.1 Pro soon and since we have our own APN at our provider, we'd like to add this using a script. However when I try to add my XML profile using
    netsh mbn add profile interface="Mobile broadband" name="profile.xml"
    I receive the following error: Add Profile Failure: Invalid Profile XML.
    I've found some Windows 7 topics regarding this issue, pointing at the encoded Subscriber and ICC id's in these XML files. I have already found the unencoded values with
    netsh mbn show ready * and added them to the XML file, but still no dice :-(
    This is my XML file:
    <?xml version="1.0"?><MBNProfile xmlns="http://www.microsoft.com/networking/WWAN/profile/v1">
    <Name>My Company Name</Name>
    <IsDefault>true</IsDefault>
    <ProfileCreationType>UserProvisioned</ProfileCreationType>
    <SubscriberID>123451234512345</SubscriberID>
    <SimIccID>1234123412341234567</SimIccID>
    <HomeProviderName>vodafone NL</HomeProviderName>
    <ConnectionMode>auto-home</ConnectionMode>
    <Context>
    <AccessString>custom.provider.nl</AccessString>
    <UserLogonCred>
    <UserName>username</UserName>
    <Password>p4ssw0rd</Password>
    </UserLogonCred>
    <Compression>DISABLE</Compression>
    <AuthProtocol>NONE</AuthProtocol>
    </Context>
    <DisplayProviderName xmlns="http://www.microsoft.com/networking/WWAN/profile/v2">My Company Name</DisplayProviderName>
    </MBNProfile>
    I've removed all existing mobile broadband profiles from the system, netsh mbn show profiles
    shows an empty list so it's not a naming issue. I tried removing the XML version header from the file (a lot of examples of these XML files don't have it), leaving the Subscriber and/or ICC ID empty, removed them from the XML file but nothing seems to
    work.
    Does anyone have some other suggestions?

    Hi,
    I'm sorry for have no idea with your problem. Since those methods you tried but failed, in my opinion, it would be better to use Process Monitor to capture the trace of excuting this XML file.
    Start Process Monitor, close as much unrelated process as possible, then run command to enable this XML file.
    After error occures, stop capture.
    Process Monitor:http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx
    Roger Lu
    TechNet Community Support

  • Using automator/applescript to do terminal commands/ssh

    hi,
    pardon my extreme novice question here, but i was looking for quick & easy ways to create a small applet to basically run a script on a web server to remotely check & update it's IP address with its web host, and also serve internet services to a wifi access point.
    here's the basic stuff we usually do in terminal —
    my-Computer:~ admin-user$ ssh admin@+{web server IP, ex.: 0.0.0.0}+
    +{we then have to wait for it to connect and ask for a password}+
    Password: {our input for password}
    Last login: Sat Jun 14 15:04:58 2008 from 0.0.0.10
    Welcome to Darwin! +{so we are now connected}+
    www:~ webserver-admin$ sudo /var/root/IP_update.sh
    +{there is then a long output as that script runs and updates the IP with the web host}+
    www:~ webserver-admin$ sudo route add -net 0.0.0.0/24 0.0.0.3 +{serve up internet services to a wifi access point, returns output that it was done, failed or already connected}+
    www:~ webserver-admin$ sudo /opt/local/sbin/lighttpd -f /opt/local/etc/lighttpd/lighttpd.conf & +{starts up our web server, returns that it was started or already on because port 80 is in use}+
    so that's what i want it to do. i thought using automator and the *run shell script* option in it would work, but i can't even get past the first ssh command without an error. i have it set to use /bin/sh, and have tried it with *pass input* setting set either way, *to stdin* or as arguments, but in either case, just on this first line alone, i get the following error —
    Run shell script failed
    Pseudo-terminal will not be allocated because stdin in not a terminal.
    does anyone know why this is happening? how do i get around this and proceed on with my script using automator?
    also, if anyone could please give tips about how to use the "pause" to have it wait for prompts over the network (like the "Password:" prompt coming back after an indeterminate number of seconds) and which automator command might be used to pop up a dialogue for user input (like asking for the password), it would be much appreciated. thanx.

    You'd want the *do shell script* command in AppleScript for this
    http://developer.apple.com/technotes/tn2002/tn2065.html
    however you're not going to be able to use it as you would tools such as Expect which allow you to wait and provide additional input on stdin. If all you're doing is updating an IP address why not simplify the entire mess with BIND's dynamic updates?

Maybe you are looking for

  • Slammed shut my G60 now display color is out of whack

    I am new to the forum and may not use the correct terminology. Let me know if I need to explain anything in more detail. In short I slammed shut my laptop, my bad. And since then the display is like looking at a photo negative image with color. The c

  • HP won't help, can you? OEM disc for w2558hc monitor

    Does anyone have an ISO or disc for HP w2558hc monitor?  HP doesn't think they need to support an old 2008 $500+ monitor anymore!

  • How to call JSP page from applet?

    I have some page1.jsp from which I call applet. User works with this applet but some information does not in date inside applet. So user click on some component at applet (some button etc.) and now I would like to do this: 1) open new window; 2) call

  • MCE DVD±R DL upgrade for Powerbook

    I have seen a DVD±R DL drive upgrade for the powerbook on MCE's website for $150. I would like to know if anyone has this upgrade, and if it is any good, as I am looking into getting it!

  • Just anothe installing problem topic...

    Hi, i wanted to install Solaris 10 x86 on my pc on an empty second harddrive. on the master harddrive runs winXP. my system specs are: Epox 8K5A2 with AthlonXP 1800+ 768MB PC2700 First HD: Samsung SP1604N IDE Second HD: 40GB IDE (more information wil