| Author |
Message |
Topic: autohotkey.net can't upload on FTP |
psjw12
Replies: 2
Views: 864
|
Forum: General Chat Posted: Sat Apr 26, 2008 2:18 pm Subject: autohotkey.net can't upload on FTP |
| Thanks, this issue is being sorted by the site admin. For some reason my permissions wouldn't allow me to write to any directory. |
Topic: autohotkey.net can't upload on FTP |
psjw12
Replies: 2
Views: 864
|
Forum: General Chat Posted: Sat Apr 26, 2008 12:22 pm Subject: autohotkey.net can't upload on FTP |
Hi is anyone else having trouble or am I doing something wrong?
If I try and upload a file I get
When I try and upload a file I get the error
Response: 553-Can't open that file: Permission den ... |
Topic: Destroy gui regardless of number |
psjw12
Replies: 6
Views: 160
|
Forum: Ask for Help Posted: Fri Apr 25, 2008 4:07 pm Subject: Destroy gui regardless of number |
| Found a solution, make the onmessage go to a non-existing function before closing. |
Topic: Destroy gui regardless of number |
psjw12
Replies: 6
Views: 160
|
Forum: Ask for Help Posted: Fri Apr 25, 2008 4:05 pm Subject: Destroy gui regardless of number |
Thanks that works
The only problem is that every time I exit the application I get a windows error message
---------------------------
AutoHotkey.exe - Application Error
--------------------- ... |
Topic: Destroy gui regardless of number |
psjw12
Replies: 6
Views: 160
|
Forum: Ask for Help Posted: Fri Apr 25, 2008 1:26 pm Subject: Destroy gui regardless of number |
| I'm making a program like msn so gui's need to be generated with each new chat which I've already done. However rather than typing "2GuiClose: 3GuiClose: 4GuiClose:... Gui, Destroy" Can I ma ... |
Topic: Send Novell Message |
psjw12
Replies: 0
Views: 79
|
Forum: Ask for Help Posted: Wed Apr 23, 2008 3:18 pm Subject: Send Novell Message |
Hi does anyone know if it's possible for an ahk program to send a Novell message and how it's done?
For the life of me I can't get the send.exe program to work, constantly getting "User does n ... |
Topic: how to use controlsend |
psjw12
Replies: 3
Views: 163
|
Forum: Ask for Help Posted: Sat Jan 19, 2008 1:19 am Subject: how to use controlsend |
I'm not sure if you know but you will need an understanding of what a control is. You'll also need the spy tool that comes with AutoHotkey to identify a control.
Read over the help file carefully it ... |
Topic: Use hotkey when windows is locked |
psjw12
Replies: 1
Views: 150
|
Forum: Ask for Help Posted: Sat Jan 19, 2008 1:11 am Subject: Use hotkey when windows is locked |
I don't think it's possible because when using remote desktop windows creates a new session (a new desktop environment) so all hotkeys won't work on it.
Your best bet will be probably to use VNC a ... |
Topic: A_EndChar Not working |
psjw12
Replies: 3
Views: 390
|
Forum: Ask for Help Posted: Sat Dec 22, 2007 2:26 pm Subject: A_EndChar Not working |
Nope, that don't work, the contents of the variable is empty.
Need an admin to look at this. |
Topic: A_EndChar Not working |
psjw12
Replies: 3
Views: 390
|
Forum: Ask for Help Posted: Sat Dec 22, 2007 12:49 pm Subject: A_EndChar Not working |
Was trying to do a script using hotstrings and I noticed it wasn't sending the end character in the send command, upon doing a simple script
::btw::
Msgbox,%A_EndChar%
The variabl ... |
Topic: Location of Running process |
psjw12
Replies: 1
Views: 2018
|
Forum: Ask for Help Posted: Wed Dec 12, 2007 10:56 pm Subject: Location of Running process |
Some programs like Process Explorer are able to retrieve the location of a running process, is there a possible way in ahk?
I'm hopefully going to make a script to manage portable applications so o ... |
Topic: Detect mouse hover on GUI |
psjw12
Replies: 4
Views: 309
|
Forum: Ask for Help Posted: Mon Oct 15, 2007 11:34 pm Subject: Detect mouse hover on GUI |
It detects when the mouse is over but not when it leaves... will I need to use WM_MOUSELEAVE = 0x2A3 ?
Do you know how to write these in because I'm useless at them.
Cheers!!! |
Topic: Detect mouse hover on GUI |
psjw12
Replies: 4
Views: 309
|
Forum: Ask for Help Posted: Mon Oct 15, 2007 11:09 pm Subject: Detect mouse hover on GUI |
Tried that but didn't work. Don't know if you can mix it with my code.
The script is...
#NoEnv
SysGet,TStartH,MonitorWorkArea, ;get area to place toaster
Gui,Add,Text,,Sample Text
xPos := T ... |
Topic: Registry Entry Query |
psjw12
Replies: 3
Views: 231
|
Forum: Ask for Help Posted: Mon Oct 15, 2007 10:12 pm Subject: Registry Entry Query |
You've missed a comma out at the end
RegWrite,REG_SZ,HKEY_LOCAL_MACHINE,Software\Microsoft\Windows\CurrentVersion\Run, C:\Test\abc.exe
If you put it under HKEY_CURRENT_USER it will start up ... |
Topic: Detect mouse hover on GUI |
psjw12
Replies: 4
Views: 309
|
Forum: Ask for Help Posted: Mon Oct 15, 2007 9:57 pm Subject: Detect mouse hover on GUI |
I'm writing a program that uses a toaster but I want the window to be transparent but go solid when the user places the mouse over the GUI.
I know I could do:
Loop
{
MouseGetPos, , , Win ... |
| |