is there a way to create a custom dialog box that updates two separate variables for username and password. Currently I have this snippet in my script
<AMVARIABLE NAME="user" />
<AMVARIABLE NAME="Password" />
<AMSHOWDIALOG ACTIVITY="input" MESSAGE="User name" RESULTVARIABLE="user" WINDOWTITLE="Input" />
<AMSHOWDIALOG ACTIVITY="input" MESSAGE="Password" RESULTVARIABLE="Password" WINDOWTITLE="Input" />
But what i am trying to do is have one dialog box with two text boxes that are connected to the variables, i know you can create custom dialog boxes but i am not sure if you can connect a text box straight to a variable from them as i have not found that yet.
thank you,