hello poeple. i'm facin a problem with an integer in two different makro's. here is the case: i define an integer in one makro, the call another and try to use the integer in it. something like this:

sub makro1()
dim kkk as integer
kkk = 5
call makro2
end sub

sub makto2()
selection.typetext text:="something" & kkk
end sub

it doesn't work of course. is there any way to, i don't know, make the kkk a global integer ?