flatener123 Posted September 13, 2012 Share Posted September 13, 2012 im new to all this so ive started experimenting with stuff! so far my compilation is this! MsgBox ( 0, "mouse position", "start") MouseGetPos ( 0 ) MsgBox ( 1, "mouse position", "finish") what i want to do is get the position co-ords pop up in a box for me to let me know what they were.. yet im confused and dont know how to do tht!! any help would be great... thanks Link to comment Share on other sites More sharing options...
oefi Posted September 13, 2012 Share Posted September 13, 2012 hi:D try: $pos = MouseGetPos() MsgBox(0,"Your mouse pointer coordinate is:", $pos[0]&"x"&$pos[1]) Link to comment Share on other sites More sharing options...
flatener123 Posted September 13, 2012 Author Share Posted September 13, 2012 thanks Link to comment Share on other sites More sharing options...
water Posted September 13, 2012 Share Posted September 13, 2012 You post in the General Help and Support forum so we all know that you need help Please use meaningful thread titles. My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki Link to comment Share on other sites More sharing options...
flatener123 Posted September 13, 2012 Author Share Posted September 13, 2012 thanks for all you help#1 new thing im doing now! currently im trying to do a message box that uses another message box depending on the last choice! $a = "are you feeling ok today?" $b = "sorry to hear that!" $c = "im glad!" MsgBox (4,"test",$a ) MsgBox (0,"test",$b ) MsgBox (0,"test",$c ) thts me so far! what i dont uderstand is 'If' i think its that i need to use! what i need is a way to get b and c as the response to question a! im just not sure what i put in for this! ive looked through if both "else" "than" styles nothing seems to help! Link to comment Share on other sites More sharing options...
Bert Posted September 13, 2012 Share Posted September 13, 2012 You may want to look at taking This is a class you can take to teach you the basics. Also there is the wiki that has loads of information. The Vollatran project My blog: http://www.vollysinterestingshit.com/ Link to comment Share on other sites More sharing options...
MrMitchell Posted September 13, 2012 Share Posted September 13, 2012 currently im trying to do a message box that uses another message box depending on the last choice! Whether or not this is what you're looking for, it's still something you can learn from since you're just getting started: $a = "are you feeling ok today?" $b = "sorry to hear that!" $c = "im glad!" $response = MsgBox (4,"test",$a ) ;Yes = 6, No = 7 If $response = 7 Then MsgBox (0,"test",$b ) ElseIf $response = 6 Then MsgBox (0,"test",$c ) EndIf Link to comment Share on other sites More sharing options...
Mechaflash Posted September 13, 2012 Share Posted September 13, 2012 Whether or not this is what you're looking for, it's still something you can learn from since you're just getting started: $a = "are you feeling ok today?" $b = "sorry to hear that!" $c = "im glad!" $response = MsgBox (4,"test",$a ) ;Yes = 6, No = 7 If $response = 7 Then MsgBox (0,"test",$b ) ElseIf $response = 6 Then MsgBox (0,"test",$c ) EndIf Or switch...case... the msgbox.. but eh... tomato - potato Switch msgbox(4 + 32, "test", "Are you feeling ok today?") Case 6 $msg = "I'm glad!" Case 7 $msg= "Sorry to hear that..." EndSwitch msgbox(48,"test",$msg) Spoiler “Hello, ladies, look at your man, now back to me, now back at your man, now back to me. Sadly, he isn’t me, but if he stopped using ladies scented body wash and switched to Old Spice, he could smell like he’s me. Look down, back up, where are you? You’re on a boat with the man your man could smell like. What’s in your hand, back at me. I have it, it’s an oyster with two tickets to that thing you love. Look again, the tickets are now diamonds. Anything is possible when your man smells like Old Spice and not a lady. I’m on a horse.” Link to comment Share on other sites More sharing options...
Mechaflash Posted September 13, 2012 Share Posted September 13, 2012 (edited) (going to complicate things =D) You can have a little fun with this... Switch msgbox(4 + 32, "test", "Are you feeling ok today?") Case 6 $msg = _Positive_Response() Case 7 $msg = _Negative_Response() EndSwitch msgbox(0,"test",$msg) Func _Positive_Response() Local $sPositive[5] $sPositive[0] = UBound($sPositive) - 1 $sPositive[1] = "That's great!" $sPositive[2] = "Awesome!" $sPositive[3] = "Super!" $sPositive[4] = "What if I told you that I broke your computer?" Return $sPositive[Random(1, $sPositive[0], 1)] EndFunc Func _Negative_Response() Local $sNegative[5] $sNegative[0] = UBound($sNegative) - 1 $sNegative[1] = "I'm sorry to hear that." $sNegative[2] = "I hope you feel better." $sNegative[3] = "That sucks..." $sNegative[4] = "Grow a pair and get over it!" Return $sNegative[Random(1, $sNegative[0], 1)] EndFunc Edited September 13, 2012 by mechaflash213 Spoiler “Hello, ladies, look at your man, now back to me, now back at your man, now back to me. Sadly, he isn’t me, but if he stopped using ladies scented body wash and switched to Old Spice, he could smell like he’s me. Look down, back up, where are you? You’re on a boat with the man your man could smell like. What’s in your hand, back at me. I have it, it’s an oyster with two tickets to that thing you love. Look again, the tickets are now diamonds. Anything is possible when your man smells like Old Spice and not a lady. I’m on a horse.” Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now