> *Clip
> Copy
> Do("C:\Program Files\WordWeb\wwnotray.exe")

It seems most likely that PowerPro is trying to run:
C:ProgramFilesWordWebwwnotray.exe

because of escape characters. Adding a simple ? before the first quote 
should fix the problem.

Clip.copy()
do(?"C:\Program Files\WordWeb\wwnotray.exe")

Other posts mentioned a possible focus issue when running from a button. 
You could try the following two lines if the above doesn't work:

Win.keys(?"^c")
do(?"C:\Program Files\WordWeb\wwnotray.exe")

The Win.keys() command will ensure that the previous window has focus 
again after the button is clicked, but you'll need to change ^c if that 
doesn't copy.

-- 

Regards,
Alex Peters



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/
 


Reply via email to