Strange I pick a color and it doesnt even find it, so i test it by selecting my desktop and thats good but when i select maplestory and set everything up it does not find color...
it does find coordinates if i do (200,200 lets say..
any1 no y it csnnot find colors? possably format? iono
Simba Code:
program new;
var
main: integer;
stringfu: string;
begin
cleardebug;
main:=bitmapfromclient(50,50,200,200);
Stringfu:=createbitmapstring(main);
displaydebugimgwindow(500,250);
drawbitmapdebugimg(main);
writeln(stringfu)
end.
this does not even draw a bitmap... soo strange
Simba Code:
program new;
var
main: integer;
stringfu: string;
begin
cleardebug;
setdesktopasclient;
activateclient;
sleep(500);
main:=bitmapfromclient(0,0,500,250);
Stringfu:=createbitmapstring(main);
displaydebugimgwindow(500,250);
drawbitmapdebugimg(main);
writeln(stringfu)
end.
this works but its veryvery buggy