Re: Need Help with Apple Script

2015-02-27 Thread Daniela Rubio
Hello guis. As I stated in other e-mails, I am trying to keep on with working with scripts. For what could be this script useful? It is useful to learn from what others do. Thanks for sharing this! Daniela Rubio T iPhone: +34662328507 > El 27/2/2015, a las 4:08, Barry Hadder escribió: > > W

Re: Need Help with Apple Script

2015-02-26 Thread Robert Cole
Thank you. Before I read your message, I figured out how to do it. the same way you did, but different wording. repeat display dialog "First Name?" default answer "" display dialog "Last Name?" default answer "" display dialog "Email?" default answer "" beep end repe

Re: Need Help with Apple Script

2015-02-26 Thread Barry Hadder
Well, I guess you could do something like this. set dialogResult to display dialog "First Name" default answer "" if (button returned of dialogResult is "OK") then set dialogResult to display dialog "Last Name" default answer "" if (button returned of dialogResult is "OK") then

Re: Need Help with Apple Script

2015-02-26 Thread Barry Hadder
I don’t think you can do that with the standard user interaction suite. You would need to create a Cocoa apple script application project in Xcode and create a UI from scratch which is much more complicated. There also might be some third party solutions for doing something like this. On Feb 26