Basic AppleScript Dialog: display dialog "Your text here" with icon stop buttons {"OK"} default button {"OK"} giving up after 5
'giving up after 5' will automatically close the script after the indicated interval of time has elapsed.
|
AppleScript for Sending Email with Apple Mail

This is a very straightforward script to send data to Apple’s Mail application. There isn’t really anything difficult here. It should suffice to note here the AppleScript terms and expressions used here that are unique to the Mail application. You’ll often find that an application has, along with the standard terms that are used by all applications, some that are specific to the application and therefore must be enclosed in a tell block that directs them to the app you’re using.

set theRecipient to text returned of (display dialog "Enter recipient:" with icon note default answer "yourEmail@domain.com" buttons {"Cancel","OK"} default button {"OK"})
set theSubject to text returned of (display dialog "Enter subject of email:" with icon note default answer "Re: New Subject"
buttons {"Cancel","OK"} default button {"OK"})
set emailText to text returned of (display dialog "Enter your email message here:" with icon note default answer "This is the text of your email message"
buttons {"Cancel","Send"} default button {"Send"})
tell application "Mail"
activate
set theMessage to make new outgoing message
tell theMessage
set the subject to theSubject
set the content to emailText
make new to recipient at end of to recipients with properties {address:theRecipient}
end tell
save theMessage
end tell
The statement: ‘set theMessage to make new outgoing message’ sets things up so that the following commands in the tell block can be directed to the variable theMessage as an object.
The next two statements set the values of the subject and content fields to the variables ‘theSubject’ and ‘emailText’ respectively.
Next, the value of the Mail property ‘address’ is set to the value of the variable ‘theRecipient’.
Finally, the save command is directed to the Mail application, since it cannot be handled by ‘theMessage’ as it is, in effect a document.
Contact me if you have any questions or comments at: hyperscripter@gmail.com or http://twitter.com/hyperscripter or to subscribe, click the By Email link at the top of the page.

|
 
HTML Guide from Peachpit Press
 iPhoto 6
Create Multiple Folders with Terminal
If you are more of a techy kind of person and are comfortable with using Terminal, here is a script you can use to easily create multiple folders:
First, for a single folder, type in: mkdir "Folder 1"
--or whatever you want to name your folder, this creates a new directory, which, in effect is a new folder.
To place multiple items in the 'Documents' folder:
cd/Users/
Administrator/
Documents
mkdir "Folder 1" "Folder 2"
"Folder 3"
To quickly create multiple folders, create a text file with the desired folder names (as many as you want) and name it something like 'folderList.txt'. Next type this in Terminal:
cat folderList.txt |xargs mkdir
Or you could create folders with the same prefix by entering:
mkdir "Invoices " {"Corporate", "Individual", "Pro-Bono"}
Digg This!!
An AppleScript to Verify a Date Run this in the Script Editor:
set dateRecord to (current date)
set defaultDate to (date string of dateRecord)
try
set apptDate to text returned of (display dialog "Enter appointment date:" default answer defaultDate buttons {"Set"} default button {"Set"})
set datetext to apptDate as text
date apptDate --if an invalid date is entered, the next dialog is aborted and it triggers the error alert below.
display dialog datetext & " is a valid date." with icon note buttons {"OK"} default button {"OK"}
on error
set alertText to "An error has occurred!"
set messageText to quote & datetext & quote & " is an invalid date."
display alert alertText message messageText as warning buttons {"OK"} default button "OK" giving up after 15
return
end try
|
 Concept Drawing for iMac prior to Production
Fun HTML Use this to add interest to your pages, but be careful, if you overdo it, it can make your page look gaudy, if not ridiculous!
Read All About It
Here's is the code as it appears above:
<p align="center" style="padding: 5px; background-color: #FFCE9C; border: dotted 5px #FFCE9C;"><marquee width=20% behavior=scroll direction=left loop=infinite> Latest Headlines... </marquee><blink>Read All About It</blink>/p>
Check out this color HTML!!!
AppleScript for Setting System Volume Copy and paste this into the Script Editor and try it out:
set defaultVolume to "3"
set volumeLevel to text returned of ¬
(display dialog ¬
"Set the system volume to (7 is the highest):"¬
default answer defaultVolume with icon note¬
buttons {"OK"} default button "OK") as integer
set volumeValues to {0, 1, 2, 3, 4, 5, 6, 7} ¬
as list
if volumeLevel is not in volumeValues then ¬
set volumeLevel to defaultVolume
tell application "Finder"
try
set volume volumeLevel
beep 2
on error errDlog
display dialog errDlog with icon stop ¬
buttons {"Abort"} default button ¬
"Abort" giving up after 15
end try
end tell
Earn Wealth on Internet
Learn Tips and Tricks to Making Money on the Internet
www.internetwealth.com
Learn How To Make Money Blogging - Blog Mastermind
Six-figure Yaro Starak Teaches You How To Set Up And Profit From A Successful Blog. Start Making Money From Blogs By Following This Step-by-step, Weekly Coaching Program
http://www.blogmastermind.com/coaching/
Seo Elite: New Seo Software!
The Grand Daddy Of All Seo Software!
Get A Top 5 Google Ranking In Under 30 Days!
http://www.seoelite.com/
Turn Your Photos Into Cash
All You Need Is A Digital Camera, A Computer And An Internet Connection To Get Started Making Extra Income Every Month!
http://turnyourphotosintocash.com/
Infinite Income Plan - Instant Wealth Guide & CDs.
Easy Money For Affiliates, Huge 8.3% Conversions On Generic Traffic. Massive 70% Commissions Plus
HyperCard AppleScript Users:
Heres an AppleScript for backing up a selected group of HyperCard files. this was used in one of my HyperCard stacks, but could be adapted for use in OSX programs with little or no modification:
send "suiteBkp(true)" to bg btn "BackupSuite"
--Use this line to call the handler below (true displays a notification dialog when the process is complete, you must have a button named bg btn "BackupSuite"):
on suiteBkp(theBoolean)
copy line 1 of field "selectedFolder" to theHFFolderPath --You'll need a hidden field named "selectedFolder" that a script (prior to the call) will place the path to the desired folder in.
tell application "Finder"
activate
set todaysDate to (current date)
set bkpYear to (year of todaysDate)
set monthlyBkp to ("Monthly Reports_" & bkpYear) as string
if exists (folder "HyperCard Backup") then
select folder "HyperCard Backup"
delete selection
end if
if exists (folder "HyperCard Backup" of folder theHFFolderPath) then
select folder "HyperCard Backup" of folder theHFFolderPath
delete selection
end if
make new folder at folder theHFFolderPath with properties {name:"HyperCard Backup"}
select {file "Appointments" of folder theHFFolderPath, ¬ file "HyperFile" of folder theHFFolderPath, ¬ file "Outstanding Invoices" of folder theHFFolderPath, ¬ file "Year" of folder theHFFolderPath, ¬ file monthlyBkp of folder theHFFolderPath, ¬
copy selection to folder "HyperCard Backup" of folder theHFFolderPath
select folder "HyperCard Backup" of folder theHFFolderPath
select file "Appointments" of folder ¬ "HyperFile Suite Backup" of folder theHFFolderPath
set name of selection to "Appointments.bkp"
select file "HyperFile" of folder "HyperCard Backup" of ¬ folder theHFFolderPath
set name of selection to "HyperFile.bkp"
select file "Outstanding Invoices" of ¬ folder "HyperFile Suite Backup" of folder theHFFolderPath
set name of selection to "Outstanding Invoices.bkp"
select file "Year" of folder "HyperFile Suite Backup" of ¬ folder theHFFolderPath
set name of selection to "Year.bkp"
set prefMonthlyBkp to (monthlyBkp & ".bkp") as string
select file monthlyBkp of folder "HyperFile Suite Backup" of ¬ folder theHFFolderPath
set name of selection to prefMonthlyBkp
select folder "HyperFile Suite Backup" of folder "The HyperFile Folder"
move selection to desktop
end tell
if theBoolean = "true" then
tell application "HyperCard"
activate
display dialog ¬ "Your backup has been saved to desktop." buttons {"Done"} default button {"Done"} with icon 129 giving up after 10
end tell
end if
end suiteBkp
more HyperTalk
 Macintosh Plus (late 1984), followed close behind the Mac 512k
 The classic Apple IIc (1981), part of a series of Apple computers that preceded the debut of the Macintosh
HyperCard Users Corner:
Here's a simple, but very useful little HyperTalk script for verifying the validity of a date entered by a user, assuming that you have a menu item "flag date..." (or whatever you choose to name it) or it could be altered slightly and placed within a mouseUp statement:
if menuItem = "Flag Date..." then
global tryDate
ask "Enter a date for your new appointment:" with the long date
if it ≠ "" and the result ≠ "Cancel" then
put it into tryDate
else
put "" into tryDate
exit doMenu
end if
if invalidDate() then
answer "The date entered is not valid!"
put "" into tryDate
exit doMenu
end if
--Here you would put the statements to execute if the entered date proves to be valid
put "" into tryDate
end if
function invalidDate
global tryDate
convert tryDate to short date
if the result = "invalid date" then
return true
else
return false
end if
end invalidDate
more HyperTalk

 Mac SE (circa 1987), was a more advanced version of the Mac Plus and had an internal hard drive.
YouTube Video Search Script:
tell application "Finder"
try
set webSearch to text returned of (display dialog "Enter YouTube Video
Search" default answer "" buttons {"Search", "Cancel"} default button 1)
open location "http://www.youtube.com/results?search_query=" & webSearch
on error theError
display dialog theError
end try
end tell
|
Really useful blog post. Do you actually plan on adding additional articles or even posting more? My personal web page is Shake Weight Review I actually hope you will not mind though I just have directed your current webpage to a couple of my family and friends just as well. Fantastic work! By possibility would you want to exhange web-sites?
Helpful short article. Those things i must bring up is the fact that computer storage must be obtained should the laptop or computer also won’t be able to take care of all you could do as well as the item. You can established a couple Ram memory recollection decks that contain 1GB each, particularly, but is not considered one of 1GB and a second with 2GB. You will need to check any car maker’s paperwork for the Personal computer to make certain what kind of ram it takes.
Its like you read my mind! You appear to know a lot approximately this, like you wrote the book in it or something. I feel that you can do with a few percent to pressure the message home a little bit, but instead of that, that is excellent blog. A great read. I’ll definitely be back.
Ugg boots are welll know Traditional Brief Romantic Flower UGG Bootsglobe-extensive,as it preserve your ft so warm in winter and so at ease to have on,so several people really like it.Ugg boots have a lot of designs,this kind of as ugg traditional tall,ugg classic quick,ugg bailey buttonClassic Type Females UGG Boots,they are so well-known amongst people,everyone like it,absolutely everyone want to have it.Why do you get one excellent high qualitySundance Grab UGG Bag ugg boots.
Hi, Mammoth post, thanks you, i like your thesis also!
I as well as my pals happened to be checking the best recommendations located on your web site and so before long I got a terrible feeling I had not expressed respect to the blog owner for those techniques. Most of the women came as a result very interested to see them and have in truth been enjoying them. Appreciation for indeed being considerably helpful and also for opting for this kind of notable resources millions of individuals are really desperate to understand about. My honest apologies for not expressing gratitude to you sooner.
I think there’s an issue with the RSS feed here. It almost seems like a missing link to me?
Ok so, I don’t want to comment here but I can’t find a ‘complaint’ form. It seems that your hosting complany does something with their servers or something because I get an error 500 from time to time. Mostly in the evening 8pm+. Just tought you should know.
This is really interesting, You are a very skilled blogger.I’ve joined your rss feed and look forward to seeking more of your magnificent post.Also, I have shared your site in my social networks!
I really like that movie you are saying into the post
Added to my RSS, Thanks!
Many thanks your specific excellent blog submitting! I seriously loved reading it, you have broken down a good writer.I will ensure that I bookmark your wordpress blog and can go back within the foreseeable time to come. I want to persuade maintain one’s wonderful job, have a very fine morning hours!
I?ll immediately grab your rss feed as I can not find your e-mail subscription hyperlink or e-newsletter service. Do you’ve any? Please let me realize so that I may subscribe. Thanks.
I became some great info here. I believe that if more people considered it like this, they’d possess a better time obtain the hang ofing the situation.
I enjoy what you guys are usually up too. Such clever work and reporting! Keep up the good works guys I’ve added you guys to blogroll.
The sense of wanting to assist, however not finding out how as well as place, are some things a range of us are going through.
I like what you guys are up too. Such clever work and exposure! Keep up the excellent works guys I’ve incorporated you guys to my own blogroll.
I may deliver convey my capability to your specific understanding giving help upto people that require aid on that location of interest. Your special dedication to actually obtaining the letter all-around came to be pretty invaluable but has in every instance enabled opposite sex like me to become over at their likes and dislikes. This new warm and welcoming instruction indicates a great deal with me and very much additional upto my mates. Best wishes; from each one of us.
The sense of intending to assist, however not identifying how and the place, is one area a variety of us have undergone.
Definitely, what a splendid weblog and instructive content, I undoubtedly will bookmark your particular web page.Every one of the Best!