I was wondering how to manually fix isuptext, I cant work my maple chopper withount it. Thanks guys!
I was wondering how to manually fix isuptext, I cant work my maple chopper withount it. Thanks guys!
Thx Euphemism and Vinyl for the awesome siggy and avatar!
You could try creating your own font set (you can take a look at this tutorial) or simply using the normal uptext fonts and then usingOr one of its other forms (like FindText).Simba Code:(*
FindTextEx
~~~~~~~~
.. code-block:: pascal
function FindTextEx(var cx, cy: Integer; txt,font: TStringArray; xs, ys, xe, ye: Integer): Boolean;
Searches for text or texts in specified box with specified font or fonts returns
true on first find of one of the texts with one of the fonts in the specified
box, returns x, y values aswell.
.. note::
by Stupid3ooo, modified by LordJashin
Example:
.. code-block:: pascal
var
x, y, w, h: Integer;
fonts, txts: TStringArray;
begin
fonts := ['MyOwnFontSet', 'SmallCharacters'];
txts := ['Simba', 'HakunaMatata'];
SetDesktopAsClient;
GetClientDimensions(w, h);
if FindTextEx(x, y, txts, fonts, 0, 0, w - 1, h - 1) then
MoveMouse(x, y);
end.
*)
~Caotom
I can't imagine the whole font will need to be updated, probably just the position of it.
This is just an example of the function you might use, fill in the x and y co-ordinates yourself and it should work just fine.
Simba Code:function PGetUpText: string;
begin
Result := rs_GetUpTextAt(x co-ord, y co-ord);
end;
Else you could try making a very detailed DTM of the UpText?
I already posted a fix for this somewhere. http://villavu.com/forum/showthread....84#post1067684
The best way to contact me is by email, which you can find on my website: http://wizzup.org
I also get email notifications of private messages, though.
Simba (on Twitter | Group on Villavu | Website | Stable/Unstable releases
Documentation | Source | Simba Bug Tracker on Github and Villavu )
My (Blog | Website)
I asked this last week, I already got help from someone else. Thanks anyways guys!
Thx Euphemism and Vinyl for the awesome siggy and avatar!
There are currently 1 users browsing this thread. (0 members and 1 guests)