basketball4ever wrote:
depends what you want. Post a piece of code, and i'll show you.
you can use paramter pass. or something just show what u need helped on in an example
%declaration of variable section
var font1 : int
font1 := Font.New ("sans serif:16:bold")
%%%%%%%%%%%%%%%%%%%%%%
procedure animation1
var box :int :=0
var coloriginal :int :=0
loop
colour (coloriginal)
coloriginal+=1
box+=10
colourback (7)
cls
Font.Draw ("Animation #1", 155, 120, font1, coloriginal)
drawmapleleaf (0+box, 0+box, maxx-box, maxy-box, 0)
delay (75)
exit when box = 700
end loop
end animation1
^^^^
i want to make it so that i can chande Animation #1 to Animation #2 and so on... every time i use the procedure.