| Author |
Message |
Topic: [Tip or solution] Accents not showing up in msgbox/gui/tips |
Razlin
Replies: 3
Views: 182
|
Forum: Ask for Help Posted: Thu Nov 04, 2010 12:20 pm Subject: [Tip or solution] Accents not showing up in msgbox/gui/tips |
I didnt know where to put this but it took me 2-3 hours to figure it out. Yeah I know.. Sadly.
I use ahk_L Unicode and had message boxes and Gui with accents ie. é
None of the accents where show ... |
Topic: [Solved by hugov] multiline regex from file read. |
Razlin
Replies: 4
Views: 249
|
Forum: Ask for Help Posted: Fri Oct 29, 2010 2:47 pm Subject: [Solved by hugov] multiline regex from file read. |
Thanks Hugov
That did the trick. |
Topic: [Solved by hugov] multiline regex from file read. |
Razlin
Replies: 4
Views: 249
|
Forum: Ask for Help Posted: Thu Oct 28, 2010 7:53 pm Subject: [Solved by hugov] multiline regex from file read. |
m) converts multiline to single lines
Multiline. Views Haystack as a collection of individual lines (if it contains newlines) rather than as a single continuous line. Specifically, it changes the f ... |
Topic: [Solved by hugov] multiline regex from file read. |
Razlin
Replies: 4
Views: 249
|
Forum: Ask for Help Posted: Thu Oct 28, 2010 7:39 pm Subject: [Solved by hugov] multiline regex from file read. |
I'm trying to match a <table....</table> throughout an html document.
FileRead, inputFile, *p65001 %outfile%
FoundPos := RegExMatch(inputfile, "<table(.*?)</t ... |
Topic: [Solved][AHK_L] -The COM Object may not be a valid one!- |
Razlin
Replies: 12
Views: 369
|
Forum: Ask for Help Posted: Thu Oct 21, 2010 4:43 pm Subject: [Solved][AHK_L] -The COM Object may not be a valid one!- |
Thank you all so much for the info. Seriously.. Thank you.
It was indeed the LongPath's which where the entire reason for it not working. Ugh...
Aside from my on stupid error I have learned a lo ... |
Topic: [Solved][AHK_L] -The COM Object may not be a valid one!- |
Razlin
Replies: 12
Views: 369
|
Forum: Ask for Help Posted: Thu Oct 21, 2010 3:20 pm Subject: [Solved][AHK_L] -The COM Object may not be a valid one!- |
I see..
Not sure whats native and whats not in ahk. Thanks for the clarification though.
PS.. where do you get the list of "functions" for objects..
IE.
oWord.SaveAs
oWord.Visib ... |
Topic: [Solved][AHK_L] -The COM Object may not be a valid one!- |
Razlin
Replies: 12
Views: 369
|
Forum: Ask for Help Posted: Thu Oct 21, 2010 1:54 pm Subject: [Solved][AHK_L] -The COM Object may not be a valid one!- |
@Rapte_Of_Suzaku.
you may be on to something..
Using the dllcall I got 2 different results which may be the cause of the errors.
A_workingdir where the same on both occurences
-------------- ... |
Topic: [Solved][AHK_L] -The COM Object may not be a valid one!- |
Razlin
Replies: 12
Views: 369
|
Forum: Ask for Help Posted: Wed Oct 20, 2010 7:21 pm Subject: [Solved][AHK_L] -The COM Object may not be a valid one!- |
Honestly Im not to familiar with com altogether.
and if I need it or not.. I was using ahklearners code for word.
Everything seems to work 100% for my "save as .html" from (word to html) ... |
Topic: [Solved][AHK_L] -The COM Object may not be a valid one!- |
Razlin
Replies: 12
Views: 369
|
Forum: Ask for Help Posted: Wed Oct 20, 2010 7:11 pm Subject: [Solved][AHK_L] -The COM Object may not be a valid one!- |
| Added in top script. |
Topic: [Solved][AHK_L] -The COM Object may not be a valid one!- |
Razlin
Replies: 12
Views: 369
|
Forum: Ask for Help Posted: Wed Oct 20, 2010 6:53 pm Subject: [Solved][AHK_L] -The COM Object may not be a valid one!- |
I do have the latest ahk_l version with the com_l file
Using notepad++ "exec plugging" the script runs fine. IE passing everything in command line.
C:\Program Files\AutoHotkey\AutoHotk ... |
Topic: Beginner yet again trying something but doesnt work. |
Razlin
Replies: 22
Views: 738
|
Forum: Ask for Help Posted: Thu Jul 29, 2010 1:40 pm Subject: timer |
I would read up on help for "settimer" instead of loops.
As per checking to see if your alt r was sent properly by moving mouse and checking window color behind it you could read up on &q ... |
Topic: A mouse script for wow? |
Razlin
Replies: 3
Views: 664
|
Forum: Ask for Help Posted: Wed May 27, 2009 4:57 pm Subject: A mouse script for wow? |
| Try using the search of the forums theres plenty of dual boxing scripts already made |
Topic: Problem with reload command |
Razlin
Replies: 3
Views: 587
|
Forum: Ask for Help Posted: Wed May 27, 2009 4:53 pm Subject: Problem with reload command |
Determines whether a script is allowed to run again when it is already running.
#SingleInstance [force|ignore|off] |
Topic: Good practices with clipboard |
Razlin
Replies: 11
Views: 712
|
Forum: Ask for Help Posted: Wed Jan 28, 2009 5:40 pm Subject: Good practices with clipboard |
1. use code tags
clipboard = ; Start off empty
Send, {CTRLDOWN}c{CTRLUP}
ClipWait, 10 ; Wait 10 s for the clipboard to contain text.
;could be
clipboard = ; Start ... |
Topic: New copy/paste |
Razlin
Replies: 2
Views: 385
|
Forum: Ask for Help Posted: Wed Jan 28, 2009 3:32 pm Subject: New copy/paste |
I think your on the right track
F7::
clipboard = ; Empty the clipboard
Send, ^c
ClipWait, 0.5 ; I think .5 is the smallest (could be wrong though)
StringLen, how_much_co ... |
| |