Jump to content

Jace

Members
  • Posts

    12
  • Joined

  • Last visited

Everything posted by Jace

  1. Anyone able to get PixelSearch to work in C# if so I would love an example!
  2. Thanks!
  3. ; Check expired date $date = _NowDate() $date = StringRegExpReplace($date, "/", "") $edate = "3152007" If $date >= $edate Then MsgBox(64, "Expired", "Program is a bit out of date maybe you should update! " & $edate & " cdate: " & $date) Else DoSetup() EndIf Just trying to set an expired date and compare it to the current date and if the current date is equal to or less than the edate then continue on Else update.
  4. Anyone know how to send an F3 key press?
  5. Worked like a charm THANK YOU so MUCH! I really can't explain to you how much trouble you saved me! I might actually pass Comp IV in my High School after all! -Jace
  6. So there is no way to read mouse coordinates from an INI file and pass them to MouseClick?
  7. Okay so mouseclick apparently can't handle arrays or variables: $temp1 = "619 , 755" $temp = $Positions[13][1] MsgBox(64, "Test", $temp) MouseClick("right" , $temp1 , 1) MouseClick("right" , $temp , 1) The array contains 619 , 755 and so does the temp1 variable... What's the issue? The script just rolls the mouse to the top mid of the screen and rclicks. -Jace
  8. Okay I need to do this: hold down ctrl hold down w then release both. Is it possible? And if so does anyone have the knowledge to show me a sample? Oh and anyway to hold the left mouse button down and release it?
  9. Thank you so much! So if I write more than one variable to an ini file do I haft to read it every time I need to access the variable? Or can I read it once during execution and keep them in the memory? Thanks!
  10. Thank you. But is there a way to GOTO? Like for example: GOTO Startup Startup: <some code> GOTO Main Main: <some code> GOTO Startup I know this is an infinite loop but I hope you get the picture. The above Beep() is a system beep anyway to do a media beep through the speakers?
  11. Hello all! I am working on a macro for school to automate a few things in my aid class and alot of the comps have different resolutions! Now what I want to do is this: Tell the user to hover the mouse in the Novell window and wait three seconds, then play a beep or some sound and record the coordinates to a variable saved in an ini file. Is this possible? Oh and also is there anyway to pop a box with a text field on top of all windows asking for the password then also writing that password to the same ini file?
×
×
  • Create New...