sandin Posted March 1, 2007 Posted March 1, 2007 I don't trust programs that can be downloaded from internet, so I made my own bot, but I can't figure how to make a minimizer... I've tried with: WinMove("MU", "", 0, 0, 400, 300) but also, like the previous command, MU detects it like Alt+Tab, and returns it maximized instantly. Any suggestions on how to start? ... and yeah, I have a source code for c++ (source for minimizer), but I have no knowlege in c++, so is it posible to translate c++ code to AutoIt code? Some cool glass and image menu | WinLIRC remote controler | Happy Holidays to all... | Bounce the sun, a game in which you must save the sun from falling by bouncing it back into the sky | Hook Leadtek WinFast TV Card Remote Control Msges | GDI+ sliding toolbar | MIDI Keyboard (early alpha stage, with lots of bugs to fix) | Alt+Tab replacement | CPU Benchmark with pretty GUI | Ini Editor - Edit/Create your ini files with great ease | Window Manager (take total control of your windows) Pretty GUI! | Pop-Up window from a button | Box slider for toolbar | Display sound volume on desktop | Switch hotkeys with mouse scroll
CodeMaster Rapture Posted March 1, 2007 Posted March 1, 2007 Depends on the complexity of the source. All I can suggest is post the code and we will see what we can do.
sandin Posted March 2, 2007 Author Posted March 2, 2007 This is the Minimizer Source for C++. It creates a DLL file that can minimize MU. If the source is too complicated to be translated into AutoIt, maybie I can learn AutoIt to read this DLL library and use it to minimize MU, but as I'm still a newbie, I don't know if it's posible (for AutoIt to read and use DLLs). Some cool glass and image menu | WinLIRC remote controler | Happy Holidays to all... | Bounce the sun, a game in which you must save the sun from falling by bouncing it back into the sky | Hook Leadtek WinFast TV Card Remote Control Msges | GDI+ sliding toolbar | MIDI Keyboard (early alpha stage, with lots of bugs to fix) | Alt+Tab replacement | CPU Benchmark with pretty GUI | Ini Editor - Edit/Create your ini files with great ease | Window Manager (take total control of your windows) Pretty GUI! | Pop-Up window from a button | Box slider for toolbar | Display sound volume on desktop | Switch hotkeys with mouse scroll
Sardith Posted March 2, 2007 Posted March 2, 2007 It is possible for AutoIt to use .dll's. $dll = DllOpen("user32.dll") $result = DllCall($dll, "int", "MessageBox", "hwnd", 0, "str", "Some text", "str", "Some title", "int", 0) DllClose($dll) Dll open - close/ dll calls. Check out the help file. [font="Verdana"]Valik:Get it straight - I'm not here to say please, I'm here to help - if my help's not appreciated then lotsa luck, gentlemen.[/font]
sandin Posted March 2, 2007 Author Posted March 2, 2007 OK, thank u for that info, I've looked into it on help files, and now I know how to open DLL files ,just 1 question about it: if the DLL file is located somewhere else, and not sys32 dir, should I type the full path, like: $dll = DllOpen("D:\minimizer\hook.dll")? Ok, so now I oppened the file, but I'm not exacly sure how to use it to minimize windows Some cool glass and image menu | WinLIRC remote controler | Happy Holidays to all... | Bounce the sun, a game in which you must save the sun from falling by bouncing it back into the sky | Hook Leadtek WinFast TV Card Remote Control Msges | GDI+ sliding toolbar | MIDI Keyboard (early alpha stage, with lots of bugs to fix) | Alt+Tab replacement | CPU Benchmark with pretty GUI | Ini Editor - Edit/Create your ini files with great ease | Window Manager (take total control of your windows) Pretty GUI! | Pop-Up window from a button | Box slider for toolbar | Display sound volume on desktop | Switch hotkeys with mouse scroll
jmaleal Posted March 8, 2007 Posted March 8, 2007 i would like to have this script too i play MU too....
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now