| Author |
Message |
Topic: Excel Macro for Copy and Paste Looping |
Hasso
Replies: 2
Views: 84
|
Forum: Ask for Help Posted: Mon Sep 01, 2008 12:10 pm Subject: Excel Macro for Copy and Paste Looping |
Chris,
this could be easily done with a small VBA script in Excel itself (without AHK):Sub values()
i = 2
j = 2
id = Worksheets("BETA").Cells(1, 1) 'Put yo ... |
Topic: xpath v3 - read and write XML documents with XPath syntax |
Hasso
Replies: 314
Views: 21730
|
Forum: Scripts & Functions Posted: Tue Aug 26, 2008 1:25 pm Subject: xpath v3 - read and write XML documents with XPath syntax |
| Thank you Titan, that did it! |
Topic: xpath v3 - read and write XML documents with XPath syntax |
Hasso
Replies: 314
Views: 21730
|
Forum: Scripts & Functions Posted: Tue Aug 26, 2008 11:53 am Subject: xpath v3 - read and write XML documents with XPath syntax |
Hi,
I'm still struggling with parsing an XML file.
This is part of the file:<?xml version="1.0" encoding="utf-8" standalone="no"?>
<!DOCTYPE site PUBLIC &qu ... |
Topic: Please help resolving xpath error. |
Hasso
Replies: 4
Views: 117
|
Forum: Ask for Help Posted: Tue Aug 26, 2008 11:14 am Subject: Please help resolving xpath error. |
| I got a similar error and added a space between xpath_load ( and the opening bracket - then it was accepted! |
Topic: help: mouse reliability |
Hasso
Replies: 4
Views: 76
|
Forum: Ask for Help Posted: Mon Aug 25, 2008 1:46 pm Subject: help: mouse reliability |
TrySend, {F10}{RIGHT}{DOWN}{UP 3}{RIGHT}{DOWN 2}{ENTER}Explanation:
F10 activates the menu bar
RIGHT activates the first m ... |
Topic: Keyboard Shortcut in Firefox |
Hasso
Replies: 5
Views: 115
|
Forum: Ask for Help Posted: Mon Aug 25, 2008 12:26 pm Subject: Keyboard Shortcut in Firefox |
#IfWinActive, Firefox
~^t::
sleep, 500
send, !swww.myhomepage.com{ENTER} ;insert URL of your homepage here
return
#IfWinActive
Tested. |
Topic: quick regexmatch question |
Hasso
Replies: 4
Views: 144
|
Forum: Ask for Help Posted: Mon Aug 25, 2008 10:56 am Subject: quick regexmatch question |
Couldn't it be done without RegEx by simply adding a line to Serenity's script?string := " trailing spaces "
msgbox "%string%"
string = %string% ... |
Topic: Need Help with Clicks |
Hasso
Replies: 4
Views: 146
|
Forum: Ask for Help Posted: Mon Aug 25, 2008 10:32 am Subject: Need Help with Clicks |
Did you try SetTitleMatchMode, 2at the very begining of your Script?
In your script the windows title has exactly to be Microsoft Access - but I think that there is the name of a database too in it. ... |
Topic: universal "go up" in browser |
Hasso
Replies: 8
Views: 206
|
Forum: Ask for Help Posted: Mon Aug 25, 2008 10:12 am Subject: universal "go up" in browser |
Ok. What about go up to the folder which contains the current in Windows Explorer?
I repeat: Use Backspace. |
Topic: Cannot paste a variable, why? |
Hasso
Replies: 11
Views: 164
|
Forum: Ask for Help Posted: Mon Aug 25, 2008 10:09 am Subject: Cannot paste a variable, why? |
WinActivate New Text Document.txt
Send, %Initials%
Shouldn't you insertWinActivate New Text Document.txt
WinWaitActive, New Text Document.txt
Send, %Initials% |
Topic: universal "go up" in browser |
Hasso
Replies: 8
Views: 206
|
Forum: Ask for Help Posted: Mon Aug 25, 2008 9:05 am Subject: universal "go up" in browser |
| Use Backspace. |
Topic: Hotkey with regex |
Hasso
Replies: 8
Views: 135
|
Forum: Ask for Help Posted: Thu Aug 21, 2008 10:52 am Subject: Re: Hotkey with regex |
0001-123456789 and ahk should convert it to 000112345679
I think there is a typo as the "8" has disappeared in the converted number?
Your problem seems rather strange to me - why don't y ... |
Topic: Security of AutoHotkey |
Hasso
Replies: 4
Views: 182
|
Forum: Ask for Help Posted: Mon Jul 28, 2008 10:43 am Subject: Security of AutoHotkey |
I'll never understand why people would cheat in games (except when playing for money or other prizes).
When I play a game I want to compete with an other player or maybe the computer. Cheating is a ... |
Topic: Copy a list from Excel |
Hasso
Replies: 17
Views: 1898
|
Forum: Ask for Help Posted: Mon Jul 28, 2008 10:10 am Subject: Copy a list from Excel |
| I tried to solve the initial problem and ended with the following script (works, if the numbers to copy are in a column with no empty cells between them and the cell containing the first value is acti ... |
Topic: Change destination location on 'Save As...' dialog? |
Hasso
Replies: 10
Views: 334
|
Forum: Ask for Help Posted: Mon Jul 28, 2008 9:01 am Subject: Change destination location on 'Save As...' dialog? |
I think you can't change the destination folder of standard Save As dialog as this destination is different within your applications.
In Excel or Winword you'll have different Save As folders than in ... |
| |