| Author |
Message |
Topic: Star-rating migration between two xml's |
ih57452
Replies: 7
Views: 235
|
Forum: Ask for Help Posted: Sun Aug 07, 2011 3:35 am Subject: Star-rating migration between two xml's |
You wouldn't happen to know any documentation covering this with extensive explanations, like a tutorial or something?
The best resource I can find is the for programme in x1.selectNodes("/t ... |
Topic: Increment last modified |
ih57452
Replies: 4
Views: 133
|
Forum: Ask for Help Posted: Fri Aug 05, 2011 10:26 pm Subject: Increment last modified |
I don't know why "-=" isn't supported for doing that, but you can add a negative number to effectively subtract.
n += -1, Minutes |
Topic: How to determine the correct title to run an application |
ih57452
Replies: 3
Views: 146
|
Forum: Ask for Help Posted: Fri Aug 05, 2011 1:17 am Subject: How to determine the correct title to run an application |
Run, chrome.exe "http://www.google.com" ;pass a url as a parameter to launch it in an existing window
Run, chrome.exe "http://www.autohotkey.com"
WinWait, ahk_class Chrom ... |
Topic: Need Help With Stop Button |
ih57452
Replies: 2
Views: 206
|
Forum: Ask for Help Posted: Thu Aug 04, 2011 12:29 pm Subject: Need Help With Stop Button |
You should use #SingleInstance Force
Gui, Add, Text, x2 y2 w240 h30 , Upon pressing start a timer will appear and you will be reminded to open your box every hour.
Gui, Add, Button, x2 y52 w80 h30 v ... |
Topic: COM registry class (both 32 and 64 bit access) |
ih57452
Replies: 0
Views: 513
|
Forum: Scripts & Functions Posted: Mon Aug 01, 2011 12:52 am Subject: COM registry class (both 32 and 64 bit access) |
I had been looking for a project to write so that I could learn how to use COM objects, and after reading
#Include <Registry>
reg := new Registry
reg.mode := 32 ;32 or 64 bit mode ... |
Topic: [SOLVED!!]Fade out old text and fade in new text GuiControl? |
ih57452
Replies: 11
Views: 324
|
Forum: Ask for Help Posted: Sat Jul 30, 2011 11:15 pm Subject: [SOLVED!!]Fade out old text and fade in new text GuiControl? |
| I took your code and pasted my new class into it and I thought I had found the problem, but I didn't realize you had renamed it from Text_fader to TextFader. After I renamed the class, it worked. |
Topic: Conditional #SingleInstance Force |
ih57452
Replies: 10
Views: 487
|
Forum: Ask for Help Posted: Sat Jul 30, 2011 5:47 pm Subject: Conditional #SingleInstance Force |
You could use a lockfile (or in this example a lockregistry):
#SingleInstance Off
#Persistent
has_params = %0%
if (!has_params)
{
RegRead, is_running, HKCU, Software\SingleInstanc ... |
Topic: [SOLVED!!]Fade out old text and fade in new text GuiControl? |
ih57452
Replies: 11
Views: 324
|
Forum: Ask for Help Posted: Sat Jul 30, 2011 3:58 pm Subject: [SOLVED!!]Fade out old text and fade in new text GuiControl? |
Now it should work with any number of controls at the same time. The only difference is now you have to pass the control variable name to the function as a string.
Fade.in("Channel", &q ... |
Topic: [SOLVED!!]Fade out old text and fade in new text GuiControl? |
ih57452
Replies: 11
Views: 324
|
Forum: Ask for Help Posted: Sat Jul 30, 2011 2:09 pm Subject: [SOLVED!!]Fade out old text and fade in new text GuiControl? |
I modified it to work on multiple controls at the same time. Now you should be able to use:
Fade.in(Channel, "Power On", ChannelTitle, "Welcome to Aaron's YouTube Television", ... |
Topic: [SOLVED!!]Fade out old text and fade in new text GuiControl? |
ih57452
Replies: 11
Views: 324
|
Forum: Ask for Help Posted: Fri Jul 29, 2011 2:23 am Subject: [SOLVED!!]Fade out old text and fade in new text GuiControl? |
| I just wrote this and I've never actually used it before. One thing that I found that could make it not fade is if you don't create a new Color object for the fade_color at the top of the script. I tr ... |
Topic: Reading XML tags.. |
ih57452
Replies: 3
Views: 176
|
Forum: Ask for Help Posted: Wed Jul 27, 2011 8:07 pm Subject: Reading XML tags.. |
With AHK_L, you can use xmldata =
(
<?xml version="1.0"?>
<document>
<Summary>Test1</Summary>
<Summary>Test2</Summary>
<Summary>Test ... |
Topic: check for 64bit using 64bit AHK |
ih57452
Replies: 14
Views: 364
|
Forum: Ask for Help Posted: Wed Jul 27, 2011 6:00 pm Subject: check for 64bit using 64bit AHK |
This should give you either "32-bit" or "64-bit", depending on the version of Windows installed (but I can't test it on 64-bit):
for obj in ComObjGet("winmgmts:\\.\ro ... |
Topic: I don't understand HotKey command with Toggle |
ih57452
Replies: 4
Views: 143
|
Forum: Ask for Help Posted: Wed Jul 27, 2011 11:40 am Subject: I don't understand HotKey command with Toggle |
To toggle a hotkey with the Hotkey command, the hotkey has to be defined with the Hotkey command:
Hotkey, j, label_j
Hotkey, l, label_l
return
label_j:
Send, {Left}
return
lab ... |
Topic: [SOLVED!!]Fade out old text and fade in new text GuiControl? |
ih57452
Replies: 11
Views: 324
|
Forum: Ask for Help Posted: Wed Jul 27, 2011 11:14 am Subject: [SOLVED!!]Fade out old text and fade in new text GuiControl? |
This sort of flickers sometimes, but it works:
background_color := new Color(0xf0f0f0)
text_color := new Color(0x000000)
fade_color := new Color
text1 := "Orig ... |
Topic: Star-rating migration between two xml's |
ih57452
Replies: 7
Views: 235
|
Forum: Ask for Help Posted: Tue Jul 26, 2011 1:14 am Subject: Star-rating migration between two xml's |
This seems to work:
xml1 =
(
<?xml version="1.0" encoding="UTF-8"?>
<tv generator-info-name="WebGrab+Plus">
<channel id="Kanal 5">
... |
| |