topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Tuesday April 30, 2024, 10:01 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - substep [ switch to compact view ]

Pages: [1]
1
Post New Requests Here / Make script work only on specific apps?
« on: August 12, 2010, 08:22 PM »
Right now this script excludes apps. I want to invert it so it will work only on selected apps (*.exe preferrably).
Code: Autohotkey [Select]
  1. ~MButton::
  2. ifwinactive ahk_class MozillaUIWindowClass
  3. return
  4. ifwinactive ahk_class Progman
  5.     return
  6. ifwinactive ahk_class Shell_TrayWnd
  7.     return
  8. ifwinactive ahk_class MozillaDialogClass
  9.     return
  10. ifwinactive ahk_class NotifyIconOverflowWindow
  11.     return
  12.  
  13. Send !{F4}
  14. Return

2
Finished Programs / SOLVED: Exclude firefox from script?
« on: August 03, 2010, 06:31 PM »
I have a script to close windows by middle click but I want it not to work in firefox. Is that possible?
Script is
MButton::
Send !{F4}
Return

Pages: [1]