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 

Reactivating Cerious Thumbsplus

 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Ask for Help
View previous topic :: View next topic  
Author Message
Knowbodynow



Joined: 26 Jun 2007
Posts: 35

PostPosted: Fri Jul 20, 2007 1:07 am    Post subject: Reactivating Cerious Thumbsplus Reply with quote

Hello, I'm having trouble with ifwinexist and ThumbsPlus. Here's my code:

Code:

#t::
IfWinExist ThumbsPlus
   WinActivate
else
Run F:\Thumbsplus Databases\wisenew.td4
return


Everytime I pressed the Windows Key and t a new instance of ThumbsPlus is created. I also tried using Window Spy to get the ahk_class:

Code:

#t::
IfWinExist ("ahk_class cswThumbsPlusMain")


But this didn't work either. The exact title of the Thumbsplus window seems a little unusual:

wisehat.new.td4 in ThumbsPlus Pro - [directory Thumbsplus is point to]

Does anyone have any suggestions for how to make my code work and reactivate ThumbsPlus rather than launching it again?

Thanks,

CaH
Back to top
View user's profile Send private message
ManaUser



Joined: 24 May 2007
Posts: 901

PostPosted: Fri Jul 20, 2007 5:33 am    Post subject: Reply with quote

I think you're mixing up IfWinExist and WinExist on that last one Try
Code:
IfWinExist ahk_class cswThumbsPlusMain

or
Code:
If WinExist("ahk_class cswThumbsPlusMain")
Back to top
View user's profile Send private message
Knowbodynow



Joined: 26 Jun 2007
Posts: 35

PostPosted: Fri Jul 20, 2007 1:13 pm    Post subject: Reply with quote

Brilliant, I didn't even know there were two alternatives! The first one works nicely.

Thanks,

CaH
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   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