Jump to content

talgreen

Members
  • Posts

    5
  • Joined

  • Last visited

Everything posted by talgreen

  1. Hi, Is there a way to get the transparent value of a window? I want to create a hot key that toggle the transparency of the active window. When clicking the hot key, I want to check the transparency state of the window in order to know if I need to make it transparent or make it opaque. I guess I need the function WinGetTrans, but there isnt one Is there any way to do it? Thanks, Tal.
  2. Hi, But I think that this folder also contains the cookies, doesnt it? Tal.
  3. Hi, Im trying to create a script to clear the cache of IE ver.6 , by choosing Tools -> Internet Options and then clicking on Delete Files button. Here is the code I wrote: Run ( "C:\Program Files\Internet Explorer\IEXPLORE.EXE about:blank") WinWaitActive("about:blank - Microsoft Internet Explorer") ControlSend("about:blank - Microsoft Internet Explorer","","ToolbarWindow324","!to!f") WinWaitActive("Internet Options") ControlClick("Internet Options", "", "Button7") WinWaitActive("Delete Files") ControlCommand("Delete Files","", "Button1", "Check") sleep(100) ControlClick("Delete Files", "", "Button2") WinWaitActive("Internet Options") ControlClick("Internet Options", "", "Button15") WinWaitActive("about:blank - Microsoft Internet Explorer") WinClose("about:blank - Microsoft Internet Explorer") The thing is that this script some times does not work, and some time other menu items are pressed. Is there any other robust way of doing this? Thanks, Tal.
  4. Hi, I would like to open several Internet Explorers by using _IECreate, but I would like each of them to be its own process. When I use the following code, I get only one iexplore.exe process: #include <IE.au3> For $i = 0 to $num -1 $objHomePage = _IECreate ("http://ws-pinskera:8080/AjaxTest/Client.htm") $objButton = _IEGetObjById($objHomePage, "callerButton") Sleep(2000) $res = _IEAction($objButton, "click") Next Is there any way to do this? Thank you, Tal.
×
×
  • Create New...