asdfasdfasdf
03-06-2007, 12:54 AM
Well, I think I'm completely screwing this up..
if isuptext('Mine') then
begin
mouse(x,y,0,0,false);
pie:= ChooseOption(x, y, 'ocks');
if pie then exit;
end;
Now, I don't even know if the above would work. The problem I have is, If I define pie as boolean at the beginning, it gets mad and says duplicate declaration. If i don't have pie:boolean; at the beginning it says type mismatch..so this is just plain annoying..help me:(
if isuptext('Mine') then
begin
mouse(x,y,0,0,false);
pie:= ChooseOption(x, y, 'ocks');
if pie then exit;
end;
Now, I don't even know if the above would work. The problem I have is, If I define pie as boolean at the beginning, it gets mad and says duplicate declaration. If i don't have pie:boolean; at the beginning it says type mismatch..so this is just plain annoying..help me:(