Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: How to create GUI for a perl script on MAC?/Apple Script and Perl?

by karlgoethebier (Abbot)
on Jan 18, 2013 at 14:42 UTC ( [id://1014068]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    set theWindowTitle to "PerlMonks"
    set theOption to text returned of (display dialog "Enter a Source fold
    +er:" & return default answer "" with title theWindowTitle)
    set thePerlScript to quoted form of (POSIX path of ((choose file with 
    +prompt "Select a script:") as Unicode text))
    set theResult to do shell script thePerlScript & " -S " & theOption
    display dialog "Result: " & theResult with title theWindowTitle
    
  2. or download this
    #!/usr/bin/perl
    use strict;
    ...
    my %options;
    GetOptions(\%options, "SourceFolder=s");
    print $options{SourceFolder};
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1014068]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (5)
As of 2024-04-23 06:49 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found