Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
249 views

Can an applescript “tell” call execute without visibly launching the application?

I have a Mail rule set up to launch the following applescript: using terms from application "Mail" on perform mail action with messages theMessages for rule theRule tell application ...
1
vote
1answer
105 views

'telling' a specific application by a specific full path using Applescript

I am looking to tell application "xyz", but by specifying a full path to the application. This is because there may be various versions of the app on the system in different places, but with the same ...
0
votes
2answers
150 views

AppleScript: Call handler inside tell statement

I get this error everytime i run this script: System Events got an error: "Test123" doesn’t understand the notify message. Code: --more code... tell application "System Events" if ...
0
votes
1answer
400 views

AppleScript Finder “open using” problem

H'lo everybody! I'm having some trouble scripting (what I thought would be) a very easy section of something I'm working on. Basically, I want to tell Finder to open a file with a specific ...
0
votes
3answers
258 views

download using wget in perl

New to Perl, hope someone could kindly explain the following questions related to this code: $url ="some url"; open FH, "wget -q -O- $url|" or die; while(<FH>){ ... } what does ...