Jump to content

subzerostig

Active Members
  • Posts

    35
  • Joined

  • Last visited

Profile Information

  • Location
    Minecraft
  • Interests
    Computers(Blender,GIMP,Autoit,C++ etc.), Computer Games(Skyrim, Minecraft, Runescape etc.), Tennis, f1

subzerostig's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Does anyone know how to add imagesicons to the sides of menu items? I've tried to use Guictrlsetimage but it doesn't appear to work. Here is an image of what I mean: Image randomly grabbed off the internet I'm talking about the little icons to the side. Thanks
  2. I would say that is fine. While the game is online, it would be acceptable as long as you can do it manually. If it is simply just a matter or copying and pasting then I would say your in the clear.
  3. Also the tcp functions can only handle a certain amount(pretty certain). If it isn't what qsek said then you could explore that possibility and probably have to send in packets.
  4. I knida got that, but it only happened a few times and then stopped. My code was about 1500 lines long.
  5. Yes I used guinnesses UDF for guidisable. I took the function out of the UDF and into the script so the UDF wouldn't have to be downloaded. I have reverted it back and added a link in the description.
  6. Just one thing, this seems a lot like game automation. I would be happy to help, if you could tell/show me what this script will be used for.
  7. I have put the function inside the script, so it should work with the standard UDF library.
  8. Startup Manager allows you to customise the programs that run on startup and supports all of the different methods that programs can run on startup. If you want to run your own program on startup, or remove unnessecary ones, then this program will make your life easier. Features: Supports Registry and startup folder. Shows and allows you to modify whether it affects all user accounts or just yours and if it will run all the time, or just once. Allows you to add your own applications to the startup folder. Startup Manager.au3 Guinesses UDF for I hope you like it Updates: Added guidisable into the script for standard UDF compatibility.
  9. Please read the forum rules on bumping topics before 24 hours is up. Do you need to recognise when your control is clicked? If so , use either guictrlgetmsg or oneventmode.
  10. Are you requesting us to do most of the scripting for this? I don't know if this is possible in autoit. If so, then perhaps you should consider that this would actually take some time(if possible at all) and that the Autoit community is made up of people who do this in their spare time. I have absolutely no idea how to do this, but hey, somebody might give it a shot(who knows). I presume that is what you need/want.
  11. Just another thing to add, you should set the msgbox as a child of the GUI(One of the parameters). That should automatically set the msgbox above the GUI and combine them.
  12. Autoit is programmed in C++, so C++ is obviously the superior language. However, Autoit is about 1000 times easier to learn and is also quicker to script. I don't know many books on Autoit, but the help file is really useful, it's how I learned Autoit. And if you've tried everything and it doesn't work, then post your problem on the forums. Link to help pages: http://www.autoitscript.com/autoit3/docs/ Hope this clears a few things up.
  13. Ctrl-Esc is a system hotkey for the start menu, so no, you cannot combine them. There might be ways round, such as ending explorer.exe(not recommended) but you shouldn't intefere with other programs hotkeys. Also, you don't need to set a hotkey every 100ms. You only need to set it once.
  14. Have a look at the win functions: http://www.autoitscript.com/autoit3/docs/functions/ In order to get the current window, just use this simple UDF: sleep(5000) msgbox(0,"",_activewindow()) Func _activewindow() return WinGetTitle("[ACTIVE]") EndFunc ;==>_winactive I have included a brief example at the very top. Hope it helps Also, please do not double post your topic Edit: more effecient UDF, forgot use of [ACTIVE]
  15. Ctrl-Alt-Delete is a secure attention key(SAK) which is part of the secure attention sequence(SAS). It is managed directly by the OS Kernel in order to make login spoofing impossible. So in order to disable it on the logon screen, the kernel would have to be compromised. I am don't know about when you are logged in, but it should be possible. For more information click on the blue text
×
×
  • Create New...