Jump to content

Suzuran

Active Members
  • Posts

    23
  • Joined

  • Last visited

Suzuran's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Is it possible to develop artificial intelligence with AutoIt? Something like a bot which can learn new things.
  2. How can I make a pause function so I can pause a script? I press a button, and the script pauses, and when I press that button again the script continues.
  3. Thanks. But, what if I want to push another button? It doesn't matter which one (let's say a bookmark tab from the toolbar).
  4. What function should I use to make the script click the Refresh button of a browser?
  5. Thank you.
  6. Any hint how can I do that? I want to have links on the desktop just like in the picture. Is that possible and what should I look up in the Help? Thanks for any advice.
  7. I want to make a menu with icons. What am I doing wrong in the next code: #include <GUIConstants.au3> GUICreate("Title",500,300) $EditMenu = GUICtrlCreateMenu('&Edit') $PrefsItem = GUICtrlCreateMenuItem('Preferences', $EditMenu, 'shell32.dll', 21) $FavItem = GUICtrlCreateMenuItem('Favorites', $EditMenu, 'shell32.dll', 43) GUISetState(@SW_SHOW) While 1 $msg = GUIGetMsg() Select Case $msg = $GUI_EVENT_CLOSE Exit EndSelect WEndI don't really get it how to use what Holger did here: http://www.autoitscript.com/forum/index.ph...=20967&st=0
  8. Thanks. ^^
  9. How can I make an edit read-only?
  10. C++ is preety difficult to use to create GUI applications, for me atleast. I guess there's no scripting language easy and powerful like AutoIt for Linux.
  11. I have Wine installed and AutoIt with it. But I want to create linux applications, not windows ones. AutoIt is awesome and not difficult to learn...maybe there's something like it for Linux users?
  12. I know AutoIt is a scripting language for Windows, but is there any other language like AutoIt for Linux users?
  13. I want to create a simple program that connects to Yahoo or Windows Live Messenger. Basically, I want to reproduce those IM but make it much more simple ( just for chat). I've got some questions...I'll just ask them here. First, I'm not sure how to get the IP to connect to one of those 2 services (Yahoo/ MSN). Any help, please?
  14. Thanks alot, Larry!!! Now it's clear.
  15. Flawed? I can't belive I spent 30 minutes to decipher it...and still confused on how AutoIt works with TCP.
×
×
  • Create New...