Jump to content

Recommended Posts

Posted (edited)

 I've been looking at help files and messing around for a bit and I can't seem to make it work properly.

Is it possible for me to have a variable equal to '+1' and then use that to have my script send Shift+1?

This is what I've been trying so far.

Edit: (I Don't need the variable to equal +1, but I want to be able to send shift keys that will be variable, I'm unsure of how you would need to save the variable, or if I have to go all out with If commands.)

HotKeySet( "{F1}" , "_Start")
HotKeySet( "{F2}" , "_Stop")

Global $Active = 0

While 1
   if $Active = 1 Then
      Global $step = '+1'
      Send("{"& $step &"}")
      $Active = 0
   EndIf
WEnd
   
Func _Start()
   $Active = 1
EndFunc
   
Func _Stop
      Exit
EndFunc
Edited by Yekim
Posted

Which program do you try to automate?

Often there are more reliable ways to do what you want to do.

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

 

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...