AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Suspending Keys & If Statements

 
Reply to topic    AutoHotkey Community Forum Index -> Ask for Help
View previous topic :: View next topic  
Author Message
OreAird
Guest





PostPosted: Sun Nov 22, 2009 2:30 pm    Post subject: Suspending Keys & If Statements Reply with quote

Hey All,

The following Code doesn't seem to Unsuspend Autohotkey. Not sure why

Code:

Suspend, On   
 
               
   ;;;Loads of Hot Keys;;;


Suspend permit

   ~^!::                           ;remote control Power Key
      If WinActive, Windows Media Center


        {

         WinClose

        }

        Else
       
      {

         Suspend, Off

        }
   
  Return


Anyone able to give advice as to how to re-activate the hotkeys if the If statement is False?

~Ore
Back to top
engunneer



Joined: 30 Aug 2005
Posts: 8255
Location: Maywood, IL

PostPosted: Sun Nov 22, 2009 2:57 pm    Post subject: Reply with quote

the command has to follow the hotkey definition.

Code:


   ~^!::                           ;remote control Power Key
Suspend permit     
If WinActive, Windows Media Center


        {

         WinClose

        }

        Else
       
      {

         Suspend, Off

        }
   
  Return

_________________

(Common Answers)
Back to top
View user's profile Send private message Visit poster's website
Guest






PostPosted: Sun Nov 22, 2009 5:39 pm    Post subject: Reply with quote

This still has the same effect as before, Doesn't unsuspend the hotkeys when required...

Any ideas as to why the "Suspend, Off" isn't working? like you said I have moved the Suspend Permit to after the hotkey is called.


~Ore
Back to top
Display posts from previous:   
Reply to topic    AutoHotkey Community Forum Index -> Ask for Help All times are GMT
Page 1 of 1

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group