Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Output question
#1
Is it possible to make output show 2 information one next to each other. Im seting a lot of timers in my macros and i would like to next to the number of seconds/minutes it will wait/pause to have some form of description. For exammple:
Code:
Copy      Help
int i
i=RandomInt(0 1800)
out i

Example output for this would be just plain "1674" . And i would like to look like this: "1674 seconds" or even better "Wait 1674 seconds" in a single line. It would feel more natural and would make output more readable. I tried with adding multiple out's but then i would get:
wait
1674
seconds
Which is ok but clutter's the output log and the code get's longer. So any suggestions?

Thank you Smile
#2
Macro Macro1706
Code:
Copy      Help
out "Wait %i seconds" i
out F"Wait {i} seconds"
#3
Great thank's Big Grin


Forum Jump:


Users browsing this thread: 1 Guest(s)