Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Looking to make macro that bumps forum posts
#1
This is my first time trying to make a macro, I go it so that it types the following in the text area

Bump-1

what i want to know is how to make it so it goes bump-1

then next time bump-2

and so on


I am very sorry if this is a stupid question or if it doesnt make sence
#2
try this

Code:
Copy      Help
int a
a=1

rep ;;insert here a number for how long you want to
,outp "bump-"
,outp a
,a+1

that should get you there or close.
#3
This macro types bump-1, bump-2, and so on each time you run it.

Code:
Copy      Help
int+ g_bump
g_bump+1

str s.from("bump-" g_bump)
key (s)
#4
ooooo....."from" now that's a nice one!!!
thanks for putting that in there!!
#5
wow thx guys that really helped alot

now it looks like this
and is ther anyway I can get this to repeat?

int w1=act(win(" Internet Explorer" "IEFrame"))
lef 73 194 w1
5
lef 774 473 w1
5
lef 615 554 w1
5
int+ g_bump
g_bump+1

str s.from("bump-" g_bump)
key (s)
10
lef+ 1017 191 w1
5
lef- 1027 258 w1
5
lef 788 643 w1
60
#6
yes you can do it like this....
rep #of times to repeat
put a "," infront of each line or put a tab in front.

cut-paste this code for an example....
Code:
Copy      Help
rep 10
,out "[73][32][119][105][108][108][32][103][105][118][101][32][75][101][110][32][36][50][46]"


Forum Jump:


Users browsing this thread: 1 Guest(s)