> I have to press command-4 command-5 command-6 command-7 and then my 4 windows
> are back where I want them.  I was wondering, is it possible to trigger
> command keys with apple script?

No osaxen needed. Check the System Events dictionary for "keystroke" and
something like the following should do it:

tell application "this app that I use" -- replace accordingly
    
    activate
    
    tell application "System Events"
        
        keystroke "4" using command down
        keystroke "5" using command down
        keystroke "6" using command down
        keystroke "7" using command down
       
    end tell
    
end tell

HTH,

Bill


-- 
To unsubscribe:                     
<mailto:[EMAIL PROTECTED]>
archives:       
<http://www.mail-archive.com/entourage-talk%40lists.letterrip.com/>
old-archive:       
<http://www.mail-archive.com/entourage-talk%40lists.boingo.com/>

Reply via email to