Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'AppleScript solution' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
AppleScript solution
Authored by: robg on Dec 01, '05 06:00:30AM
This was sent as an anonymous submission, so I'm publishing it as a comment here...

=====

For those who don't like or don't want to use terminal, here is an applescript that will let you adjust Cocoa drag delay times:

set dragWaitTime to (text returned of (display dialog "What delay time, in miliseconds, do you want for text dragging?" default answer "1000"))
set dragWaitCommand to "defaults write -g NSDragAndDropTextDelay -int " & dragWaitTime
do shell script dragWaitCommand

=====

I haven't tested the script...

-rob.

[ Reply to This | # ]