| Author |
Message |
Topic: How can I get access to the taskbar? |
Paulo
Replies: 3
Views: 212
|
Forum: Ask for Help Posted: Wed Oct 25, 2006 6:18 pm Subject: How can I get access to the taskbar? |
| This topic may help you http://www.autohotkey.com/forum/viewtopic.php?t=5825 |
Topic: Is there a way to REALLY KNOW when a web page is loaded? |
Paulo
Replies: 38
Views: 2652
|
Forum: Ask for Help Posted: Wed Oct 25, 2006 6:10 pm Subject: Is there a way to REALLY KNOW when a web page is loaded? |
Why not userJavascript to add some Onload action in the <body tag?
I am using this one with opera,it changes the title when a page (the body part) is fully loaded.
document.addEventListener(' ... |
Topic: Finding the width/height of a picture |
Paulo
Replies: 13
Views: 976
|
Forum: Ask for Help Posted: Sat Oct 07, 2006 4:49 pm Subject: Finding the width/height of a picture |
You can also use Philho's image functions GetImageDimension(_image)
{
DllCall("GDIplus\GdipGetImageDimension"
, "UInt", _image
, "Float*", w
... |
Topic: Autokey not loading |
Paulo
Replies: 9
Views: 287
|
Forum: Ask for Help Posted: Sat Oct 07, 2006 4:35 pm Subject: Autokey not loading |
Hi,
It is difficult to say anything without your code posted here.
Maybe a "return" or "exit" in the wrong place... |
Topic: IniRead loading default settings incorrectly |
Paulo
Replies: 12
Views: 532
|
Forum: Ask for Help Posted: Wed Aug 02, 2006 12:31 am Subject: IniRead loading default settings incorrectly |
Just a guess..
Maybe "SetWorkingDir, %A_ScriptDir%"?
When something like this happens to me it is because I called the script from another script and forgot to iclude the working dir param ... |
Topic: How to move every file (in a directory) who contain "ÿØ |
Paulo
Replies: 13
Views: 529
|
Forum: Ask for Help Posted: Tue May 09, 2006 1:26 pm Subject: How to move every file (in a directory) who contain "ÿØ |
| I was thinking that maybe jpg is trying to move only specific jpgs and not all jpgs. |
Topic: How to move every file (in a directory) who contain "ÿØ |
Paulo
Replies: 13
Views: 529
|
Forum: Ask for Help Posted: Mon May 08, 2006 5:42 pm Subject: How to move every file (in a directory) who contain "ÿØ |
Hi, jpg
Run this code and you will see that all jpg files starts with the same chars "ÿØÿà"
Loop, SomePath\*.jpg
{
FileReadLine, ?OutputVar, %A_LoopFileLongPath%, 1
msgbox, % ... |
Topic: How to move every file (in a directory) who contain "ÿØ |
Paulo
Replies: 13
Views: 529
|
Forum: Ask for Help Posted: Mon May 08, 2006 3:24 pm Subject: How to move every file (in a directory) who contain "ÿØ |
Ahh...understood now.
Well, you can't read a img file this way with Autohotkey.
You may try a search for "read binary files". |
Topic: How to move every file (in a directory) who contain "ÿØ |
Paulo
Replies: 13
Views: 529
|
Forum: Ask for Help Posted: Mon May 08, 2006 2:55 pm Subject: How to move every file (in a directory) who contain "ÿØ |
Hi,
The right command is "Loop, FilePattern" not "Loop, Read..."
Loop, D:\files\*.*
{
IfInString, A_LoopFileLongPath, ÿØÿà
FileMove, ...
} |
Topic: code please |
Paulo
Replies: 17
Views: 857
|
Forum: Ask for Help Posted: Mon May 08, 2006 2:49 pm Subject: code please |
If your OS is winXP,there is a command line line utilitie called DiskPart,with Diskpart you can manage your disks and partitions easily.
Run it from CMD prompt and type -? to see yhe options.
Sorry ... |
Topic: Listview problem |
Paulo
Replies: 3
Views: 474
|
Forum: Ask for Help Posted: Sun May 07, 2006 3:47 pm Subject: Listview problem |
| You may try ListBox controls and not 2 listViews,or a second gui inside the first (look for "child|parent windows" in this forum) if for some reason you really want listviews. |
Topic: Listview problem |
Paulo
Replies: 3
Views: 474
|
Forum: Ask for Help Posted: Sat May 06, 2006 1:53 pm Subject: Listview problem |
Hi, wibumba
You are tryng to mix two guis in one,using "gui," and "gui, 2:" to mount only one gui. |
Topic: Problem with Loop with PixelGetColor |
Paulo
Replies: 6
Views: 332
|
Forum: Ask for Help Posted: Sun Apr 30, 2006 5:31 pm Subject: Problem with Loop with PixelGetColor |
Hi,
i wanna check from coord 100, 100
id it has pixel 0x000000 & 0x100000...
if one of them there, the command will break...
take a look at "if var (not) contains|in matchlist" in ... |
Topic: Problem with Loop with PixelGetColor |
Paulo
Replies: 6
Views: 332
|
Forum: Ask for Help Posted: Sun Apr 30, 2006 5:15 pm Subject: Problem with Loop with PixelGetColor |
Hi,
If Color = 0x000000 -> change to what???
If Color <> 0x000000 or If Color != 0x000000
edit:
sorry , I didn't notice you want to work only with 100,100 coords |
Topic: GUI in Functions? HELP! |
Paulo
Replies: 5
Views: 327
|
Forum: Ask for Help Posted: Sun Apr 30, 2006 4:05 pm Subject: GUI in Functions? HELP! |
Hello. joãodasilva
You can create "global" variables, so you can use then outside the function too.
example:
param1 = 10
param2 = 20
param3 = 30
f_gui(param1,param2,param3)
... |
| |