Search found 25 matches

by sunkara7
Thu Oct 13, 2005 1:50 pm
Forum: Technical / Scripting
Topic: How to capture a button with out mousemove?
Replies: 4
Views: 6804

Thanks for your advice. Here there is a citrix client inside the web based application. so the button is in the citrix cilent. When I search in View System Windows it is showing only the title of the webbased window and is not showing its inside citrix client and also the buttons inside the citrix c...
by sunkara7
Wed Oct 12, 2005 6:20 pm
Forum: Technical / Scripting
Topic: How to capture a button with out mousemove?
Replies: 4
Views: 6804

How to capture a button with out mousemove?

Hi, I am having a problem with the application that I developed using MacroScheduler. The Applicaion that I developed is web based application. So it have the menu like the menu in IE (File, Edit, View, Screens Ect). The Application have a button at the middle of the page. The main aim of the topic ...
by sunkara7
Mon Jul 25, 2005 3:14 pm
Forum: Technical / Scripting
Topic: How to open the script through the exe file?
Replies: 1
Views: 3174

How to open the script through the exe file?

I accidentally deleted the source file i need to make modifications to that source file. But i have exe file for that source file. Could I able to open the source file using the exe file.

Thanks
by sunkara7
Wed Jun 08, 2005 7:13 pm
Forum: Technical / Scripting
Topic: How to change MessageModal caption
Replies: 1
Views: 3364

How to change MessageModal caption

Hi All,

Is it possible to change the MessageModal caption? The default caption is "Macro Scheduler Message".

I would like to use MessageModal instead of creating my own Dialog box.

Thanks
by sunkara7
Wed Jun 01, 2005 5:45 pm
Forum: Technical / Scripting
Topic: How can we open window by giving partial title?
Replies: 3
Views: 6145

How can we open window by giving partial title?

I need to open a web browser window by giving its partial name. for example for the website yahoo the title is

Yahoo! - Microsoft Internet Explorer

My question is can i open the yahoo website by giving only Yahoo!

Thanks
by sunkara7
Thu May 26, 2005 1:19 pm
Forum: Technical / Scripting
Topic: How to kill the active process?
Replies: 8
Views: 11353

That probably won't help because it will just get the PID of the first window that matches the string - so could be any of your three identical processes (assuming they all have the same window title). What distinguishes the process you want to kill from the others? Is it the one in the foreground?...
by sunkara7
Wed May 25, 2005 6:44 pm
Forum: Technical / Scripting
Topic: How to kill the active process?
Replies: 8
Views: 11353

Use GetWindowProcess to get the process ID of the window. See help file topic "GetWindowProcess". I am really bad in coding. Could you please help in the following code in order to kill the process using the processid GetWindowProcess>Customer Care Desktop*,pid,name VBSTART Sub killProcess(pgm) set...
by sunkara7
Wed May 25, 2005 4:38 pm
Forum: Technical / Scripting
Topic: How to kill the active process?
Replies: 8
Views: 11353

support wrote:If you only want to kill one process you will need to use the process ID not the name - since they all have the same name. Only the PID is unique. E.g:

Select * from Win32_Process Where ProcessID = 2576
But we can not hard code the processid because it'll change when we open new window.
by sunkara7
Wed May 25, 2005 1:18 pm
Forum: Technical / Scripting
Topic: How to kill the active process?
Replies: 8
Views: 11353

support wrote:What do you mean by active process? Aren't they all active?
They are all active. But i want only one process to be killed. How can i modify the code inorder to kill only one process. (the name of the all processes are the same).

Thanks
by sunkara7
Tue May 24, 2005 9:25 pm
Forum: Technical / Scripting
Topic: How to kill the active process?
Replies: 8
Views: 11353

How to kill the active process?

I am trying to kill the process and i used the following code. VBSTART Sub killProcess(pgm) set wmi = getobject("winmgmts:") sQuery = "select * from win32_process " & "where name='" & pgm & "'" set processes = wmi.execquery(sQuery) for each process in processes process.terminate next End Sub VBEND V...
by sunkara7
Tue May 24, 2005 6:28 pm
Forum: Technical / Scripting
Topic: How to open a child window?
Replies: 26
Views: 30175

Try changing the WF_TYPE to 2 and see if that helps. From the Macro Scheduler help for WindowAction: Let>WF_TYPE=0 - No Child Windows Let>WF_TYPE=1 - ALL Windows (Default) Let>WF_TYPE=2 - Visible Windows Only Let>WF_TYPE=3 - Child Windows Only Dick I've tried that one too. But its closing the xxx w...
by sunkara7
Tue May 24, 2005 5:48 pm
Forum: Technical / Scripting
Topic: How to open a child window?
Replies: 26
Views: 30175

Have you tried using the WF_TYPE variable? Setting WF_TYPE to 3 should only close child windows. IfWindowOpen>xxx,xclose,xopen Label>xclose Let>WF_TYPE=3 WindowAction>3,xxx When i tried the above code i am getting the following Macro Scheduler warning 'Specified Window "Parent Window of XXX" Not Pr...
by sunkara7
Tue May 24, 2005 5:03 pm
Forum: Technical / Scripting
Topic: How to open a child window?
Replies: 26
Views: 30175

Am I misunderstanding or is there an application window that has a number of windows open within it? Something like having multiple document files open in Word. Is there a "Window" menu item that might contain a list of open windows within the xxx application window? Will Alt + F4 close those windo...
by sunkara7
Tue May 24, 2005 4:06 pm
Forum: Technical / Scripting
Topic: How to open a child window?
Replies: 26
Views: 30175

Have you tried searching the forum for an answer. Closing a specific window from multiple windows with the same name is not a simple task. When you close the xxx window and get error messages, are you doing any damage to your data or are they just simple warnings that you have performed illegal ope...
by sunkara7
Tue May 24, 2005 2:43 pm
Forum: Technical / Scripting
Topic: How to open a child window?
Replies: 26
Views: 30175

s
Sign up to our newsletter for free automation tips, tricks & discounts