| Author |
Message |
Topic: Re: RegExMatch, Why is it not finding all the subpatterns? |
sinkfaze
Replies: 2
Views: 20
|
Forum: Ask for Help Posted: Sat Mar 20, 2010 6:33 pm Subject: Re: RegExMatch, Why is it not finding all the subpatterns? |
You're not capturing subpatterns because you didn't specify any to capture. Parenthesis () specify subpatterns:
var := "The quick brown fox jumps over the lazy dog."
RegExMatch( ... |
Topic: Calling A Running Process |
sinkfaze
Replies: 24
Views: 146
|
Forum: Ask for Help Posted: Fri Mar 19, 2010 10:39 pm Subject: Calling A Running Process |
I think what TLM meant was this:
ButtonCheck:
Gui, Submit, NoHide
Clipboard = %words%
Run, C:\Users\%username%\Hotkeys\bin\spell.vbs
winwait, ahk_class bosa_sdm_msword
winget, s ... |
Topic: Unknown Element: UltraWebMenu |
sinkfaze
Replies: 22
Views: 230
|
Forum: Ask for Help Posted: Fri Mar 19, 2010 10:36 pm Subject: Unknown Element: UltraWebMenu |
The menu item makes a change to one of the tickets fields. Its the only way to make this change.
The UltraWebMenu, as I'm reading it from Infragistics, may have some more complexities in execution ... |
Topic: Can you get an elements index number from innertext? |
sinkfaze
Replies: 3
Views: 62
|
Forum: Ask for Help Posted: Fri Mar 19, 2010 9:48 pm Subject: Can you get an elements index number from innertext? |
I think there must be a better way of getting the data but the long road would be this (using the current thread):
iWeb_Init()
pwb:=iWeb_getWin("Can you get an elements index ... |
Topic: Unknown Element: UltraWebMenu |
sinkfaze
Replies: 22
Views: 230
|
Forum: Ask for Help Posted: Fri Mar 19, 2010 9:09 pm Subject: Unknown Element: UltraWebMenu |
| What should happen when you click the link? |
Topic: Calling A Running Process |
sinkfaze
Replies: 24
Views: 146
|
Forum: Ask for Help Posted: Fri Mar 19, 2010 8:38 pm Subject: Calling A Running Process |
Does this return anything when spellcheck is running?
WinGet, procID, PID, ahk_class bosa_sdm_msword
MsgBox % procID |
Topic: why does my alpha numeric variable paste 0)))%(!*)d01? |
sinkfaze
Replies: 7
Views: 99
|
Forum: Ask for Help Posted: Fri Mar 19, 2010 6:12 pm Subject: why does my alpha numeric variable paste 0)))%(!*)d01? |
Sinkfaze, if I am understanding this correctly, essentially your addition to the code tells the program to watch for these characters, and if it sees them, to resend the variable.
What my addition ... |
Topic: COM Invoke Problem |
sinkfaze
Replies: 23
Views: 240
|
Forum: Ask for Help Posted: Fri Mar 19, 2010 6:03 pm Subject: COM Invoke Problem |
| Well we're trying to accomplish how to get the COM script working for Murx using Windows Messenger. Sean hypothesized that Communicator superseded Windows Messenger in such a way that it would not co ... |
Topic: COM Invoke Problem |
sinkfaze
Replies: 23
Views: 240
|
Forum: Ask for Help Posted: Fri Mar 19, 2010 5:37 pm Subject: COM Invoke Problem |
I'm really sorry if I'm not helping out at all here guys.
Actually running that is very helpful since it proves to a point that Communicator is not (or should not be) interfering with Windows Messe ... |
Topic: COM Invoke Problem |
sinkfaze
Replies: 23
Views: 240
|
Forum: Ask for Help Posted: Fri Mar 19, 2010 5:23 pm Subject: COM Invoke Problem |
COM_Invoke(msn...
msn in this instance is just a variable containing the object reference, so that doesn't really affect anything. What may affect things is trying to retrieve a reference to a ... |
Topic: why does my alpha numeric variable paste 0)))%(!*)d01? |
sinkfaze
Replies: 7
Views: 99
|
Forum: Ask for Help Posted: Fri Mar 19, 2010 3:38 pm Subject: why does my alpha numeric variable paste 0)))%(!*)d01? |
You probably just need to replace the errant characters before they're sent:
#SingleInstance force
SetTitleMatchMode, 2
IfWinNotExist, SAI Desktop Vault
{
MsgBox, Please sign into the ... |
Topic: No AHK at work?? |
sinkfaze
Replies: 3
Views: 92
|
Forum: General Chat Posted: Fri Mar 19, 2010 3:05 pm Subject: No AHK at work?? |
| Been there, done that; tank's been there, too. Two things you have to know: 1) Companies mostly care only about the bottom line, whatever makes them or saves them money is the way to go, 2) IT people ... |
Topic: COM Invoke Problem |
sinkfaze
Replies: 23
Views: 240
|
Forum: Ask for Help Posted: Fri Mar 19, 2010 7:33 am Subject: COM Invoke Problem |
You've got some of the right parts anyway:
#Include COM.ahk
stat = 4
COM_Init()
Msn := COM_CreateObject("Messenger.UIAutomation.1","",stat)
COM_Invoke& ... |
Topic: set global variables from functions |
sinkfaze
Replies: 2
Views: 48
|
Forum: Ask for Help Posted: Thu Mar 18, 2010 9:42 pm Subject: set global variables from functions |
| Specifying the two variables as global in one function has no bearing on how the other function treats those variables. It cannot access them unless 1) the variables are passed to the function, or 2) ... |
Topic: ComboBox List - Setting Value |
sinkfaze
Replies: 14
Views: 161
|
Forum: Ask for Help Posted: Thu Mar 18, 2010 9:33 pm Subject: ComboBox List - Setting Value |
colorList=
(Join
aqua|black|blue|fuchsia|gray|green
|lime|maroon|navy|olive|purple|red
|silver|teal|white|yellow
)
Gui ,2: Add,Text, xm Section w80, Name:
Gui ,2: Ad ... |
| |