What is RSS feed? | About Us
RSSMicro - RSS Feed Search Engine
Dedicated RSS Feed Search Engine
Search for News, Blogs, and RSS Feeds

AppleScript

 
Search 2.1 million RSS feeds, the most comprehensive RSS feed search on the web.
TOP STORIES
5,400 news sources, updated continuously
RSSMicro results for AppleScript
Show results within: Past Week  |  Sort by: Date
RSS Feed
Search Score Search Score: 5/10

10.5: Avoid syslogd CPU usage when using AppleScript
14 days ago
Automatically change iChat status with AppleScript
15 days ago
AppleScript: Integrating shell scripts
30 days ago
Root escalation through AppleScript
34 days ago
Grayscale Display [AppleScript]
36 days ago
Applescript to arrange your desktop
62 days ago

Source: macs.about.com --- 31 days ago
Two security firms, SecureMac and Intego, have separately issued security warnings for OS X Tiger and OS X Leopard. Both operating systems can be affected by a Trojan AppleScript delivered... ...
Source: www.pcworld.com --- 30 days ago
Recently I was fuming on Twitter about the inability to set "private times" in chat applications. I've spread my... ...
Source: forums.macrumors.com --- 24 days ago
I am brand new to Macs and have run into a wall. You see, I am TRYING to send keystrokes to the active window. Under Windows XP, it was a VERY simple process using vbscript_: Code: --------- Dim oShell Set oShell = WScript.CreateObject("WScript.Shell") DooShell.SendKeys "Enter some text here" oShell.SendKeys "{ENTER}" WScript.Sleep 850000 Loop --------- This would, regardless of the application, send the keystrokes to the active window. I am having a hell of a time trying to duplicate this simple process with AppleScript. I have Googled until blue in the face, and have not found anything like what I was doing with VBScript. Can anyone point me in the right direction? ...
Source: forums.macrumors.com --- 19 days ago
Forum: Mac Programming Posted By: michaelzz Post Time: Jul 4, 2008 at 10:48 PM ...
Source: www.macuser.com --- 16 days ago
I've been messing around a lot lately with AppleScript. Why? Because I like being bossy and controlling, and what better way to flex my dictatorial muscle than by ordering my computer to perform various actions using blunt and non-negotiable commands without so much as a "please" or "thank you." To see what this programming prose can do, I began developing developing solutions to all the "I wish I could..."s in OS X that I've built up over the years. The first was just for fun: I wanted a way to automatically change my iChat away status, at a certain interval, to a random selection from a list of messages stored in a text file—one per line—on my Mac. So if I like using funny quotes as my away messages—which I do—instead of having to change it manually every time I'm bored of an old quote, I use an AppleScript to automatically change my status to a random quote every twenty minutes. Neat? Yes. Check after the jump for the AppleScript code, and a line-by-line analysis to help you understand how it works. Click to keep reading... Primary category: Tips Read More - Comments (0) Click to read the rest... Copyright Mac Publishing LLC. This feed is for personal non-commercial use only. Do not re-post. Contact webmaster@macworld.com if you see this on a web page. ...
Source: www.macworld.com --- 31 days ago
Jason Snell battles a wonky Java applet to get a readable version of a court case. ...
Source: www.tuaw.com --- 30 days ago
Filed under: Features , How-tos , AppleScript We've talked about AppleScript how-tos before. AppleScript is fun and all, but what if you already know how to write shell scripts? Well, did you know that by integrating shells scripts into AppleScript, you can create simple applications that do useful things? It's true, and I am going to show you how. Continue reading to learn how to integrate shell scripts into AppleScripts. Continue reading AppleScript: Integrating shell scripts Read  |  Permalink  |  Email this  |  Comments ...
Source: www.macnn.com --- 28 days ago
A MacNN forum poster reports on a serious flaw in Mac OS X's implementation of AppleScript. Essentially, applications that are running as root can accept AppleScript commands from applications that are not running as root -- and since every Cocoa application automatically gets some basic AppleScript support, this means that any time a Cocoa applica... ...
Source: www.macosxhints.com --- 7 days ago
Often programs like PearLyrics or SingThatiTune just don't find the song I am looking for, and I have to find the lyrics manually. I found it tedious to find the lyrics in Safari, switch back to iTunes, highlight the song I want to add the lyrics to, open the song's info panel, paste in the lyrics, and finally, close the window. So I wrote this simple AppleScript instead: tell application "System Events" set sel to (the clipboard as text) end tell tell application "iTunes" set lyrics of current track to sel end tell I then bound this AppleScript to a keyboard shortcut using iKeys (any macro-capable program should work just as well). It will copy any text currently in the clipboard to the currently playing song's lyrics. ...
Source: www.macupdate.com --- 20 days ago
Tierprogramm 0.8Tierprogramm is an AppleScript based freeware droplet User-Interface for Exiftool. It can be used to change Exif-informations inside jpg files. Tierprogramm is written by Florian Poeck and offered as it is. There is no warranty at all and usage it at your own risk.More information ...
Source: www.tuaw.com --- 16 days ago
Filed under: Features , How-tos , AppleScript Last week, Dave mentioned that you can change the file type used system-wide for screenshots. However, some people are afraid of using Terminal.app to muck around with their Mac. In this week's AppleScript article, I am going to show you how to take screenshots and change their file type using an AppleScript. The AppleScript property N : 0 set N to N + 1 set picPath to ((POSIX path of (path to desktop)) & "Picture_" & N & ".png") as string do shell script "screencapture " & quoted form of picPath Using the AppleScript Open the ScriptEditor (/Applications/AppleScript/ScriptEditor.app). Copy/paste the AppleScript into the script edtitor and click the run button at the top. You will hear the camera shutter sound and a picture will be taken and saved to your desktop. This script comes in handy when you want to take a screenshot in a different format. To do this, just change the ".png" file type to whatever you might want (say, .jpg, .tiff, etc.). When you re-run the script, the new file type will be associated with the capture image. Continue reading to learn how to save this script. Continue reading AppleScript: Taking screenshots Read  |  Permalink  |  Email this  |  Comments ...
Source: www.macosxhints.com --- 14 days ago
I'm always searching for something to write on when I want to take a quick note. I know that Mail in 10.5 includes a note function, but it's usually been too much trouble to launch Mail and then navigate the menus to select a new note. So I finally put together this little AppleScript that I use with Quicksilver's hotkeys to launch a new note with just one keystroke: tell application "Mail" activate end tell tell application "System Events" tell process "Mail" click the menu item "New Note" of the menu "File" of menu bar 1 end tell end tell I save the script as an application, and assign it to the F7 key in Quicksilver. Now when I need to take a quick note, it's just one key press away. As an alternative to using Quicksilver's hotkey, this script can be saved as an application and placed in the Dock, making a new note just one click away. ...
Source: www.macosxhints.com --- 15 days ago
Since the release of 10.5, I've seen that the execution of AppleScripts triggers heavy activity of syslogd , basically causing it to take over the CPU. I've found that by killing the syslogd process (which will automatically restart) and removing the asl.db file from the /var/log directory, I can at least temporarily solve the problem. Here's a two-line AppleScript to do just that: do shell script "sudo launchctl stop com.apple.syslogd" with administrator privileges do shell script "sudo rm /var/log/asl.db" with administrator privileges Run that, and CPU usage by syslogd should drop to normal levels again, at least for a while. [ robg adds: ... ...
Source: forums.macworld.com --- 15 days ago
Hello, Just about everyday I open the same 5 documents in textedit. Everyday (or after every reboot) I have to arrange the windows, which is exactly the same way each time, so they're all displayed a certain way. An AppleScript for this would prove invaluable. Anyone know a good way to create one that opens, arranges, and resizes 5 .rtf documents in Text Edit? The recording feature of script editor didn't register for Text Edit recordings. Thanks a ton. I sincerely appreciate your wisdom on this matter! Molto ringraziamento! Sincerely, John ...
Source: blogmarks.net --- 15 days ago
AppleScript is now entirely Unicode-based. Comments and text constants in scripts may contain any Unicode characters, and all text processing is done in Unicode, so all characters are preserved correctly regardless of the user’s language preferences. ...
Source: www.macobserver.com --- 18 hours ago
Houdah Software announced the immediate availability of HoudahSpot 2.2 on Wednesday. The update for the Leopard search utility includes a redesigned BlitzSearch Spotlight search feature along with improved AppleScript support ...
Source: www.macobserver.com --- 29 days ago
AppleScript has been around for a long time, but other more modern approaches always make developers look at where they are and where they want to go. Adobe is doing just that, according to Jason O'Grady and David Morgenstern at The Apple Core on Tuesday ...
Source: www.tech-archive.net --- 23 days ago
Summary: We store a contacts folder in an Exchange 2003 Public Folder. ... In Entourage 2004, you could list subfolders in the Public Folder if you added the subfolder to Favorites. ... ...
Source: www.tech-archive.net --- 11 days ago
Summary: I posted part 1 & 2 on Using AppleScripts with Entourage today. ... Part 1 discusses the basics of using AppleScripts. ... If you have a favorite script you would like to share, ... ...
Source: blogs.macobserver.com --- 16 days ago
I still get an occasional AppleScript question from people who probably found my old column. A few weeks ago Paul had a question about copying files. He works for a TV station, and he is constantly capturing video using Final Cut Pro and dumping it into a scratch directory. When the transfer is complete, he [...] ...

Find more results for AppleScript on RSSMicro.com

Subscribe
 

Copyright © 2008 RSSMicro.com