Automating Mouse Movement
Hey all,
I am stuck with how to automate user mouse actions. I need to click a button "One Time" but it requires the user to mouse over controls for it to become visible. I have tried using the focus method but it still requires a manual mouse over each control to work.
I'm hoping there way to automate this process? Especially if there is a way to click it directly or redirect the mouse position in a script.
Thanks



Hey all,
I wasn't able to update my progress yesterday with the Collaboration Center being down. I have solved this issue though! An associate of mine suggested the arrow keys which I am using in a C# script component to great success.
The script is as simple as:
SendKeys.SendWait("{DOWN}");
SendKeys.SendWait("{RIGHT}");
Thanks to everyone who responded!