<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
	<channel>
		<description>Recent Topics</description>
		<generator>AppleCentral Forums</generator>
		<language>en-us</language>
		<lastBuildDate>Sun, 19 May 2013 23:03:40 PDT</lastBuildDate>
		<link>http://forums.applecentral.com/ubbthreads.php?ubb=cfrm</link>
		<ttl>5</ttl>
		<webMaster>forums@applecentral.com</webMaster>
		<title>Programming, Web Dev &amp;amp; Scripting</title>
		<image>
			<title>Programming, Web Dev &amp;amp; Scripting</title>
			<url>http://forums.applecentral.com/images/general/default/rss_icon.gif</url>
			<link>http://forums.applecentral.com/ubbthreads.php?ubb=cfrm</link>
		</image>
				<item>
			<title>Background process to record time spent in an app</title>
			<link>http://forums.applecentral.com/ubbthreads.php/topics/593847#Post593847</link>
			<description><![CDATA[Posted by: <b>kg2387</b><br /><u> on: <span class="date">04/25/13</span> <span class="time">05:57 AM</span></u><br /><br />I want to track the length of time and time of day I spend in a certain app on my laptop (it's a writing app and I want to track how much time I spend writing).<br /><br />I was thinking of writing a simple script that records whenever that particular app opens and closes and exports the data to a text file.<br /><br />Does anyone know where I could get started writing this. I've done a little bit of bash scripting before, but not enough to know where to start. Or if you have any better ideas on how to record this data I'd love to hear them.<br /><br />Thanks.]]></description>
			<pubDate>Thu, 25 Apr 2013 05:57:24 PDT</pubDate>
			<guid>http://forums.applecentral.com/ubbthreads.php/topics/593847#Post593847</guid>
		</item>
				<item>
			<title>Audio Kext for Live Surround Sound Encoding</title>
			<link>http://forums.applecentral.com/ubbthreads.php/topics/590847#Post590847</link>
			<description><![CDATA[Posted by: <b>NucleusG4</b><br /><u> on: <span class="date">02/28/13</span> <span class="time">09:24 AM</span></u><br /><br />Don't know.. it's what I read at Apple discussion forums.]]></description>
			<pubDate>Thu, 28 Feb 2013 09:24:56 PST</pubDate>
			<guid>http://forums.applecentral.com/ubbthreads.php/topics/590847#Post590847</guid>
		</item>
				<item>
			<title>Re-arrange a list of lists in AppleScript</title>
			<link>http://forums.applecentral.com/ubbthreads.php/topics/573616#Post573616</link>
			<description><![CDATA[Posted by: <b>waggy-d</b><br /><u> on: <span class="date">04/12/12</span> <span class="time">12:43 PM</span></u><br /><br />Ok, so I've got a task that I can't seem to figure out. Here is an example of the problem; please note that I don't need a solution to this specific data, but a solution to the type of data as the list may grow and change over time.<br /> <br />I have a list of lists:<br />{{&quot;Company 1&quot;, &quot;Email 1&quot;, &quot;First 1&quot;, &quot;Last 1&quot;, &quot;Title 1&quot;, &quot;Artist 1&quot;}, {&quot;Company 1&quot;, &quot;Email 1&quot;, &quot;First 1&quot;, &quot;Last 1&quot;, &quot;Title 2&quot;, &quot;Artist 2&quot;}, {&quot;Company 2&quot;, &quot;Email 2&quot;, &quot;First 2&quot;, &quot;Last 2&quot;, &quot;Title 3&quot;, &quot;Artist 3&quot;}, {&quot;Company 3&quot;, &quot;Email 3&quot;, &quot;First 3&quot;, &quot;Last 3&quot;, &quot;Title 4&quot;, &quot;Artist 4&quot;}, {&quot;Company 4&quot;, &quot;Email 4&quot;, &quot;First 4&quot;, &quot;Last 4&quot;, &quot;Title 5&quot;, &quot;Artist 5&quot;}, {&quot;Company 4&quot;, &quot;Email 4&quot;, &quot;First 4&quot;, &quot;Last 4&quot;, &quot;Title 6&quot;, &quot;Artist 6&quot;}, {&quot;Company 4&quot;, &quot;Email 4&quot;, &quot;First 4&quot;, &quot;Last 4&quot;, &quot;Title 7&quot;, &quot;Artist 7&quot;}}<br /> <br /> <br />Here is the same list in grid format as it may make it easier to read: Each row represents a list within the list.<br /> <br />Company 1	Email 1	First 1	Last 1	Title 1	Artist 1<br />Company 1	Email 1	First 1	Last 1	Title 2	Artist 2<br />Company 2	Email 2	First 2	Last 2	Title 3	Artist 3<br />Company 3	Email 3	First 3	Last 3	Title 4	Artist 4<br />Company 4	Email 4	First 4	Last 4	Title 5	Artist 5<br />Company 4	Email 4	First 4	Last 4	Title 6	Artist 6<br />Company 4	Email 4	First 4	Last 4	Title 7	Artist 7<br /> <br /><br />What I need is for it to be re-worked into a list of lists as such:<br />{{{&quot;Company 1&quot;, &quot;Email 1&quot;, &quot;First 1&quot;, &quot;Last 1&quot;}, {{&quot;Title 1&quot;, &quot;Artist 1&quot;}, {&quot;Title 2&quot;, &quot;Artist 2&quot;}}}, {{&quot;Company 2&quot;, &quot;Email 2&quot;, &quot;First 2&quot;, &quot;Last 2&quot;}, {{&quot;Title 3&quot;, &quot;Artist 3&quot;}}}, {{&quot;Company 3&quot;, 'Email 3&quot;, &quot;First 3&quot;, &quot;Last 3&quot;}, {{&quot;Title 4&quot;, &quot;Artist 4&quot;}}}, {{&quot;Company 4&quot;, &quot;Email 4&quot;, &quot;First 4&quot;, &quot;Last 4&quot;}, {{&quot;Title 5&quot;, &quot;Artist 5&quot;}, {&quot;Title 6&quot;, &quot;Artist 6&quot;}, {&quot;Title 7&quot;, &quot;Artist 6&quot;}}}<br /> <br />So each unique &quot;Company&quot; along with it's contact info would only be once and then along with it's associated song titles/artists.<br /> <br />Any help would really be appreciated as I just haven't been able to nail it down.<br /> <br />Thanks]]></description>
			<pubDate>Thu, 12 Apr 2012 12:43:51 PDT</pubDate>
			<guid>http://forums.applecentral.com/ubbthreads.php/topics/573616#Post573616</guid>
		</item>
				<item>
			<title>SYSTEM PROFILE QUESTION</title>
			<link>http://forums.applecentral.com/ubbthreads.php/topics/573346#Post573346</link>
			<description><![CDATA[Posted by: <b>MacBozo</b><br /><u> on: <span class="date">04/06/12</span> <span class="time">01:38 PM</span></u><br /><br />Any bluetooth devices connected/paired? PDA (Personal Digital Assistant) may be a clue to just what that device could be.]]></description>
			<pubDate>Fri, 06 Apr 2012 13:38:13 PDT</pubDate>
			<guid>http://forums.applecentral.com/ubbthreads.php/topics/573346#Post573346</guid>
		</item>
				<item>
			<title>Applescript Add Row to Table Microsoft Office</title>
			<link>http://forums.applecentral.com/ubbthreads.php/topics/573615#Post573615</link>
			<description><![CDATA[Posted by: <b>waggy-d</b><br /><u> on: <span class="date">04/12/12</span> <span class="time">12:40 PM</span></u><br /><br />Hello. Reboot. I actually figured it out from another post on apple discussions:<br /><br />tell application &quot;Microsoft Word&quot;<br />    select (last row of table 2 of active document)<br />    insert rows selection position below number of rows 1<br />end tell<br /><br />It worked like a charm. I was using Office 2007 for Mac]]></description>
			<pubDate>Thu, 12 Apr 2012 12:40:32 PDT</pubDate>
			<guid>http://forums.applecentral.com/ubbthreads.php/topics/573615#Post573615</guid>
		</item>
				<item>
			<title>applescript excel and quicktime 7</title>
			<link>http://forums.applecentral.com/ubbthreads.php/topics/580517#Post580517</link>
			<description><![CDATA[Posted by: <b>leicaman</b><br /><u> on: <span class="date">08/18/12</span> <span class="time">11:20 AM</span></u><br /><br />Do you use Apple's editor? You might want to try a demo of Script Debugger from Latenightsoftware. It lets you actually look inside applications as they are running. It's how I've used Photoshop, FileMaker Pro and Numbers to do some, pretty amazing things with embedding metadata into photo files in large numbers automatically. I can't say enough good about Script Debugger. Expensive, but worth it to anyone who needs to do serious work with AppleScript. And they have education discounts!<br /><br />(I'm not affiliated with Latenightsoftware.)]]></description>
			<pubDate>Sat, 18 Aug 2012 11:20:09 PDT</pubDate>
			<guid>http://forums.applecentral.com/ubbthreads.php/topics/580517#Post580517</guid>
		</item>
				<item>
			<title>Need script to compress multiple PDFs</title>
			<link>http://forums.applecentral.com/ubbthreads.php/topics/567018#Post567018</link>
			<description><![CDATA[Posted by: <b>steveg</b><br /><u> on: <span class="date">11/14/11</span> <span class="time">03:18 AM</span></u><br /><br />DOH! Never used Automator, and I already had the plugin installed. Worked perfectly and did the job in a couple of secs! 10-Q belly mooch. <img src="/images/graemlins/default/grin.gif" alt="grin" title="grin" height="15" width="15" />]]></description>
			<pubDate>Mon, 14 Nov 2011 03:18:48 PST</pubDate>
			<guid>http://forums.applecentral.com/ubbthreads.php/topics/567018#Post567018</guid>
		</item>
				<item>
			<title>Getting started with MAC development</title>
			<link>http://forums.applecentral.com/ubbthreads.php/topics/568454#Post568454</link>
			<description><![CDATA[Posted by: <b>BikerMac</b><br /><u> on: <span class="date">12/18/11</span> <span class="time">08:55 AM</span></u><br /><br />Wow.  A tall order.  I am in the same position but have realized there is no simple code that will make all clear to a C# person.  Assuming you already know Objective-C, you need to learn the Xcode IDE and learn how it handles delegates.  That's my 2 cents.  Also you'll probably feel a bit frustrated with Xcode compared to VS.]]></description>
			<pubDate>Sun, 18 Dec 2011 08:55:47 PST</pubDate>
			<guid>http://forums.applecentral.com/ubbthreads.php/topics/568454#Post568454</guid>
		</item>
				<item>
			<title>Applescript insert an image into a word table cell</title>
			<link>http://forums.applecentral.com/ubbthreads.php/topics/557486#Post557486</link>
			<description><![CDATA[Posted by: <b>rshowdown</b><br /><u> on: <span class="date">05/08/11</span> <span class="time">04:20 PM</span></u><br /><br />How is it done?<br /><br />I have a cell that I wish to insert a picture from the HD int but I just can't seem to get it to work...  I have no problem inserting the picture at the end of the document but not in the cell... thoughts?<br /><br />Works:<br /><div class="ubbcode-block"><div class="ubbcode-header">Code:</div><div class="ubbcode-body ubbcode-pre" ><pre>make new inline picture at end of proposal with properties {file name:&quot;Macintosh HD:Users:User:Misc:pict.jpg&quot;, save with document:true}</pre></div></div><br /><br />Does not work: <br /> <div class="ubbcode-block"><div class="ubbcode-header">Code:</div><div class="ubbcode-body ubbcode-pre" ><pre>make new inline picture at (get cell from table proposalTable row 3 column 3) with properties {file name:&quot;Macintosh HD:Users:User:Misc:pict.jpg&quot;, save with document:true}</pre></div></div><br /><br />thanks!<br />-J]]></description>
			<pubDate>Sun, 08 May 2011 16:20:21 PDT</pubDate>
			<guid>http://forums.applecentral.com/ubbthreads.php/topics/557486#Post557486</guid>
		</item>
				<item>
			<title>Checking for file/folder exist with javascript</title>
			<link>http://forums.applecentral.com/ubbthreads.php/topics/552215#Post552215</link>
			<description><![CDATA[Posted by: <b>xcarguy</b><br /><u> on: <span class="date">02/22/11</span> <span class="time">07:55 AM</span></u><br /><br />I'm trying to re-package Microsoft's office installer using Apple's packagemaker and I need to determine if Office 2008 or 2004 is already installed on the system before installing 2011.  I'm using a result of java script as an installation requirement using system.files.fileExistsAtPath.  This does not seem to work.  No matter how I code the return boolean value it always fails.  Does anyone have any tips on using this method as an installation requirement?]]></description>
			<pubDate>Tue, 22 Feb 2011 07:55:29 PST</pubDate>
			<guid>http://forums.applecentral.com/ubbthreads.php/topics/552215#Post552215</guid>
		</item>
			</channel>
</rss>
