AutoHotkey Community

It is currently May 23rd, 2012, 6:02 am

All times are UTC [ DST ]


Search found 47 matches
Search these results:

Author Message

 Forum: Offtopic   Topic: Bug in Notepad++ syntax highlighting

Posted: December 19th, 2009, 10:20 am 

Replies: 7
Views: 1390


It can be fixed by disabling Delimiter 1 in the forth tab and modifying the second tab like this:
Image
Of course it can be in group other than 3th (just the empty one).

 Forum: Support   Topic: Gmail atom feed problems

 Post subject: Gmail atom feed problems
Posted: December 13th, 2009, 6:04 pm 

Replies: 0
Views: 296


Hello. I created a simple Gmail notifier and encountered some strange problems. This is how I test it: 1. Ensure that my inbox is empty. 2. Move three mails to inbox. 3. Set one of them to unread. 4. Run my script and wait for tooltip. 5. Set second mail to unread, choose "Check mail" from...

 Forum: Support   Topic: Regex problem ;."

Posted: December 12th, 2009, 10:11 am 

Replies: 3
Views: 381


And even shorter version:
Code:
var = "Tom","450123456";"no@spam.com"
var := RegExReplace(var, """(.*?)"",""(.*?)"";""(.*?)""", "$1 +$2€$3")

 Forum: Support   Topic: Autohotkey understands too late I switched another app

Posted: December 3rd, 2009, 4:50 pm 

Replies: 4
Views: 285


Maybe it will work:
Code:
; Jd
Loop
{
WinWait, JDownloader,
WinWaitActive, JDownloader,
Sleep, 9000
IfWinNotActive JDownloader
   Continue
MouseClick, left,  604,  419
Send, {CTRLDOWN}a{CTRLUP}
}

 Forum: Offtopic   Topic: Bug in Notepad++ syntax highlighting

Posted: December 2nd, 2009, 1:10 pm 

Replies: 7
Views: 1390


Sorry for previous unclear post.
Click mentioned before icon. In new window there should be a dropdown list next to the "User language" words. Choose there "AHK AutoHotkey", then go to the "Operators" tab and move comma from left list to right.

 Forum: Offtopic   Topic: Bug in Notepad++ syntax highlighting

Posted: December 2nd, 2009, 10:17 am 

Replies: 7
Views: 1390


Just add comma to the operators. You can do it by clicking on icon with a small lightning, to the left of the macros.

 Forum: Support   Topic: Alt+Tab with mouse everywhere except Opera

Posted: November 5th, 2009, 10:52 am 

Replies: 4
Views: 492


Code:
#IfWinNotActive, ahk_class OpWindow ; Hotkeys below will not work in Opera
   ~LButton & RButton:: AltTab
#IfWinNotActive ; Restore default hotkey settings

 Forum: Support   Topic: HOW TO, enter ''command'' on release of WIN+R

Posted: October 29th, 2009, 11:17 pm 

Replies: 3
Views: 315


Is it what you want?
Code:
CapsLock::
   Send #r   ; Press Win+R
   KeyWait CapsLock   ; Wait for CapsLock to be released
   YOUR COMMANDS GO HERE
Return

 Forum: Support   Topic: Multiple inputs from user - too much code

Posted: October 20th, 2009, 10:29 pm 

Replies: 7
Views: 397


txquestor wrote:
I understand how your Backup example works.

I don't understand what your ToDo.ahk example has to do with backups.
I didn't mean the backup part (I think it is unnecessary now but I'm too lazy to delete it). I meant that it has variable number of rows. I thought it would help.

 Forum: Support   Topic: Multiple inputs from user - too much code

Posted: October 20th, 2009, 10:13 am 

Replies: 7
Views: 397


Maybe some parts of my ToDo program will help you - take a look.

 Forum: Support   Topic: First script - game macro

Posted: October 8th, 2009, 11:24 am 

Replies: 6
Views: 474


You have defined a function but you never call it. You have to add "Main()" somewhere. For example: ;======================================================================== ;Vars ;======================================================================== alive=0x0120BD dead=0x010101 lootwin...

 Forum: Support   Topic: Unbind ctrl alt delete

Posted: October 6th, 2009, 5:56 pm 

Replies: 7
Views: 614


tank wrote:
what is it your attempting to block access to then
ctrl alt delete triggers a different result depending on configureation?

The registry key I mentioned controls whether Task Manager appears when user presses CAD or not. Regardless of it BlockInput is disabled when CAD is pressed.

 Forum: Support   Topic: Unbind ctrl alt delete

Posted: October 6th, 2009, 3:42 pm 

Replies: 7
Views: 614


tank wrote:
is the help file really so hard to read?
BlockInput

BlockInput does NOT block Ctrl+Alt+Del. In fact it is the opposite: BlockInput is disabled by CAD.

 Forum: Support   Topic: Unbind ctrl alt delete

Posted: October 6th, 2009, 11:11 am 

Replies: 7
Views: 614


Maybe this will help you - link . This is my script for the same purpose as yours. For disabling Ctrl+Alt+Del I used this: Regwrite REG_SZ, HKEY_LOCAL_MACHINE,SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\taskmgr.exe, Debugger, Hotkey Disabled It prevents Task Manager fro...

 Forum: Support   Topic: How to read mp3 tags? [solved]

Posted: October 5th, 2009, 9:24 am 

Replies: 4
Views: 1059


I tried using all of these except TagScanner (which appears to be too big for me) before and I think I'll just stay with v1 - it's not so bad.
Thanks for all your help.
Sort by:  
Page 1 of 4 [ Search found 47 matches ]


All times are UTC [ DST ]


Powered by phpBB® Forum Software © phpBB Group