Jump to content

xerxes717

Members
  • Posts

    6
  • Joined

  • Last visited

xerxes717's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Bump to see if anyone had any ideas. Thanks in advance!
  2. Thanks for this great work guys! I have a question though: Is there way to add more than 1 file using * as a masking char with _ZipAdd? ie let's say there are 100 files like file01.txt, file02.txt, file03.txt ... file100.txt. If i set $SrcFile = "C:\ziptest\Files\file*.txt", it doesn't add any files to the zip file. Also, the same folder contains many other files (other than the text files in question) so I don't want the entire folder zipped either. Any ideas?
  3. Meant to say I hope I understood your question correctly heh.
  4. Do you mean that you want to not open an IE window? If so, you can do this in 2 ways: 1. One is to actually open an IE window but make it invisible. To do this - set the visible flag in _IECreate to 0 as follows: $oIE = _IECreate ("http://www.kingsofchaos.com",0,0) This will create a window and an iexplore process in Windows but the window will just be invisible to you. 2. Maybe look into _IECreateEmbedded in the help file? I hope I understood your correction correctly but I'm a total n00b at this myself.
  5. I think i figured out the solution myself - I had set the window to finish loading before setting the text field and for some reason the script never figured out when the page had finished loading. That's why it never went any further in the script. When I changed the _IECreate function to not wait to load, the text field starting being set correctly. Thanks.
  6. Hi all, this is my first post here and I have a really basic question: How can I set the value of a text field inside a form in IE when the form doesn't have a name? Let's say the text field whose value I'm trying to set it is called "textField". My code is as follows: #include <IE.au3> $oIE = _IECreate("http://www.something.com",0,1,1,0) $oForm = _IEGetObjByName($oIE, "textField") $oForm.value = "Set this text in the text field" _IEFormSubmit ($oForm) What am I doing wrong? This code just opens the browser with the correct URL and then appears to hang (the script appears to still be running, or paused rather as indicated by the Autoit icon in the system tray). Thanks in advance! PS - I'm using IE7, Autoit Beta and Scite
×
×
  • Create New...