| Author |
Message |
Topic: xpath v3 - read and write XML documents with XPath syntax |
Predated
Replies: 355
Views: 26529
|
Forum: Scripts & Functions Posted: Sun Feb 03, 2008 9:28 pm Subject: xpath v3 - read and write XML documents with XPath syntax |
Maybe there is something else that causes conflict under certain conditions, i.e. running tidy twice.
If I change the Run command to RunWait, it seems to work every time - I hadn't thought about th ... |
Topic: xpath v3 - read and write XML documents with XPath syntax |
Predated
Replies: 355
Views: 26529
|
Forum: Scripts & Functions Posted: Sun Feb 03, 2008 8:32 pm Subject: xpath v3 - read and write XML documents with XPath syntax |
I'm confused here...
I'm looping through (severely malformed) html files and using tidy to create valid xml files. Once that's done, I need to add 1 style definition. The first loop below does the ... |
Topic: IE Control Window greyed out after minimize |
Predated
Replies: 10
Views: 458
|
Forum: Ask for Help Posted: Fri Jan 25, 2008 9:52 pm Subject: IE Control Window greyed out after minimize |
i am not willing to run your code to see what needs to be done
is my code that bad? lol
On a whim, I removed the anchor section, and it works fine. Actually, if I just commented out the line to ... |
Topic: IE Control Window greyed out after minimize |
Predated
Replies: 10
Views: 458
|
Forum: Ask for Help Posted: Fri Jan 25, 2008 9:32 pm Subject: IE Control Window greyed out after minimize |
;Begin actual GUI
GoSub GuiOpen ;Run the GuiOpen subroutine
Gui +Resize +LastFound +0x2000000
Missed your other response, sorry.
It's actually still doing the same thing  |
Topic: IE Control Window greyed out after minimize |
Predated
Replies: 10
Views: 458
|
Forum: Ask for Help Posted: Fri Jan 25, 2008 9:29 pm Subject: IE Control Window greyed out after minimize |
According to the help file, WS_CLIPSIBLINGS is forced for GUI windows.
Though what you're saying makes sense. |
Topic: IE Control Window greyed out after minimize |
Predated
Replies: 10
Views: 458
|
Forum: Ask for Help Posted: Fri Jan 25, 2008 8:56 pm Subject: IE Control Window greyed out after minimize |
Gui -0x20000
for some reason won't allow the IE control to resize  |
Topic: IE Control Window greyed out after minimize |
Predated
Replies: 10
Views: 458
|
Forum: Ask for Help Posted: Fri Jan 25, 2008 8:50 pm Subject: IE Control Window greyed out after minimize |
I added the line in the position shown below, as well as a couple of other places, in experimentation. There was no change.
Gui add, StatusBar, vStatusBar, Ready to read files.
Gui ... |
Topic: IE Control Window greyed out after minimize |
Predated
Replies: 10
Views: 458
|
Forum: Ask for Help Posted: Fri Jan 25, 2008 2:58 pm Subject: IE Control Window greyed out after minimize |
This is driving me nuts!
I have a log reader that works just fine unless you minimize to the taskbar. When you restore it, the IE Control is greyed out, and it will not respond to anything. My c ... |
Topic: Stuck on moving folder contents based on string contents |
Predated
Replies: 5
Views: 218
|
Forum: Ask for Help Posted: Tue Jan 22, 2008 5:25 pm Subject: Stuck on moving folder contents based on string contents |
Got a chance to come back to this, thanks Murple
blist = %A_AppData%\.purple\blist.xml
accnt = %A_AppData%\.purple\accounts.xml
xpath_load(b, blist) ;load blist.xml
xpath_load(a ... |
Topic: Help needed with IE control in 'dynamic' tabs |
Predated
Replies: 0
Views: 120
|
Forum: Ask for Help Posted: Mon Jan 21, 2008 6:20 pm Subject: Help needed with IE control in 'dynamic' tabs |
I guess first I need more help with dynamically generating tabs.
I have a ListView that is in a tab control. When I populate the Listview, and double click on it's contents, I want to create a new ... |
Topic: Creating a boolean search function |
Predated
Replies: 5
Views: 288
|
Forum: Ask for Help Posted: Mon Jan 21, 2008 3:28 pm Subject: Creating a boolean search function |
| I had a typo in my last code post, the following function has been working so far. I'm confident that this could probably be done with a regex to match the 2 variables and not worry about anything in ... |
Topic: Creating a boolean search function |
Predated
Replies: 5
Views: 288
|
Forum: Ask for Help Posted: Sun Jan 20, 2008 11:48 pm Subject: Creating a boolean search function |
| Actually, for some reason, the "and" section isn't working quite like it should. It gets some, but not all the results. |
Topic: Creating a boolean search function |
Predated
Replies: 5
Views: 288
|
Forum: Ask for Help Posted: Sun Jan 20, 2008 9:08 pm Subject: Creating a boolean search function |
| It's been a couple days since I could come back to this, but taking lexikos' response into consideration, this is what I came up with. It certainly works for the data I'm testing it with, but I welcom ... |
Topic: Moving a line of text from one .txt file to another |
Predated
Replies: 4
Views: 288
|
Forum: Ask for Help Posted: Fri Jan 18, 2008 12:22 am Subject: Moving a line of text from one .txt file to another |
Loop read, name_of_source_file.ext, name_of_dest_file.ext
{
FileAppend %A_LoopReadLine%`n
}
the delete bit I have a couple ideas on how to pull off, but nothing elegant, perhap ... |
Topic: IniRead question |
Predated
Replies: 6
Views: 452
|
Forum: Ask for Help Posted: Thu Jan 17, 2008 4:51 pm Subject: IniRead question |
Check to see if the variable exists before you write it to the INI file.
ButtonOK:
Gui, Submit
If(NewHotKey)
{
IniWrite, %NewHotKey%, pref.ini, Preferences, ... |
| |