Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Text
#1
ok i would like to know how to make the text go faster and a shorter way then like this
key "hello"
key Y
key "how are you"
key Y
key "me im doing good"
key Y

something like that but a shorter way than all that typing
#2
To shorten up, use ' instead of key.

Macro ( Macro47 )
Code:
Copy      Help
'"hello";'Y
'"how are you";'Y  
'"me im doing good";'Y

To make it go faster, adjust the speed by inserting spe at the beginning of statement; maximum speed is spe.

Version with maximum speed:

Macro ( Macro47 )
Code:
Copy      Help
spe
'"hello";'Y
'"how are you";'Y  
'"me im doing good";'Y
Taking on Quick Macros one day at a time
#3
thats ok something like i use now but what i was trying for were all i have to do is copy then paist it in the macro with out having to use key, Y and things like that cause i have alot of stuff to put in and it would take me like 3 years lmao
#4

You can use getwintext & setwintext, to grab information and store it into variables, then paste the variables.


Macro ( Macro46 )
Code:
Copy      Help
str s q
q.getwintext(win("Quick Macros"))
s.getwintext(win("Google"))
out q
out s
Taking on Quick Macros one day at a time
#5
thanks


Forum Jump:


Users browsing this thread: 1 Guest(s)