Hi there, I'm running Linux Mint 14 KDE and using Simba etc under Wine, everything works fine it' just that I can't use a colour picker to detect the colours from the 07 client... any fixes?
Hi there, I'm running Linux Mint 14 KDE and using Simba etc under Wine, everything works fine it' just that I can't use a colour picker to detect the colours from the 07 client... any fixes?
Can you post a screenshot or video or a better description of exactly what is going wrong/why you "can't use the color picker".
Thanks for the quick reply!
Basically, I press the colour clicker and the interface moves along with my mouse, until I leave the actual Simba interface, where my actual mouse then disappears and the colour remains static to what it was right at the edge of the open Simba program. If I move my mouse back onto Simba, it detects the colour again and my mouse is visible. If I click outside of Simba then it gives me the colour of the screen edge back as stated before, so I'm clueless with what I should do

I believe it's an issue using WINE, I have the same problem when using it on my mac.
Take a look at Hobbit's thread regarding his wrapper for Simba on OSX: http://villavu.com/forum/showthread.php?t=95076
It has an included script that functions as a color picker. (His solution)
.---. ``````````` .---. .
\___ `,-. ,-. ,-. \___ ยท|- ,-. ,-
``` \ |-'`,-| | | ``` \ | `,-| |
`---' `-' `-^ ' ' `---' `' `-^ '
No, but you could still get the script out of the .app by treating it like a zip file. Anyway, here's the color picker script from it:
Simba Code:program new;
var
x,y : integer;
begin
repeat
if(IsKeyDown(116))then
begin
GetMousePos(x,y);
writeln('Picked Colour: '+inttostr(getcolor(x,y))+' at ('+inttostr(x)+', '+inttostr(y)+')');
end;
wait(150);
until(IsKeyDown(117))
end.
You hit F5 and it'll print out the color of where your mouse is currently at. Press F6 to end the script.
There are currently 1 users browsing this thread. (0 members and 1 guests)