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
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
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
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