I'm new to applescript and am currently stuck in a prompt asking for a password.
I am creating a launcher for my daily use application and I want to automate the startup process.
Right now I only run two applications - VirtualHostX and MAMP. Later I could add a little.
Here is what I have done so far:
tell application "VirtualHostX" to activate tell application "MAMP" to activate tell application "System Events" tell process "VirtualHostX" tell menu bar 1 tell menu bar item "Web Server" tell menu 1 click menu item "Start" end tell end tell end tell end tell end tell
When launched, it will launch two applications successfully, but Virtual Host will ask me for a password for authorization. I want to integrate my password input into a stream or code. I already tried to answer on Google, but did not find a solution for it.
I canβt target this window and enter my password. 
Let me know what I am missing.
Thanks.
source share