<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>Automator World Forum: Recent Posts</title>
<link>http://automatorworld.com/forum/</link>
<description>Automator World Forum: Recent Posts</description>
<language>en</language>
<pubDate>Thu, 03 Jul 2008 22:40:59 +0000</pubDate>

<item>
<title>dkbinj on "audio file conversion &#62; zip &#62; upload?"</title>
<link>http://automatorworld.com/forum/topic.php?id=766#post-1996</link>
<pubDate>Fri, 27 Jun 2008 00:34:19 +0000</pubDate>
<dc:creator>dkbinj</dc:creator>
<guid isPermaLink="false">1996@http://automatorworld.com/forum/</guid>
<description>&#60;p&#62;hi there, &#60;/p&#62;
&#60;p&#62;i'm trying to create a workflow in automator for this &#38;#38; am having some trouble.  i know automator can probably do this - i guess i'm just missing something;) &#60;/p&#62;
&#60;p&#62;a few times a week i record a music rehearsal &#38;#38; when i get home i edit the audio, convert to mp3, add the artist &#38;#38; name info in itunes, zip the files, upload to an ftp &#38;#38; post/email links for the band members for download. &#60;/p&#62;
&#60;p&#62; - convert selected .wav audio files to .mp3 w/ itunes&#60;br /&#62;
 - add the filename to itunes info as the name&#60;br /&#62;
 - add certain artist name to itunes info&#60;br /&#62;
 - zip the mp3s&#60;br /&#62;
 - upload the mp3s to a specified ftp w/ cyberduck&#60;br /&#62;
 - send out an email template w/ links to files to a group of emails  (this would be REALLY cool - but i'll be happy w/ the latter)&#60;/p&#62;
&#60;p&#62;can anyone help?&#60;/p&#62;
&#60;p&#62;thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>comety on "File incrementing action"</title>
<link>http://automatorworld.com/forum/topic.php?id=765#post-1995</link>
<pubDate>Mon, 23 Jun 2008 19:47:39 +0000</pubDate>
<dc:creator>comety</dc:creator>
<guid isPermaLink="false">1995@http://automatorworld.com/forum/</guid>
<description>&#60;p&#62;I need to be able to take a single file, when dropped on an action, and increment it.  I am aware of all the possible issues this could have, so I have narrowed it to a specific case:&#60;/p&#62;
&#60;p&#62;Filename_02.psd&#60;/p&#62;
&#60;p&#62;File extension will always exist and be three chars long&#60;br /&#62;
File number will always be 2 integers long&#60;br /&#62;
Always lead by an underscore&#60;/p&#62;
&#60;p&#62;So, split on the &#34;.&#34;, take the last two chars of the first chunk, add 1, pad with zeroes of needed, return a copy of the file with the new name in the same location.
&#60;/p&#62;</description>
</item>
<item>
<title>faddah on "using automator/applescript to do terminal commands/ssh"</title>
<link>http://automatorworld.com/forum/topic.php?id=764#post-1994</link>
<pubDate>Sat, 21 Jun 2008 12:06:42 +0000</pubDate>
<dc:creator>faddah</dc:creator>
<guid isPermaLink="false">1994@http://automatorworld.com/forum/</guid>
<description>&#60;p&#62;hi,&#60;/p&#62;
&#60;p&#62;pardon my extreme novice question here, but i was looking for quick &#38;#38; easy ways to create a small applet to basically run a script on a web server to remotely check &#38;#38; update it's IP address with its web host, and also serve internet services to a wifi access point.&#60;/p&#62;
&#60;p&#62;here's the basic stuff we usually do in terminal —&#60;/p&#62;
&#60;p&#62;&#60;code&#62;my-Computer:~ admin-user$ ssh admin@&#60;/code&#62;{web server IP, ex.: 0.0.0.0}&#60;br /&#62;
{we then have to wait for it to connect and ask for a password}&#60;br /&#62;
&#60;code&#62;Password:&#60;/code&#62; {our input for password}&#60;br /&#62;
Last login: Sat Jun 14 15:04:58 2008 from 0.0.0.10&#60;br /&#62;
&#60;code&#62;Welcome to Darwin!&#60;/code&#62; {so we are now connected}&#60;br /&#62;
&#60;code&#62;www:~ webserver-admin$ sudo /var/root/IP_update.sh&#60;/code&#62;&#60;br /&#62;
{there is then a long output as that script runs and updates the IP with the web host}&#60;br /&#62;
&#60;code&#62;www:~ webserver-admin$ sudo route add -net 0.0.0.0/24 0.0.0.3&#60;/code&#62; {serve up internet services to a wifi access point, returns output that it was done, failed or already connected}&#60;br /&#62;
&#60;code&#62;www:~ webserver-admin$ sudo /opt/local/sbin/lighttpd -f /opt/local/etc/lighttpd/lighttpd.conf &#38;#38;&#60;/code&#62; {starts up our web server, returns that it was started or already on because port 80 is in use}&#60;/p&#62;
&#60;p&#62;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 &#60;code&#62;/bin/sh&#60;/code&#62;, and have tried it with &#60;code&#62;pass input&#60;/code&#62; setting set either way, &#60;code&#62;to stdin&#60;/code&#62; or &#60;code&#62;as arguments&#60;/code&#62;, but in either case, just on this first line alone, i get the following error —&#60;/p&#62;
&#60;p&#62;     `Run shell script failed&#60;br /&#62;
          Pseudo-terminal will not be allocated because stdin in not a terminal.`&#60;/p&#62;
&#60;p&#62;does anyone know why this is happening? how do i get around this and proceed on with my script using automator?&#60;/p&#62;
&#60;p&#62;also, if anyone could please give tips about how to use the &#34;pause&#34; to have it wait for prompts over the network (like the &#60;code&#62;Password:&#60;/code&#62; 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.
&#60;/p&#62;</description>
</item>
<item>
<title>vegetables on "Trouble with Hint Movies automator action"</title>
<link>http://automatorworld.com/forum/topic.php?id=763#post-1993</link>
<pubDate>Mon, 16 Jun 2008 05:22:59 +0000</pubDate>
<dc:creator>vegetables</dc:creator>
<guid isPermaLink="false">1993@http://automatorworld.com/forum/</guid>
<description>&#60;p&#62;Hi all,&#60;br /&#62;
Trying to come up with a workflow to hint QuickTime movies.&#60;/p&#62;
&#60;p&#62;My workflow is &#34;Ask for Finder Items' --&#38;gt; &#34;Hint Movies&#34; --&#38;gt; &#34;Copy Finder Items&#34;&#60;/p&#62;
&#60;p&#62;I have most of it working, but after the Hint Movies action runs on a file, I get an error stating that:&#60;/p&#62;
&#60;p&#62;&#34;The action &#34;Copy Finder Items&#34; was not supplied with the required data&#34;.&#60;/p&#62;
&#60;p&#62;The &#34;Hint Movies&#34; action seems to run OK, but generates files with a generic Mac icon, and names like &#34;930153&#34;.&#60;/p&#62;
&#60;p&#62;Any ideas?
&#60;/p&#62;</description>
</item>
<item>
<title>michaelkb on "Need help starting with Automator"</title>
<link>http://automatorworld.com/forum/topic.php?id=762#post-1992</link>
<pubDate>Mon, 09 Jun 2008 18:46:44 +0000</pubDate>
<dc:creator>michaelkb</dc:creator>
<guid isPermaLink="false">1992@http://automatorworld.com/forum/</guid>
<description>&#60;p&#62;I have been trying to figure out how to do what I'm trying to do but nothing seems to work the way I would like it to. &#60;/p&#62;
&#60;p&#62;I have a program that generates a log in to a specific location, I then have to archive the log and upload it to a server, then email someone the confirmation from the server to let them know that I have done it. &#60;/p&#62;
&#60;p&#62;I would like to generate a new folder named with the current month day, year. Then move the log to the folder. And then open a Java Scrip app. Also if posable I'd like to generate an e-mail but not send it with text pre written so I can add the confirmation into it then send it.&#60;/p&#62;
&#60;p&#62;potential issues, I'd like for the folder to be labeled for the day of the Log and would probably run the automator the day after.
&#60;/p&#62;</description>
</item>
<item>
<title>egilDOTnet on "Create albums from Aperture 2 in iPhoto 08"</title>
<link>http://automatorworld.com/forum/topic.php?id=761#post-1991</link>
<pubDate>Sun, 08 Jun 2008 19:09:32 +0000</pubDate>
<dc:creator>egilDOTnet</dc:creator>
<guid isPermaLink="false">1991@http://automatorworld.com/forum/</guid>
<description>&#60;p&#62;I would like to create an automated task to create albums in iPhoto 08 based on albums in Aperture 2. More specific I would like to be able to create albums from my 1-star-rated or higher photos, with the same album names that exist in Aperture, in iPhoto 08. &#60;/p&#62;
&#60;p&#62;Is this at all possible to do via Automator, or do I need to delve into AppleScript to control this properly?&#60;/p&#62;
&#60;p&#62;Thanks in advance
&#60;/p&#62;</description>
</item>
<item>
<title>kevinks on "add cover art to mp3"</title>
<link>http://automatorworld.com/forum/topic.php?id=760#post-1990</link>
<pubDate>Wed, 04 Jun 2008 22:49:18 +0000</pubDate>
<dc:creator>kevinks</dc:creator>
<guid isPermaLink="false">1990@http://automatorworld.com/forum/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I'm working on automating as much of my podcasting chores as possible, and one big sticking point is finding a way to automate adding my podcast logo image to the mp3 file.&#60;/p&#62;
&#60;p&#62;Does anyone know of an action or combination of actions I can use to add this functionality to my workflow?
&#60;/p&#62;</description>
</item>
<item>
<title>mgkwho on "table data from Pages into Keynote slide"</title>
<link>http://automatorworld.com/forum/topic.php?id=759#post-1989</link>
<pubDate>Wed, 04 Jun 2008 18:51:51 +0000</pubDate>
<dc:creator>mgkwho</dc:creator>
<guid isPermaLink="false">1989@http://automatorworld.com/forum/</guid>
<description>&#60;p&#62;Hello!&#60;/p&#62;
&#60;p&#62;Greetings from someone who has never used Automator before.&#60;/p&#62;
&#60;p&#62;I have a college exam coming up and I would like to use my notes from Pages as keynote slides so that I may quiz myself.  I have no idea how to do this and would love any input you all can provide.&#60;/p&#62;
&#60;p&#62;I have a two column table in Pages filled with terms (left column cells) and definitions (right column cells).  &#60;/p&#62;
&#60;p&#62;I would love to take the left cell (term) and copy it to a keynote slide, with the right cell (definition) as a text box that appears in the respective keynote slide on mouse click.  Then, have a new slide be created and repeat the process for the next row of data.&#60;/p&#62;
&#60;p&#62;Bonus points if we can figure out how to use a single cell which spans the whole row as a slide without a second text box.  (This would be to distinguish categories for the definitions I have set up).  And more bonus points if we can mix up the slides within their groups of categories so that I can quiz myself without using the same order of data.&#60;/p&#62;
&#60;p&#62;Thanks so much for any help you can give me.  I have absolutely no idea what I'm doing when it comes to Automator, but I am very familiar with OS X and can follow complex instructions easily.  &#60;/p&#62;
&#60;p&#62;I don't know how complicated this would be to do, but thanks again for any advice.&#60;/p&#62;
&#60;p&#62;-=&#124;Mgkwho
&#60;/p&#62;</description>
</item>
<item>
<title>cmphoto on "take photo (photo booth) problem"</title>
<link>http://automatorworld.com/forum/topic.php?id=758#post-1988</link>
<pubDate>Wed, 04 Jun 2008 02:06:24 +0000</pubDate>
<dc:creator>cmphoto</dc:creator>
<guid isPermaLink="false">1988@http://automatorworld.com/forum/</guid>
<description>&#60;p&#62;i am trying to write a program that will start up photo booth, take a photo, attach it to a new email and send it.  I know, sounds easy but the normal &#34;take photo&#34; one only takes a small image.  I want the full sized photo booth image.  so i can only see having photo booth open.  i think i am getting close but when i run a test, and photo booth take a photo it just hangs until automator calls it quits.  it says that photo booth is waiting for the image to appear in the photo booth folder in home/pictures/photo booth.  i hope i am making sense and that someone has some insight.&#60;br /&#62;
thanks for your time&#60;br /&#62;
tony
&#60;/p&#62;</description>
</item>
<item>
<title>thellum on "Sort by filename"</title>
<link>http://automatorworld.com/forum/topic.php?id=757#post-1987</link>
<pubDate>Wed, 28 May 2008 09:51:47 +0000</pubDate>
<dc:creator>thellum</dc:creator>
<guid isPermaLink="false">1987@http://automatorworld.com/forum/</guid>
<description>&#60;p&#62;Hi all,&#60;/p&#62;
&#60;p&#62;I am having trouble in Automator with a seemingly very simple task.&#60;/p&#62;
&#60;p&#62;I have a folder with lots of images in it.  All image names have specific letter codes within the name string (&#34;lf&#34;, &#34;wh&#34;, &#34;rb&#34;, etc).&#60;/p&#62;
&#60;p&#62;I had assumed it would be a simple matter in Automator to have the Finder see this folder and then move the files in it to other folders based on the file naming convention mentioned above.  All files containing &#34;wh&#34; in the name would go into the Wheels folder, and all files containing &#34;lf&#34; in the name would go into the Life folder.&#60;/p&#62;
&#60;p&#62;I have set it up with repeating Find Finder Items and Move Finder Items actions.  Find Finder Items looks at the main folder of images and Move Finder Items does the move based on the filename criteria.  However, it does not appear to follow logic.  If I place a test file with &#34;wh&#34; in the filename and run the workflow, the file ends up in the Life folder (because the Life action is last (I guess).  If I remove the Life action, the &#34;wh&#34; file goes into the Wheels folder.&#60;/p&#62;
&#60;p&#62;So it seems that Automator cannot cope with multiple conditions.  Is this the case?  Am I missing something obvious?&#60;/p&#62;
&#60;p&#62;Any help appreciated.
&#60;/p&#62;</description>
</item>
<item>
<title>Steve on "launch app at X hour"</title>
<link>http://automatorworld.com/forum/topic.php?id=391#post-1986</link>
<pubDate>Sat, 24 May 2008 15:51:29 +0000</pubDate>
<dc:creator>Steve</dc:creator>
<guid isPermaLink="false">1986@http://automatorworld.com/forum/</guid>
<description>&#60;p&#62;Yeah, that post is from the old forum. The answer though, is to save the workflow as an iCal plugin, and set the scheduling to the time you want.
&#60;/p&#62;</description>
</item>
<item>
<title>rmau61 on "launch app at X hour"</title>
<link>http://automatorworld.com/forum/topic.php?id=391#post-1985</link>
<pubDate>Mon, 19 May 2008 12:52:43 +0000</pubDate>
<dc:creator>rmau61</dc:creator>
<guid isPermaLink="false">1985@http://automatorworld.com/forum/</guid>
<description>&#60;p&#62;This is exactly the question I have only the linked post is gone.
&#60;/p&#62;</description>
</item>
<item>
<title>straightlife on "Oh, help!  automator quits with Leopard 10.5.2"</title>
<link>http://automatorworld.com/forum/topic.php?id=756#post-1984</link>
<pubDate>Sun, 04 May 2008 16:38:58 +0000</pubDate>
<dc:creator>straightlife</dc:creator>
<guid isPermaLink="false">1984@http://automatorworld.com/forum/</guid>
<description>&#60;p&#62;Ever since I installed Leopard on my g5 dual desktop automator and software update have stopped working.  I've trashed prefs. dumped caches reset pram repaired permissions.  Listed the problem on Apple Support, Called Apple. Any suggestions anyone?
&#60;/p&#62;</description>
</item>
<item>
<title>tylerjayking on "Excel 2004 Actions"</title>
<link>http://automatorworld.com/forum/topic.php?id=755#post-1983</link>
<pubDate>Sat, 03 May 2008 10:52:55 +0000</pubDate>
<dc:creator>tylerjayking</dc:creator>
<guid isPermaLink="false">1983@http://automatorworld.com/forum/</guid>
<description>&#60;p&#62;Does anyone have actions such as, Save Excel Workbook, that will work with Excel 2004?
&#60;/p&#62;</description>
</item>
<item>
<title>sri on "Print an attachment"</title>
<link>http://automatorworld.com/forum/topic.php?id=754#post-1982</link>
<pubDate>Fri, 02 May 2008 11:02:33 +0000</pubDate>
<dc:creator>sri</dc:creator>
<guid isPermaLink="false">1982@http://automatorworld.com/forum/</guid>
<description>&#60;p&#62;Is there any way we can Print the email and the attachment from a particular contact , in Mac mail using automator , every time we get a new email from that email ID
&#60;/p&#62;</description>
</item>
<item>
<title>MacManSofia on "Automator ignorant"</title>
<link>http://automatorworld.com/forum/topic.php?id=753#post-1981</link>
<pubDate>Wed, 30 Apr 2008 18:51:44 +0000</pubDate>
<dc:creator>MacManSofia</dc:creator>
<guid isPermaLink="false">1981@http://automatorworld.com/forum/</guid>
<description>&#60;p&#62;I am responsible for our group's finances.  Living in a foreign country, I need to track exchange rates.  There are online sites that publish daily rates.  I was trying to make an automator program that would automatically open one of these sites and then extract the daily rate into iCal.  Anyone have ANY idea how to make that happen?
&#60;/p&#62;</description>
</item>
<item>
<title>davekeyboardo on "Wake from sleep log-in issue"</title>
<link>http://automatorworld.com/forum/topic.php?id=752#post-1980</link>
<pubDate>Wed, 23 Apr 2008 09:39:00 +0000</pubDate>
<dc:creator>davekeyboardo</dc:creator>
<guid isPermaLink="false">1980@http://automatorworld.com/forum/</guid>
<description>&#60;p&#62;Can anyone advise how to have Automator log-in with my password? I want to run an iCal script with a daily event I have created to back up some files automatically. The script runs fine, but only after wake and my manual log-in because I have not enabled auto log-in. I have used Energy Saver prefs and created an iCal event, but don't want to set my Mac to auto log-in on wake for security reasons.
&#60;/p&#62;</description>
</item>
<item>
<title>karaoke on "Stop automator running"</title>
<link>http://automatorworld.com/forum/topic.php?id=751#post-1979</link>
<pubDate>Mon, 21 Apr 2008 09:52:58 +0000</pubDate>
<dc:creator>karaoke</dc:creator>
<guid isPermaLink="false">1979@http://automatorworld.com/forum/</guid>
<description>&#60;p&#62;Hi All,&#60;/p&#62;
&#60;p&#62;Is there a way to stop Automator running from the keyboard
&#60;/p&#62;</description>
</item>
<item>
<title>janhovden on "Copy date/time information from one file to another?"</title>
<link>http://automatorworld.com/forum/topic.php?id=750#post-1978</link>
<pubDate>Fri, 18 Apr 2008 06:28:03 +0000</pubDate>
<dc:creator>janhovden</dc:creator>
<guid isPermaLink="false">1978@http://automatorworld.com/forum/</guid>
<description>&#60;p&#62;I want to find all duplicates on the hard disk of files in directory A, and then copy the date/time-information from the duplicates to the same-named files in directory A. Can Automator read and copy this information? Or is there a simpler file tool which can be used instead?&#60;/p&#62;
&#60;p&#62;The underlying problem:&#60;br /&#62;
In iPhoto I always convert my cameraÂ´s AVI-files to .MP4 using Visual Hub, as this reduces their size to 10% of the original without loosing to much of their quality (as a five-minute clip AVI can use almost 700 MB, this saves precious hard disk space). The problem is that Visualhub do not retain time/date information, so that I have to manually reenter this information in the converted files and delete the old files in iPhoto.&#60;/p&#62;
&#60;p&#62;Jan Fredrik
&#60;/p&#62;</description>
</item>
<item>
<title>james341 on "how to login to my account in website?"</title>
<link>http://automatorworld.com/forum/topic.php?id=749#post-1977</link>
<pubDate>Mon, 14 Apr 2008 08:17:45 +0000</pubDate>
<dc:creator>james341</dc:creator>
<guid isPermaLink="false">1977@http://automatorworld.com/forum/</guid>
<description>&#60;p&#62;good day to you&#60;br /&#62;
i want to enter my user name and password in some website and i don't know how to do it&#60;br /&#62;
how the automator know where to put the username and the password and how to make it go in&#60;br /&#62;
it will be great if someone can help me....&#60;br /&#62;
thanks&#60;br /&#62;
hoooo 1 more thing -  i want to know how to make the automator also press on links in the website and go to my specific place ....&#60;br /&#62;
thanks again
&#60;/p&#62;</description>
</item>
<item>
<title>fprosper on "Filter Finder Items: multiple extensions?"</title>
<link>http://automatorworld.com/forum/topic.php?id=748#post-1976</link>
<pubDate>Fri, 11 Apr 2008 09:25:03 +0000</pubDate>
<dc:creator>fprosper</dc:creator>
<guid isPermaLink="false">1976@http://automatorworld.com/forum/</guid>
<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I am trying to make automator find files in a selected folder with extensions .log and .aux, but I can't find a way. Is there a specific syntax to specify? I have tried {&#34;aux&#34;, &#34;log&#34;} but it doesn't work. Even being able to place multiple &#34;Whose&#34; boxes will be ok, but it seems impossible...&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Fabrizo
&#60;/p&#62;</description>
</item>
<item>
<title>brademcee on "Choose From List Feature Help"</title>
<link>http://automatorworld.com/forum/topic.php?id=747#post-1975</link>
<pubDate>Thu, 10 Apr 2008 23:48:39 +0000</pubDate>
<dc:creator>brademcee</dc:creator>
<guid isPermaLink="false">1975@http://automatorworld.com/forum/</guid>
<description>&#60;p&#62;I am having problems using the Choose From List in Automator. Can someone walk me through how to use this? I am trying to have certain workflows listed in the list that a user can choose to run the workflows. Any help would be greatly appreciated.&#60;/p&#62;
&#60;p&#62;Thanks,
&#60;/p&#62;</description>
</item>
<item>
<title>andrewR on "database"</title>
<link>http://automatorworld.com/forum/topic.php?id=746#post-1974</link>
<pubDate>Mon, 07 Apr 2008 20:57:59 +0000</pubDate>
<dc:creator>andrewR</dc:creator>
<guid isPermaLink="false">1974@http://automatorworld.com/forum/</guid>
<description>&#60;p&#62;I would love any help from anyone and the game Im talking about is     &#60;a href=&#34;http://delta.astroempires.com&#34; rel=&#34;nofollow&#34;&#62;http://delta.astroempires.com&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>andrewR on "database"</title>
<link>http://automatorworld.com/forum/topic.php?id=746#post-1973</link>
<pubDate>Mon, 07 Apr 2008 20:51:59 +0000</pubDate>
<dc:creator>andrewR</dc:creator>
<guid isPermaLink="false">1973@http://automatorworld.com/forum/</guid>
<description>&#60;p&#62;I was hoping I could use the automator to make a database of players on an online game. I just bought my mac and Im not sure how to use it.
&#60;/p&#62;</description>
</item>
<item>
<title>RichardBronosky on "This site has a download area, but no way to upload?"</title>
<link>http://automatorworld.com/forum/topic.php?id=745#post-1972</link>
<pubDate>Mon, 07 Apr 2008 11:19:40 +0000</pubDate>
<dc:creator>RichardBronosky</dc:creator>
<guid isPermaLink="false">1972@http://automatorworld.com/forum/</guid>
<description>&#60;p&#62;I'm confused.  Is this and Automator scripting user community, or an aggregator site?&#60;/p&#62;
&#60;p&#62;I have an update to the &#60;a&#62;Bluetooth Object Push 1.1&#60;/a&#62; that makes it work on Intel Macs.  I'd like to share it.  But how?
&#60;/p&#62;</description>
</item>
<item>
<title>brademcee on "Security Automator"</title>
<link>http://automatorworld.com/forum/topic.php?id=744#post-1971</link>
<pubDate>Sun, 06 Apr 2008 18:22:07 +0000</pubDate>
<dc:creator>brademcee</dc:creator>
<guid isPermaLink="false">1971@http://automatorworld.com/forum/</guid>
<description>&#60;p&#62;I am trying to make an automator workflow and have a few questions? The workflow that i am creating automatically configures your firewall settings based on if your connected to a private or public network. &#60;/p&#62;
&#60;p&#62;So far the way I have done this is to use the confirmation action (Are you connected to a public network?) If they select &#34;yes&#34; , then I recorded an action of opening up the Preferences-&#38;gt;Security-&#38;gt;FireWall-&#38;gt;Choose Essential Services Only-&#38;gt; Advanced-&#38;gt;Stealth Mode.&#60;/p&#62;
&#60;p&#62;The main problem is that the Stealth Mode option is just a click for on and off so there is no intelligence built into the workflow to know if it is active or not (it will either un-click or re-click). &#60;/p&#62;
&#60;p&#62;Is there anyway to do this where automator will know if stealth mode is active or inactive?&#60;br /&#62;
Can I do this a little cleaner, instead of just running the recording feature?&#60;/p&#62;
&#60;p&#62;Also, how can I ask a questions that has two different scripts? Such as are you connected to a public or private network (by choosing either one, will configure your firewall and itunes)?&#60;/p&#62;
&#60;p&#62;Thanks in advance!
&#60;/p&#62;</description>
</item>
<item>
<title>hispanicboy on "Thumbnail Poster Image Order"</title>
<link>http://automatorworld.com/forum/topic.php?id=743#post-1970</link>
<pubDate>Sun, 30 Mar 2008 21:56:48 +0000</pubDate>
<dc:creator>hispanicboy</dc:creator>
<guid isPermaLink="false">1970@http://automatorworld.com/forum/</guid>
<description>&#60;p&#62;I am using the &#34;Create Thumbnail Poster&#34; Automator action that can be found here:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://automatorworld.com/archives/create-thumbnail-poster/&#34; rel=&#34;nofollow&#34;&#62;http://automatorworld.com/archives/create-thumbnail-poster/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;My &#34;problem&#34; is that the images in the resulting poster seem to be in no particular order. Some are grouped in order, some are out of order. I would like them to end up in order from left to right/top to bottom. Any suggestions?
&#60;/p&#62;</description>
</item>
<item>
<title>nissarup on "Colorpicker"</title>
<link>http://automatorworld.com/forum/topic.php?id=742#post-1969</link>
<pubDate>Fri, 14 Mar 2008 10:05:20 +0000</pubDate>
<dc:creator>nissarup</dc:creator>
<guid isPermaLink="false">1969@http://automatorworld.com/forum/</guid>
<description>&#60;p&#62;Is there any way to use the colorpicker, either via an Applescript or straight in Automator to get the color at a certain point on the screen?
&#60;/p&#62;</description>
</item>
<item>
<title>davesnothere on "Automator run MySQL script on network computer"</title>
<link>http://automatorworld.com/forum/topic.php?id=735#post-1968</link>
<pubDate>Tue, 11 Mar 2008 11:12:40 +0000</pubDate>
<dc:creator>davesnothere</dc:creator>
<guid isPermaLink="false">1968@http://automatorworld.com/forum/</guid>
<description>&#60;p&#62;I'm working on a similar project, and AFAIK, you cannot access the mysql table directly. I have a perl script on the server hitting the db, and I have automator connect to the script, passing a get string (http://foo.com/myscript.pl?command=string). I then have perl hit the db based upon what I just passed it. I'm using cURL because I want this to all work faceless, but you could just use safari's &#34;Get Specified URLs&#34; action.
&#60;/p&#62;</description>
</item>
<item>
<title>macgruder on ""Run Shell Script" stops responding after a couple of minutes"</title>
<link>http://automatorworld.com/forum/topic.php?id=741#post-1967</link>
<pubDate>Tue, 11 Mar 2008 07:32:26 +0000</pubDate>
<dc:creator>macgruder</dc:creator>
<guid isPermaLink="false">1967@http://automatorworld.com/forum/</guid>
<description>&#60;p&#62;I have a shell script that works fine in the Terminal but in Automator stops responding after about 3 loops. If I do ps aux &#124; grep curl it is there but is using no cpu. It seems that Automator is 'losing contact' with the script. Any ideas what I can do about this (in 10.4):&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;for f in *
do
(/opt/local/bin/curl --max-time 100 -b /tmp/cookiesh.txt -F file1=@&#38;quot;$f&#38;quot; -F public=1 -F Submit=OK somesite.com/process.php)
done&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>elithecat on "Need to raise volume in Quicktime and then saved"</title>
<link>http://automatorworld.com/forum/topic.php?id=740#post-1966</link>
<pubDate>Sun, 09 Mar 2008 11:35:24 +0000</pubDate>
<dc:creator>elithecat</dc:creator>
<guid isPermaLink="false">1966@http://automatorworld.com/forum/</guid>
<description>&#60;p&#62;I am new to Automator and I am completely lost. I think the one thing I want to do with it is too complicated for me. I hope someone else better than I wants to take a crack at it. &#60;/p&#62;
&#60;p&#62;What I need is a folder of .mov files to be opened and then have it go into the &#34;Show Movies properties&#34; under the window menu. Then it needs to choose the main audio settings and raise the volume all the way and then click on the audio track and raise the volume all the way. Finally it needs to save the changes and close the file and go on to the next one in the folder. &#60;/p&#62;
&#60;p&#62;If I am not clear on any part of this please post. I am really lost and just looking for a bit of help. Thanks for looking&#60;br /&#62;
Shane
&#60;/p&#62;</description>
</item>
<item>
<title>magyk on "Change Monitor Resolution"</title>
<link>http://automatorworld.com/forum/topic.php?id=739#post-1965</link>
<pubDate>Fri, 07 Mar 2008 12:08:44 +0000</pubDate>
<dc:creator>magyk</dc:creator>
<guid isPermaLink="false">1965@http://automatorworld.com/forum/</guid>
<description>&#60;p&#62;Thanks in advance for the help guys.  I am trying to create an action that will change the monitor resolution on a computer that is unattended.  &#60;/p&#62;
&#60;p&#62;I would like to be able to do this through ARD using any method that would work for me(Unix command,Automator action, AppleScript, etc.)  The only thing I have been able to come up with so far is to use the &#34;watch me do&#34; function, but that is touchy due to different monitors being used.&#60;/p&#62;
&#60;p&#62;I tried using :&#60;/p&#62;
&#60;p&#62;set screens to{screenid:&#34;1&#34;, screensize:{1024,768},refresh&#60;br /&#62;
rate:60,color depth:24}&#60;/p&#62;
&#60;p&#62;That compiles correctly, but does nothing when ran.  &#60;/p&#62;
&#60;p&#62;Ideally, this would not include using any additional programs.
&#60;/p&#62;</description>
</item>
<item>
<title>nstardrr on "Amazon Kindle and Automator"</title>
<link>http://automatorworld.com/forum/topic.php?id=736#post-1964</link>
<pubDate>Mon, 03 Mar 2008 20:06:06 +0000</pubDate>
<dc:creator>nstardrr</dc:creator>
<guid isPermaLink="false">1964@http://automatorworld.com/forum/</guid>
<description>&#60;p&#62;Ben Waldie was kind enough to provide a screenshot which solved my problem.  I'm posting it here in the hope others can benefit.&#60;/p&#62;
&#60;p&#62;David&#60;br /&#62;
&#60;img /&#62;&#60;br /&#62;
&#60;a&#62;&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>bobGray on "E-mail off only one file at a time"</title>
<link>http://automatorworld.com/forum/topic.php?id=738#post-1963</link>
<pubDate>Sun, 02 Mar 2008 01:22:51 +0000</pubDate>
<dc:creator>bobGray</dc:creator>
<guid isPermaLink="false">1963@http://automatorworld.com/forum/</guid>
<description>&#60;p&#62;Hi new to automator and I have it so anything I drag in to a folder will get attached and mailed off.  But te problem is that if I drag in 10 files they all get sent in one e-mail.  How do I change the work flow so that each file gets its own e-mail message??
&#60;/p&#62;</description>
</item>
<item>
<title>ScaryHouse on "Finding/Copying Multiple Files"</title>
<link>http://automatorworld.com/forum/topic.php?id=737#post-1962</link>
<pubDate>Sat, 01 Mar 2008 14:28:28 +0000</pubDate>
<dc:creator>ScaryHouse</dc:creator>
<guid isPermaLink="false">1962@http://automatorworld.com/forum/</guid>
<description>&#60;p&#62;Hello everyone.&#60;/p&#62;
&#60;p&#62;I have a task at work where I'm given a list of from 40 to 400 .tif files that I must copy from the original job folder on a server to a new folder on my desktop. The original job folder has many hundreds of files in it. &#60;/p&#62;
&#60;p&#62;The files I need are not sequential, so currently, I must scroll down the list of files and select and drag each one individually. There is a lot of room for error in this as my vision starts to blur and I become suicidal. (Around number 200.)&#60;/p&#62;
&#60;p&#62;I'd like to be able to take the text of my needed files, in tabbed delineated, comma separated, or listed form, and paste it into a field and have all the appropriate files simply selected. Then I could just drag them over en masse.&#60;/p&#62;
&#60;p&#62;Is there a way for Automator to recognize/read the text file on my desktop, make a new folder and copy only the appropriate files to it?&#60;/p&#62;
&#60;p&#62;This seem like a simple operation, but I haven't found anything useful yet.&#60;/p&#62;
&#60;p&#62;I hope you can help.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
ScaryHouse&#60;br /&#62;
&#60;a href=&#34;mailto:email@scaryhouse.com&#34;&#62;email@scaryhouse.com&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I'm new here, so if you have any help for me could you please email me as well as respond to the post? Thanks.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
