Re: Can copy or paste in dialogs in Adobe InDesign CS6
Re: Can copy or paste in dialogs in Adobe InDesign CS6
- Subject: Re: Can copy or paste in dialogs in Adobe InDesign CS6
- From: "Schmidt, Michael" <email@hidden>
- Date: Fri, 27 Feb 2015 10:41:52 +0000
- Thread-topic: Can copy or paste in dialogs in Adobe InDesign CS6
Hi there,
wrapping a "tell me“ block around the display dialog fixed the problem
here.
Or better:
I call my own handler askForName(defaultString) from inside tell „Adobe
InDesign“ to escape from the InDesign environment.
tell application „Adobe InDesign“
[...]
set pdfName to askForName(pdfName) of me
[...]
end tell
on askForName(defaultString)
activate
text returned of (display dialog „Please enter file name" default answer
defaultString buttons {"OK"} default button "OK")
end askForName
When showing the dialog this way copy’n’paste is no problem!
Cheers,
Michael
*I think my Applescript is better than my English*
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/archives/applescript-users
This email sent to email@hidden