BTW StringMatch allows to make (by one wild cards pattern) something from topics early discussed here. - find file by it's filename extension. eg AutoIt script...
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the AutoItList group. File :...
AutoItList@yahoogroup...
Oct 2, 2006 8:12 am
30332
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the AutoItList group. File :...
AutoItList@yahoogroup...
Oct 2, 2006 8:14 am
30333
Hi, It is fixed and has function test_StringMatch() with 216 (6x6x6) patterns to check it. Bug notes are very appreciated. BTW ? denotes (.) with \n in terms...
Hello again! I'm having a problem sending passwords that were obtained from an InputBox. The passwords can, and do, contain special characters like !, #, &,...
I believe that using the optional flag to specify raw mode - Send($The_Password, 1) - will resolve your issue. From the help file: "Note, by setting the flag...
That worked -- with a little tweaking. Here's what I had to do: Send($The_UserID & "{TAB}") Send($The_Password,1) Send("{TAB}Sitename{ENTER}") If I left...
You could break it into pieces and use the second argument to Send to stop interpreting the special chars for the password: Send($The_UserID & "{TAB}") ...
AutoItScript forum has one fast growing thread, now: http://www.autoitscript.com/forum/index.php?showtopic=33323 These known words can be useful, I think: Some...
Hi. My name is Jodie and I've been on the list for about a week. Sorry about the subject line; I couldn't think of a way to make it makes sense. I belong to a...
Jodie and Tiger
sufficientlytwisted@...
Oct 4, 2006 1:53 pm
30344
... Hello Jodie ... There is an include named ie.au3. It has the ability to interact directly with Internet Explorer web elements. The IECreate function can...
Thanks Larry. The web site is below. http://www.fanfiction.net Hugs from Jodie and kisses from Tiger. ... "Belief is the cradle of myth." Stephen King ... ...
Jodie and Tiger
sufficientlytwisted@...
Oct 5, 2006 1:36 am
30346
Hi. Obviously I'm doing something wrong here, but I can't figure out what. I was using a method before that confused me and hotkeyset seems much less...
... Showing necessary structure... Global $bIntroSkip = False HotKeySet("{enter}", "SkipIntro") While $voice.Playing = true If $bIntroSkip Then $voice.Stop() ...
Thanks Larry; it worked, and I am using com audio if that's what you meant by your question. $deviced.opensound = intro.wav. The reason I'm using com audio is...
Jodie and Tiger
sufficientlytwisted@...
Oct 5, 2006 7:14 pm
30351
Hi, IMHO found a simple way to make speaking interface. It rewritten from my lvedit script: ;================================================= ; lvEdit -...
1. small bug: $ttY = $ttSize[0] should be replaced to $ttY = $ttSize[1] 2. I'm looking for classname of default tooltip window, too. My trials to use...
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the AutoItList group. File :...
AutoItList@yahoogroup...
Oct 11, 2006 7:38 am
30356
Hi, AutoIt Speaking Keyboard (ASK) uses SAPI speaker which is trying to speak tooltips of keyboard buttons. The names of buttons are placed into variables like...
Important note: ASK will work more stable when you uncomment line #329: Now it is WinClose($hTT) Must be ; WinClose($hTT) But you will hear button names two...
Hi. I'm trying to make a less complicated library than I have using hotkeyset, but I can't seem to get it to work. From this code, could someone help me figure...