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 

why this doesnt work

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



Joined: 02 Jul 2008
Posts: 35

PostPosted: Sat Jul 05, 2008 11:09 am    Post subject: why this doesnt work Reply with quote

neither works
Code:
a := 1
b := 2

F1::
if a > b
msgbox, a larger than b
else if b > a
msgbox, a smaller than b
return

esc::reload


Code:
a := 2
b := 1

F1::
if a > b
msgbox, a larger than b
else if b > a
msgbox, a smaller than b
return

esc::reload
Back to top
View user's profile Send private message
garry



Joined: 19 Apr 2005
Posts: 1035
Location: switzerland

PostPosted: Sat Jul 05, 2008 11:20 am    Post subject: Reply with quote

Code:
a := 3
b := 2

F1::
if (a>b)
   {
   msgbox, a larger than b
   return
   }

else
   {
   msgbox, a smaller than b
   return
   }


esc::reload
Back to top
View user's profile Send private message
Guest






PostPosted: Sat Jul 05, 2008 11:20 am    Post subject: Reply with quote

Code:
a := 1
b := 2

F1::
if a > %b%
    msgbox, a larger than b
else if b > %a%
    msgbox, a smaller than b
return


or
Code:

a := 1
b := 2

F1::
if (a > b)
    msgbox, a larger than b
else if (b > a)
    msgbox, a smaller than b
return


read FAQ When exactly are variable names enclosed in percent signs?
Back to top
GodlyMario



Joined: 02 Jul 2008
Posts: 35

PostPosted: Sat Jul 05, 2008 11:25 am    Post subject: Reply with quote

ty that amatuer of me.
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