--- In [email protected], "John Morse" <[EMAIL PROTECTED]> wrote: > Made a script named wordweb2.powerpro > with this > > ; Lookup word in wordweb from a button > wait.for(100) > Clip.Copy > Do(?"C:\Program Files\WordWeb\wwnotray.exe") > QUIT > > It worked twice, then would only look up the preceding word.
Try putting the wait after the copy and before the do. clip.copy just puts ctrl-c in the keyboard input buffer for the next program that is ready for input. Putting the wait after the ctrl c means that Powerpro pauses before launching a new active window. This gives a chance for the currently active program to see the ctrl-c that clip.copy puts in the keyboard input buffer. Attention: PowerPro's Web site has moved: http://www.ppro.org Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/power-pro/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
